:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-red: #8a0000;
    --card-bg: #111;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type: y mandatory; REMOVED */
}

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('assets/dark_texture.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    /* Transparent for hero blending */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-links a {
    margin-left: 25px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ccc;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    color: #fff;
}

/* SPLIT LAYOUT (ZIG-ZAG) */
/* SPLIT LAYOUT (ZIG-ZAG) */
.split-section {
    display: flex;
    min-height: 100vh;
    /* Allow growing naturaly */
    /* REMOVED fixed height:100vh to fix scroll trap */
    width: 100%;
    position: relative;
    /* overflow: visible; Default */
    /* scroll-snap-align: start; REMOVED to prevent locking */
}

.split-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* height: 100%; REMOVED */
}

/* STICKY MEDIA COLUMN */
.sticky-col {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    height: 100vh;
    /* Stick to viewport height */
    overflow: hidden;
    /* Crop media */
    z-index: 5;
}

/* SCROLLING TEXT COLUMN */
.scroll-col {
    min-height: 100vh;
    padding-bottom: 50px;
    /* Spacing */
    z-index: 10;
    /* Above media if overlapping */
}

.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

/* Video Styling: Ensure it covers without overflowing */
.media-container video,
.media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-container {
    padding: 5vw;
    background: transparent;
    z-index: 10;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 20px;
    color: #fff;
    line-height: 1;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--accent-red);
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-desc {
    color: #aaa;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* .btn-cta Moved to retro_fx.css for redesign */
/*
.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cta:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}
*/

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        height: auto !important;
        /* Allow growing */
        min-height: auto;
        padding-bottom: 0;
        scroll-snap-align: none;
        /* Disable Snap on Mobile for more natural feel */
    }

    .split-col {
        height: auto;
        /* Natural height */
        width: 100%;
        overflow: visible;
    }

    /* Reset text scrolling */
    .split-col:nth-child(2) {
        overflow-y: visible;
    }

    .media-container {
        position: relative;
        height: 50vh;
        /* Fixed nice height */
        min-height: 350px;
        /* Min constraint */
        width: 100%;
    }

    .text-container {
        padding: 40px 30px;
        height: auto;
        min-height: 50vh;
        justify-content: flex-start;
    }

    /* Order adjustment for ZigZag on mobile */
    /* Ensure Media is always first (or second, depending on preference) */
    /* Let's make Text 2nd for Hero so they see the image first */
    #hero {
        flex-direction: column;
    }

    /* For About, maybe Text first? */
    #about {
        flex-direction: column-reverse;
    }

    .section-title {
        font-size: 2.5rem;
    }

    nav {
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.8);
    }

    .nav-links {
        display: none;
    }

    /* Consider a hamburger menu later */
}

/* GALLERY GRID */
.gallery-section {
    padding: 80px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    /* filter: grayscale(100%); REMOVED: User wants full color by default */
    transition: 0.4s;
    cursor: pointer;
}

.gallery-item:hover {
    /* filter: grayscale(0%); */
    transform: scale(1.03);
    /* Subtle zoom */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    /* Pop effect */
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INSTAGRAM PROFILE CARD WIDGET */
.insta-profile-card {
    background: rgba(10, 10, 10, 0.8);
    /* Darker, more opaque */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 380px;
    /* Increased width */
    margin-top: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insta-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.insta-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.insta-pic {
    width: 70px;
    height: 70px;
    /* Larger Pic */
    border-radius: 50%;
    border: 3px solid #111;
    /* Inner matte */
    outline: 2px solid #cc2366;
    /* Single color outline or gradient */
    margin-right: 18px;
    object-fit: cover;
    background-color: #222;
    /* Fallback color */
}

.insta-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    /* Larger Name */
    color: #fff;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
}

.verified-badge {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233897f0"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1.9 14.7L6.6 13l1.4-1.4 2.1 2.1 5.3-5.3 1.4 1.4-6.7 6.9z"/></svg>') no-repeat center/contain;
}

.insta-info span {
    font-size: 0.85rem;
    color: #aaa;
    display: block;
    margin-bottom: 4px;
}

.insta-stats {
    font-size: 0.8rem;
    color: #ddd;
}

.insta-stats strong {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.insta-grid {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.insta-grid img {
    flex: 1;
    /* Distribute space evenly */
    width: 0;
    /* CRITICAL FIX: Allow flex item to shrink below content size */
    min-width: 0;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.3s;
}

.insta-grid img:hover {
    opacity: 0.8;
}

/* Premium Gradient Button */
.insta-btn {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    border-radius: 30px;
    /* Pill shape */
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.insta-btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #000;
    /* Inner black layout for "Border" effect */
    border-radius: 29px;
    z-index: -1;
    transition: opacity 0.3s;
}

.insta-btn:hover::before {
    opacity: 0;
}

/* Show full gradient on hover */
.insta-btn:hover {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


/* CONTACT FOOTER */
.contact-section {
    background: #000;
    color: #fff;
    padding: 80px 40px 40px;
    border-top: 1px solid #222;
    position: relative;
    overflow: hidden;
    /* Crop collage */
}

.footer-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    opacity: 0.15;
    /* Highly Transparent */
    filter: grayscale(100%);
    /* Black & White */
    pointer-events: none;
    /* Non-interactive */
}

.footer-collage img {
    flex: 1 0 25%;
    /* 4 columns approx */
    height: 50%;
    /* 2 rows approx */
    object-fit: cover;
}

.contact-container {
    position: relative;
    z-index: 2;
    /* Above collage */
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-col h3 {
    font-family: var(--font-heading);
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.contact-col p {
    line-height: 1.8;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-col a {
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 2px;
}

.contact-col a:hover {
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    /* Taller for better view */
    border: 0;
    /* filter: grayscale(100%) invert(92%) contrast(83%); REMOVED: User wants clear map */
    border-radius: 8px;
    opacity: 0.9;
    /* Slight dim to blend, but keep colors */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.75rem;
}

.footer-bottom a {
    color: #555;
}

/* ADMIN */
.admin-login {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: #111;
    border: 1px solid #222;
    text-align: center;
}

.admin-login input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #000;
    border: 1px solid #333;
    color: #fff;
}

.admin-login button {
    width: 100%;
    padding: 10px;
    background: var(--accent-red);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Address Link in Footer */
.address-link {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
    display: inline-block;
}

.address-link:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

/* Extra Small Mobile Tweaks */
@media (max-width: 400px) {
    .section-title {
        font-size: 2rem;
    }

    .text-container {
        padding: 30px 20px;
    }

    .media-container {
        height: 40vh;
    }

    /* Give more room to text */
}