/* =========================================
   Modern Bright Editorial Design CSS
   ========================================= */
:root {
    /* Bright Minimalist Palette */
    --bg-main: #ffffff;
    --bg-sec: #fcfcfd;
    --bg-card: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    
    --text-main: #121214;
    --text-muted: #6e6e73;
    --accent: #121214;
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section-padding {
    padding: 100px 0;
}

/* =========================================
   Custom Cursor (Dark on Light)
   ========================================= */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--text-main);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: normal;
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background-color 0.3s;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(18, 18, 20, 0.05);
    border: 1px solid var(--text-main);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================================
   Hero Section (Split Grid Layout)
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #fbfbfb 90%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Balanced track split */
    gap: 5vw;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    min-width: 0; /* Prevents overflow from pushing grid columns */
}

.category-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-block;
    margin-bottom: 1rem;
}

.huge-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.8vw, 4.5rem); /* Fine-tuned scale to prevent overlap on 13" laptop screens */
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-main);
    white-space: normal;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid for 4 items */
    gap: 2rem 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.meta-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.meta-item p {
    font-size: 1.05rem;
    font-weight: 500;
}

.meta-link {
    transition: color var(--ease-out-expo);
    border-bottom: 1px dashed var(--border-color);
}

.meta-link:hover {
    color: var(--text-muted);
}

/* Right-side artistic image styling */
.hero-image-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.hero-photo-frame {
    width: 100%;
    max-width: 360px; /* Reduced slightly from 440px to completely avoid overlapping */
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-left: auto;
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.98) saturate(0.95);
    transition: transform 0.8s var(--ease-out-expo);
}

.hero-photo-frame:hover img {
    transform: scale(1.04);
}

/* =========================================
   Main Showcase Section
   ========================================= */
.showcase-section {
    padding: 100px 0;
    background-color: var(--bg-sec);
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 4rem;
}

/* YouTube Spotlight */
.spotlight-container {
    margin-bottom: 120px;
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    background-color: #000;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spotlight-meta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spotlight-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.spotlight-meta p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Clean Custom Instagram Reels
   ========================================= */
.reels-section {
    margin-top: 80px;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.reel-card {
    position: relative;
    background-color: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: var(--border-hover);
}

/* 
   Invisible Overlay Mask:
   Perfectly covers the blue "View profile" button on the top right
   without blocking the dynamic account avatar and creator handles!
*/
.view-profile-mask {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 104px; /* Perfect width matching the blue instagram button */
    height: 38px;  /* Perfect height to seamlessly cover the button */
    background-color: #ffffff; /* Matches the white header container */
    z-index: 10;
    pointer-events: auto; /* Blocks clicks on the view profile button */
    border-radius: 4px;
}

/* CSS Cropping container to hide Instagram iframe UI controls */
.reel-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 440px; /* Perfect height to crop out bottom interaction bar */
    overflow: hidden;
    background-color: #f7f7f9;
}

.reel-iframe-wrapper iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 520px; /* Forces height overflow so bottom elements are completely masked */
    border: none;
}

/* =========================================
   Footer & Connect CTA
   ========================================= */
.footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 100px 0 50px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* Highly Styled Instagram Link */
.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2.75rem;
    background-color: var(--text-main);
    color: var(--bg-main);
    border-radius: 100px;
    border: 2px solid var(--text-main);
    margin: 2rem 0;
    transition: background-color 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.instagram-cta:hover {
    background-color: transparent;
    color: var(--text-main);
    transform: scale(1.03);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: transform 0.4s var(--ease-out-expo);
}

.instagram-cta:hover .insta-svg {
    transform: rotate(10deg) scale(1.1);
}

.insta-handle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Footer contacts styling */
.footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.footer-link {
    color: var(--text-main);
    border-bottom: 1px dashed var(--border-color);
    transition: color var(--ease-out-expo);
}

.footer-link:hover {
    color: var(--text-muted);
}

.separator {
    color: var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    width: 100%;
}

/* =========================================
   Animations & Reveals
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .cursor-dot {
        display: none !important;
    }
    
    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-image-content {
        justify-content: center;
        order: -1; /* Puts image above text on mobile */
    }
    
    .hero-photo-frame {
        max-width: 100%;
        height: 380px;
        aspect-ratio: 4 / 3; /* Wider profile landscape ratio for standard mobile headers */
        border-radius: 20px;
    }
    
    .huge-title {
        font-size: clamp(2rem, 7.8vw, 3.2rem); 
        letter-spacing: -0.03em;
        line-height: 1.0;
    }
    
    .hero-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reels-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .reel-iframe-wrapper {
        height: 440px; /* Retain perfect crop height on mobile */
    }
    
    .spotlight-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .separator {
        display: none;
    }
}
