/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1a2a3a;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666666;
}

a {
    color: #1a2a3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Main Content Styles */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Banner Section - Elegant Redesign with Background */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a2a3a; /* Fallback color */
    overflow: hidden;
    padding: 4rem 2rem;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 58, 0.6); /* Navy Blue overlay for elegance and text readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.brand-typography {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.brand-line-1 {
    font-family: 'Great Vibes', cursive;
    font-size: 6.5rem;
    color: #FFFFFF; /* White for contrast against dark background */
    line-height: 1.1;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.brand-decoration {
    color: #d4af37; /* Gold */
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem 0;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.brand-line-2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #f0f0f0; /* Off-white */
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #e0e0e0; /* Lighter gray for readability */
    font-family: "Avenir Next", "Montserrat", sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Update hero buttons for elegance on dark background */
.hero-cta .btn-primary {
    background-color: #d4af37; /* Gold primary button */
    color: #1a2a3a; /* Navy text */
    border-color: #d4af37;
    border-radius: 4px;
    padding: 14px 32px;
    font-weight: 700;
}

.hero-cta .btn-primary:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1a2a3a;
}

.hero-cta .btn-secondary {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 14px 32px;
}

.hero-cta .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #1a2a3a;
}

/* Heading Decoration */
.heading-decoration {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d4af37; /* Gold */
    margin: 1.5rem auto 2rem;
}

/* Overview Section */
.overview {
    padding: 6rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.overview h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.3rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 42, 58, 0.08);
    border-color: #d4af37;
}

.service-icon {
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #1a2a3a;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #1a2a3a;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-link {
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    font-family: "Avenir Next", sans-serif;
}

.service-link::after {
    content: ' →';
    transition: margin-left 0.3s ease;
}

.service-link:hover {
    color: #1a2a3a;
}

.service-link:hover::after {
    margin-left: 6px;
}

/* Brand Partners Section */
.brand-partners {
    padding: 3.5rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.brand-partners h2 {
    text-align: center;
    font-size: 1.1rem;
    font-family: "Avenir Next", "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    color: #888888;
    font-weight: 600;
}

.brands-carousel {
    overflow: hidden;
    white-space: nowrap;
}

.brands-track {
    display: inline-flex;
    animation: scroll 40s linear infinite;
    align-items: center;
}

.brand-logo {
    height: 70px;
    width: auto;
    margin: 0 3rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.philosophy h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2a3a;
}

.philosophy-item p {
    color: #666666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: #1a2a3a; /* Navy Blue */
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: #d4af37; /* Gold */
    color: #1a2a3a;
    border-color: #d4af37;
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1a2a3a;
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #1a2a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logo {
        height: 40px;
        margin: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}