/* 
   MEGA SHOWROOM STYLING (V3.0)
   "The Absolute Guardian"
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Crimson+Pro:wght@600;700&family=Figtree:wght@400;700&family=Space+Grotesque:wght@500;700&family=Syne:wght@700;800&family=Ubuntu:wght@400&display=swap');

:root {
    --logo-yellow: #FFD700;
    --logo-yellow-glow: rgba(255, 215, 0, 0.4);
    --bg-dark: #07090c;
    --card-bg: #12161b;
    --glass-bg: rgba(18, 22, 27, 0.95);
    --text-main: #f0f0f0;
    --text-dim: #999;
    --accent-blue: #4A90E2;
    --accent-green: #4CAF50;
    --accent-red: #E91E63;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}

nav .container { display: flex; justify-content: space-between; align-items: center; }
nav a { color: var(--text-dim); text-decoration: none; font-family: 'Space Grotesque'; font-size: 0.9em; transition: 0.3s; margin-left: 30px; }
nav a:hover { color: var(--logo-yellow); }

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: url('assets_web/00_wowpic_avocadoplanation1.webp') no-repeat center center;
    background-size: cover;
    margin-bottom: 80px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(7,9,12,0.4), rgba(7,9,12,0.9));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 6em;
    color: var(--logo-yellow);
    margin: 0;
    line-height: 0.9;
    letter-spacing: -4px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 2em;
    color: #fff;
    font-weight: 300;
    margin-top: 20px;
    max-width: 800px;
}

/* Section Styling */
section { padding: 100px 0; border-bottom: 1px solid #222; }
.section-head { margin-bottom: 60px; }
.section-tag { font-family: 'Space Grotesque'; color: var(--logo-yellow); letter-spacing: 2px; font-size: 0.9em; margin-bottom: 10px; }
.section-title { font-family: 'Crimson Pro', serif; font-size: 3.5em; margin: 0; }

/* Strategic Grid */
.strat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.strat-card { background: var(--card-bg); padding: 40px; border-radius: 24px; border: 1px solid #222; }
.strat-card h3 { font-family: 'Figtree'; color: var(--logo-yellow); font-size: 1.5em; margin-bottom: 15px; }

/* Narrative Tiles (Full) */
.narrative-item {
    background: #191e25;
    padding: 60px;
    border-radius: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.narrative-content h2 { font-family: 'Crimson Pro'; font-size: 2.8em; margin-bottom: 20px; color: var(--logo-yellow); }
.narrative-content p { font-size: 1.1em; color: #ccc; }
.narrative-image img { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

/* Museum Gallery */
.museum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.museum-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.museum-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.museum-item:hover img { transform: scale(1.1); filter: brightness(0.5); }

.museum-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; transition: 0.3s;
    background: rgba(0,0,0,0.7);
    text-align: center;
}

.museum-item:hover .museum-overlay { opacity: 1; }
.museum-overlay span { font-family: 'Crimson Pro'; font-size: 1.2em; color: var(--logo-yellow); }

/* Social Posts - Vertical Stack */
.social-scroller {
    display: flex;
    flex-direction: column; /* Vertical Layout */
    gap: 40px;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto; /* Center for readability */
}

.social-card {
    width: 100%;
    background: #fff;
    color: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.social-img { height: 300px; background-size: cover; background-position: center; }
.social-body { padding: 30px; }
.social-tag { font-family: 'Space Grotesque'; font-size: 0.8em; color: #888; font-weight: bold; }
.social-caption { margin-top: 15px; font-size: 0.95em; line-height: 1.4; color: #333; }

/* Lightbox */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); display: none;
    justify-content: center; align-items: center; z-index: 2000;
}
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 12px; }

footer { padding: 80px 0; text-align: center; border-top: 1px solid #222; color: #555; font-family: 'Space Grotesque'; }

/* Mobile Optimization */
@media (max-width: 1024px) {
    .hero h1 { font-size: 4em; }
    .hero .subtitle { font-size: 1.5em; }
    .narrative-item { grid-template-columns: 1fr; gap: 30px; padding: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 3em; letter-spacing: -2px; }
    .hero { height: auto; padding: 100px 0; margin-bottom: 40px; }
    .section-title { font-size: 2.5em; }
    
    nav .container { flex-direction: column; gap: 15px; }
    nav .menu { margin-left: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav a { margin-left: 0; font-size: 0.8em; }

    .strat-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .museum-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
    
    .social-scroller { gap: 20px; }
    .social-img { height: 200px; }
    
    footer { padding: 40px 0; font-size: 0.8em; }
}
