/* Global Styles & Variables */
:root {
    --primary-color: #0A192F;
    /* Deep Navy */
    --secondary-color: #C6A87C;
    /* Muted Gold/Bronze */
    --secondary-color-hover: #b08d55;
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --background-light: #ffffff;
    --background-off-white: #f9fafb;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --max-width: 1200px;
    --spacing-section: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

nav a.active {
    color: var(--secondary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
}

nav a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary-small {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
}

.btn-primary-small:hover {
    background-color: #122342;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-image: url('assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.65);
    /* Navy overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Common */
.section {
    padding: var(--spacing-section) 0;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.5rem;
}

/* About Section */
.about {
    background-color: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4b5563;
}

.about-image img {
    box-shadow: 20px 20px 0 var(--background-off-white), 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Partnership Section */
.partnership {
    background-color: var(--background-off-white);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-text ul {
    margin-top: 2rem;
}

.value-list li {
    margin-bottom: 2rem;
}

.value-list h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.value-list h3::before {
    content: '';
    /* Could be an icon here */
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0 2rem 0;
    text-align: center;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 2px;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-image {
        order: -1;
        /* Image on top for mobile */
    }


    .section {
        padding: 4rem 0;
    }
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.brand-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.brand-content {
    padding: 2rem;
}

.brand-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.brand-category {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Utilities */
.contact-header {
    margin-bottom: 3rem;
}