:root {
    /* Colors - Reese Group Style */
    --color-bg: #ffffff;
    --color-bg-light: #f7f7f7;
    --color-bg-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #ffffff;
    --color-text-muted: #666666;
    --color-accent: #d4af37;
    /* Gold/Yellow */
    --color-accent-hover: #b4932a;
    --color-border: #e0e0e0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --border-radius: 0;
    /* Sharper edges for corporate look */
    --transition-speed: 0.3s;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-bg-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

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

/* Helper Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: white !important;
}

.section-padding {
    padding: 6rem 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Navigation */


/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    cursor: pointer;
    border: none;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem;
    color: var(--color-text);
    z-index: 1001;
    position: relative;
    /* Ensure z-index works */
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/home/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 14, 23, 0.4), rgba(10, 14, 23, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Cards & Grid */
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

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

.card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--color-accent);
    margin: 1rem auto 0;
}

/* Page Header */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: var(--header-height);
    /* Push below fixed header */
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    /* Ensure clear visibility */
}

.page-header p {
    font-size: 1.25rem;
    color: #f0f0f0 !important;
    /* Ensure clear visibility */
    position: relative;
    z-index: 2;
}

/* Utilities */
.relative {
    position: relative;
}

.z-2 {
    z-index: 2;
}

.gap-4 {
    gap: 4rem;
}

.ml-0 {
    margin-left: 0 !important;
}

.mb-3 {
    margin-bottom: 2rem;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.img-rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 769px) {
    .flex-col-md {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .col-text {
        flex: 1;
    }

    .col-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .flex-col-md {
        display: flex;
        flex-direction: column;
    }
}

/* Retailers */
.retailer-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    transition: transform var(--transition-speed);
}

.retailer-card:hover {
    transform: scale(1.05);
}

.retailer-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Divisions */
.division-card {
    text-align: center;
    padding: 2rem;
}

.div-img-wrapper {
    height: 150px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
}

.div-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-icon {
    font-size: 3rem;
}

/* Contact Form */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

input,
textarea {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: inherit;
    transition: border-color var(--transition-speed);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.info-item h3 {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {





    background-color: var(--color-bg-light);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation later */
    }

    .hamburger {
        display: block;
    }
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: #ffffff;
        /* Explicit white */
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        /* Ensure it sits on top */
        animation: slideDown 0.3s ease forwards;
        border-top: 1px solid #eee;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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