/* 1. BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;700&display=swap');

:root {
    --bg-tan: #D9A66F;
    --bg-light-cream: #EBD5B3;
    --text-coffee: #2B1B12;
    --header-espresso: #4A2C2A;
    --btn-bronze: #8C5E1B;
    --cream: #FFF3E6;
    --accent-gold: #E6B800;
}

/* 2. GLOBAL STYLES */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background-color: var(--bg-tan);
    color: var(--text-coffee);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    width: 100%;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; text-align: center; width: 100%; }
.alt-bg { background-color: var(--bg-light-cream) !important; }

/* 3. LOGO HEADERS (Centering & Size Fix) */
.brand-header-logo {
    display: block;
    margin: 0 auto 40px auto;
    max-width: 400px;
    width: 85%;
    height: auto;
}

/* 4. NAVIGATION */
nav {
    background: var(--bg-tan);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--header-espresso);
    padding: 15px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav-logo { height: 50px; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text-coffee); 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; 
    margin-left: 20px; 
    font-size: 0.8rem; 
    text-transform: uppercase;
}

/* 5. HERO SECTION (Line 64 Fix) */
#hero { width: 100%; height: 75vh; overflow: hidden; position: relative; background: #000; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(60%); }

.hero-content { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    width: 100%; 
}

.hero-title { 
    color: white !important; 
    font-size: clamp(1.8rem, 6vw, 4rem) !important; 
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8); 
    font-family: 'Montserrat'; 
    letter-spacing: 2px; 
}

/* 6. GRIDS */
.toastmaster-grid, .split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    text-align: left;
    align-items: center;
}

.resume-highlights { border-left: 3px solid var(--btn-bronze); padding-left: 20px; margin: 20px 0; }

.shop-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.shop-card {
    flex: 1;
    background: white;
    padding: 30px;
    border: 1px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 340px;
}

.product-image-placeholder img { max-width: 100%; height: 250px; object-fit: contain; }

/* 7. ADVISORY CAROUSEL FIX */
.event-carousel { width: 100%; overflow: hidden; }
.carousel-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; scrollbar-width: none; }
.carousel-container::-webkit-scrollbar { display: none; }
.carousel-img { width: 100% !important; flex-shrink: 0; scroll-snap-align: start; height: 350px; object-fit: cover; border: 2px solid var(--accent-gold); }

/* 8. SMALL ICON LOCK (Social Icons) */
.cta-group { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.icon-link img { width: 45px !important; height: 45px !important; object-fit: contain; }

/* 9. BUTTONS */
.cta-btn, .secondary-link { padding: 14px 28px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; border-radius: 4px; display: inline-block; }
.cta-btn { background: var(--btn-bronze); color: white; }
.secondary-link { background: var(--header-espresso); color: white; }

/* 10. FOOTER */
footer { background: var(--header-espresso); color: white; padding: 60px 0; text-align: center; width: 100%; }

/* 11. MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .toastmaster-grid, .split-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-group { justify-content: center; }
    .brand-header-logo { max-width: 300px; }
    .nav-links { display: none; }
}