/* --- RESET & VARIABLES --- */
:root {
    --text-color: #1a1a1a;       /* Soft black, not harsh #000 */
    --bg-color: rgb(252, 249, 234);         /* "Eggshell" / Paper texture color */
    --accent-color: #333;
    --font-heading: 'Times New Roman', serif; /* Or your custom serif */
    --font-body: Helvetica, Arial, sans-serif;
    --gap: 1rem;
}

* {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased; /* Makes text crisp on iPhone */
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* --- SECTION 1: THE POSTER HERO (MOBILE) --- */
.hero-poster {
    /* Use svh (Small Viewport Height) to fix iOS address bar issues */
    min-height: 76svh;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Flexbox to push text to the bottom (Thumb Zone) */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    
}

.hero-bg {
    width: 100%;
    height: 100%;
    /* Darken image slightly so white text pops */
    filter: brightness(0.85); 
    
    
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: white;
    
    /* ADD THESE LINES TO CENTER CONTENT */
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers the items horizontally */
    text-align: center;  /* This centers text inside the items if they wrap */
}
.hero-background-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%; 
    
    /* The gradient now fades from the bottom of the IMAGE, not the text */
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    
    z-index: 1; 
}
.hero-overlay h1 {
    
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 6vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 90%;
    white-space: nowrap;
    
}

.btn-editorial {
    display: inline-block;
    background-color: rgb(151, 168, 122);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 5px;
    width: 100%; 
    
}

/* --- SECTION 2: VIBE NAVIGATION (STACKED) --- */
.vibes {
    padding: 3rem 1.5rem;
}

.section-header h2 {
    background-color: rgb(151, 168, 122);
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    width: fit-content;
    padding: 0px 20px;
    border-radius: 5px;
    font-weight: normal; 
}

.vibe-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Big spacing between categories */
    
}

.vibe-card {
    text-decoration: none;
    color: var(--text-color);
    background-color: rgb(151, 168, 122);
    width: 90% ;
    box-shadow: 0px 0px 10px 10px rgba(168, 187, 163, 0.66);
    border-radius: 10px;
    
}

.vibe-card .image-wrapper {
    height: 220px; /* Tall images dominate the screen */
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.vibe-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.vibe-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color:white;
    display: flex;
    justify-content: center;
}

.vibe-card p {
    font-size: 0.9rem;
    color: white;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}


/* --- SECTION 4: IN THE WILD --- */
.seen-on {
    padding: 3rem 0;
}

.subtitle {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #888;
}

/* Horizontal Scroll for Social Proof on Mobile */
.insta-grid {
    display: flex;
    overflow-x: auto; /* Allow side scrolling */
    gap: 1rem;
    padding: 0 1.5rem; /* Padding on sides so images don't hit edge */
    scroll-snap-type: x mandatory; /* Snap to image */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.insta-grid img {
    width: 80vw; /* Show 80% of image so user sees there is more */
    height: auto;
    flex-shrink: 0; /* Prevent squishing */
    scroll-snap-align: center;
}

/* --- FOOTER --- */
.minimal-footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
}



/* --- DESKTOP TWEAKS (Keep it simple) --- */
@media (min-width: 768px) {
    .hero-overlay h1 { font-size: 4rem; max-width: 60%; }
    .btn-editorial { width: auto; }
    
    .vibe-grid {
        flex-direction: row; /* Side by side on desktop */
        justify-content: space-between;
    }
    
    .vibe-card { width: 32%; } /* 3 columns */
    
    
    .insta-grid {
        justify-content: center;
        overflow-x: visible;
    }
    .insta-grid img { width: 300px; }
}


