:root {
    --brand-dark: #2c3e50;
    --brand-gold: #c5b358;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--brand-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar { padding-top: 1rem; padding-bottom: 1rem; }
.navbar-brand img { height: 60px; }
.nav-link {
    color: var(--brand-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0 1.5rem !important;
}
.nav-icon-link {
    color: var(--brand-dark);
    text-decoration: none;
    margin-left: 1.5rem;
    position: relative;
}
.cart-badge {
    position: absolute; top: -8px; right: -10px;
    background-color: #7f8c8d; color: white;
    border-radius: 50%; padding: 2px 6px; font-size: 0.75rem;
}

/* Footer Styling */
footer {
    margin-top: auto; /* Pushes footer to bottom */
    padding: 3rem 0;
    text-align: center;
    background-color: white;
}
.footer-icon {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-text {
    font-size: 1rem;
    color: var(--brand-dark);
    line-height: 1.4;
}

/* --- FINAL HERO SECTION UTILITIES --- */
.hero-section {
    position: relative;
    width: 100%;
    /* Set a fixed height for the hero banner area */
    height: 600px; 
    /* Key properties for centering background images */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Adds a smooth fade transition when the class changes */
    transition: background-image 0.5s ease-in-out;
}

/* Define the 3 background images. Note the path uses ../images/ */
.hero-bg-1 { background-image: url('../images/bg1.jpg'); }
.hero-bg-2 { background-image: url('../images/bg2.jpg'); }
.hero-bg-3 { background-image: url('../images/bg3.jpg'); }

/* This is the distinct semi-transparent white layer */
.hero-opacity-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* The box size */
    max-width: 800px;
    width: 90%;
    height: 400px; /* Adjust height as needed */
    
    /* 50% opacity white background */
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 5; /* Sits above background, below content */
}

/* The content box sits exactly on top of the opacity layer */
.hero-content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Highest layer */
    text-align: center;
    width: 90%; /* Ensure it doesn't overflow on small screens */
}

.hero-main-logo {
    max-width: 100%;
    height: auto;
    /* Adjust this max-height to fit your logo perfectly inside the box */
    max-height: 250px; 
}

.btn-shop-gold {
    background-color: var(--brand-gold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
}
.btn-shop-gold:hover { background-color: #b09f4c; color: white; }

/* Mobile Adjustment */
@media (max-width: 768px) {
    .hero-section { height: 400px; } /* Smaller banner on phone */
    .hero-opacity-layer { height: 300px; width: 95%; }
    .hero-main-logo { max-height: 180px; }
}
/* ------------------------------------ */

/* Notification Banner */
.notification-banner {
    background-color: white; padding: 2rem 1rem; text-align: center;
}
.notification-text {
    font-style: italic; font-size: 1.1rem; color: var(--brand-dark);
    max-width: 900px; margin: 0 auto;
}

/* --- SUB-PAGE HEADERS --- */
.page-header-banner {
    width: 100%;
    height: 300px; /* Shorter than home page */
    /* Reuse one of your backgrounds, or upload a specific one */
    background-image: url('../images/bg2.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 2rem;
}

/* Dark overlay to make text pop */
.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.page-title-text {
    position: relative;
    color: white;
    font-family: 'Garamond', 'Georgia', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Content Typography */
.section-title {
    font-family: 'Garamond', 'Georgia', serif;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    width: 60px;
    border-top: 3px solid var(--brand-gold);
    opacity: 1;
    margin-bottom: 1.5rem;
}

