/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #d4a373;
    /* Muted gold/tan */
    --secondary-color: #1d2830;
    /* Darker slate variants */
    --accent-color: #ccd5ae;
    /* Soft green */
    --bg-main: #151e24;
    /* Slightly lighter dark background */
    --text-dark: #ffffff;
    /* Pure white text */
    --text-light: #b0b0b0;
    /* Muted text */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

.navbar-logo-only {
    height: 170px;
    width: auto;
    margin: -42px 0 -72px 0; /* Crops excessive whitespace */
    transition: var(--transition);
}

.navbar-text-only {
    height: 150px;
    width: auto;
    margin: -30px 0 -60px 0; /* Crops excessive whitespace */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-light) !important;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(21, 30, 36, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo image style updated to only-logo and only-text classes */

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
    color: var(--text-dark) !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Slider */
.hero-slider {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
}

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero-content-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
}

.btn-luxury {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-luxury:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-luxury {
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-luxury:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Sections */
section {
    padding: 40px 0;
}

.bg-light {
    background-color: #1a232b !important;
    /* Secondary background */
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Products */
.product-card {
    background-color: #1c262e;
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    overflow: hidden;
    position: relative;
}

.product-card img {
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 20px;
    text-align: center;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* About */
.about-img {
    box-shadow: 20px 20px 0 var(--secondary-color);
}

/* Contact */
.contact-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-item {
    margin-bottom: 25px;
}

/* Forms */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 163, 115, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* Footer */
footer {
    background-color: #121a20;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Footer branding uses shared navbar classes */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Training Programs */
.course-card {
    background-color: #1c262e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
}

.course-card .card-title {
    color: #e0e0e0;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.course-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 40px;
}

/* Services */
.service-item {
    background-color: rgba(26, 35, 43, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Why Choose Us */
.feature-box {
    background-color: transparent;
    transition: var(--transition);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
    transform: rotateY(360deg);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-box:hover .feature-icon-wrapper i {
    color: var(--white);
}

/* Select/Dropdown Styling */
select.form-control option {
    background-color: #0d1216;
    color: #ffffff;
}

/* Course Card Button */
.btn-join-sm {
    padding: 5px 20px;
    font-size: 0.75rem;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.5rem;
    }
}

/* Testimonials */
.testimonial-card {
    background-color: #1c262e;
    border: 1px solid rgba(212, 163, 115, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}