/* 
   MUSEUM & GALLERY - CSS 
   Aesthetic: Light, Classical, Premium, Mint Accents
*/

:root {
    --bg-color: #FDFCF8;
    /* Warm Off-White/Cream */
    --text-color: #1A1A1A;
    --text-muted: #555555;
    --accent-color: #8DFFBA;
    /* Mint Green */
    --accent-dark: #2F5D44;
    --border-color: #E0E0E0;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;

    --container-width: 1280px;
    --gutter: 2rem;
    --transition: all 0.4s ease;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* UTILS */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.title-serif {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #EAEAEA;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* BUTTONS */
.btn-mint {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.btn-mint:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(141, 255, 186, 0.3);
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    position: fixed;
    /* Fixed to stay on top while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Higher Z-Index to stay above Hero */
    transition: var(--transition);
    background: rgba(253, 252, 248, 0.95);
    /* ALWAYS have background */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* ALWAYS have shadow */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Contact Link - BUTTON STYLE RESTORED */
.btn-ticket {
    background: var(--text-color);
    color: #FFF;
    padding: 0.8rem 1.8rem;
    border-radius: 2px;
    font-weight: 500;
}

.btn-ticket:hover {
    background: var(--accent-dark);
    color: #FFF;
}

/* Hamburger - Hidden by default on Desktop */
.hamburger {
    display: none;
}

/* TABLET AND MOBILE NAV */
@media screen and (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #FFFEFA;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        /* Hidden top */
        transition: transform 0.4s ease-in-out;
        z-index: 1001;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
        /* Visible on Tablet/Mobile */
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1002;
    }

    .hamburger .bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Transition / Quote Section */
.quote-section {
    padding: 8rem 0;
    background-color: #FDFCF8;
    /* Standard bg */
    display: flex;
    align-items: center;
    justify-content: center;
}

.museum-quote {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin: 2rem 0;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.separator-line {
    border: 0;
    height: 1px;
    background: rgba(26, 26, 26, 0.1);
    width: 60px;
    margin: 0 auto;
}

/* Vertical Scroll Gallery */
.vertical-gallery-section {
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Stack title and grid */
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    /* Spacing from top */
}

.vertical-header {
    text-align: center;
    margin-bottom: 3rem;
    z-index: 5;
    position: relative;
}

.title-serif.text-white {
    color: #FFF;
}

.section-badge.badge-mint {
    color: #8DFFBA;
    border-color: #8DFFBA;
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 100%;
    /* Fill remaining */
    gap: 1.5rem;
    padding: 0 1.5rem;
    /* transform: rotate(0deg); Remove if not needed */
    flex-grow: 1;
    /* Let it take space */
    gap: 1.5rem;
    padding: 0 1.5rem;
    transform: rotate(0deg);
    /* Could rotate for pizazz, keeping straight for now */
}

.v-col {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.v-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.v-col-up .v-track {
    animation-name: scroll-up;
    animation-duration: 20s;
}

.v-col-down .v-track {
    animation-name: scroll-down;
    animation-duration: 25s;
    /* Slightly different speed */
    margin-top: -100px;
    /* Offset start */
}

.v-item {
    height: 400px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.v-item .craft-img {
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.v-item:hover .craft-img {
    filter: grayscale(0%);
}

/* Old keyframes removed, replaced below */

/* Overlay Gradient for Fade effect */
.vertical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000 0%, transparent 15%, transparent 85%, #000 100%);
    pointer-events: none;
    z-index: 2;
}

/* Responsive Vertical Gallery */
@media screen and (max-width: 768px) {
    .vertical-gallery-section {
        height: 60vh;
    }

    .vertical-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
    }

    .v-col:nth-child(3),
    .v-col:nth-child(4) {
        display: none;
        /* Hide 2 cols on mobile */
    }
}

/* HERO SECTION */

/* Footer Bottom Styles */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separator */
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.powered-by {
    color: var(--text-muted);
    /* Same as other text to be subtle */
    text-decoration: none;
    opacity: 0.5;
    /* Even more subtle */
    transition: var(--transition);
    font-size: 0.8rem;
}

.powered-by:hover {
    opacity: 1;
    /* Reveal on hover */
    color: var(--accent-dark);
}

/* HERO SECTION */
/* HERO SECTION */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    /* Height minus header */
    margin-top: 80px;
    /* Push down by header height */
    width: 100%;
    overflow: hidden;
    /* Hero BG Image */
    background-image: url('https://images.unsplash.com/photo-1549813069-f95e44d7f498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
    background-position: center;
    background-size: cover;
    /* CHANGED to Cover for full screen feel */
    background-repeat: no-repeat;
    padding: 0;
}

/* Organic Blob - REMOVED */

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    /* Content above image by default */
    height: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 60%;
    /* Limit width to allow image space */
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 7vw, 6.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    /* Thinner elegant weight */
    color: #111;
}

.hero-sub-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.vertical-line {
    width: 2px;
    height: 60px;
    background-color: #333;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 350px;
    line-height: 1.5;
}

.play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    gap: 1rem;
}

.play-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    transform: rotate(-90deg) translateX(40px);
    transform-origin: left bottom;
    display: none;
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.play-btn::before {
    content: 'PLAY NOW - PLAY NOW -';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: spin 10s linear infinite;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Image: Background Positioned */
/* Removed .hero-image-wrapper and .hero-statue-img as it's now set in .hero background */

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

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 7vw, 6.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    /* Thinner elegant weight */
    color: #111;
}

.hero-sub-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.vertical-line {
    width: 2px;
    height: 60px;
    background-color: #333;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 350px;
    line-height: 1.5;
}

.play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    gap: 1rem;
}

.play-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    transform: rotate(-90deg) translateX(40px);
    /* Circular text effect simulation or just style */
    transform-origin: left bottom;
    display: none;
    /* Simplifying based on static image for now */
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: transparent;
    /* Or white if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

/* Rotating text could be an SVG, keeping simple for now */
.play-btn::before {
    content: 'PLAY NOW - PLAY NOW -';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: spin 10s linear infinite;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    /* This is a tricky css-only radial text, using border for now as placeholder */
    border: 1px solid #111;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-image-wrapper {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    right: -5%;
    /* Push slightly off screen like reference */
}

.hero-statue-img {
    height: 90%;
    width: auto;
    object-fit: contain;
    filter: contrast(1.1) grayscale(100%);
    /* B&W effect */
    mix-blend-mode: multiply;
    /* Blends nicely with white bg */
}

/* ART INSPIRATION */
.art-inspiration {
    padding: 100px 0;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-row .icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.feature-row h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-row p {
    color: var(--text-muted);
}

.circle-graphic {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: -1;
}

.circle-graphic::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
}

/* EVENTS */
.events-section {
    padding: 100px 0;
    background: #FFF;
    /* Pure white distinct section */
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

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

.event-card {
    background: #FAFAFA;
    padding: 1.5rem;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-img {
    height: 250px;
    background: #DDD;
    margin-bottom: 1.5rem;
}

.placeholder-event-1 {
    background: url('https://images.unsplash.com/photo-1576506542790-512445489979?auto=format&fit=crop&w=600&q=80') center/cover;
}

.placeholder-event-2 {
    background: url('https://images.unsplash.com/photo-1545989253-02cc26577f88?auto=format&fit=crop&w=600&q=80') center/cover;
}

.event-details span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-dark);
}

.event-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.details-link {
    font-weight: 700;
    font-size: 0.9rem;
}

.highlight-card {
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-align: center;
}

/* ART INSPIRATION ALT */
.reverse-grid {
    direction: rtl;
}

.reverse-grid>* {
    direction: ltr;
}

/* Text logic flows normally */

.painting-1 {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1577720580479-7d839d829c73?auto=format&fit=crop&w=800&q=80') center/cover;
}

.lead-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #EEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
}

.mint-bg {
    background: var(--accent-color);
}

/* HISTORY */
.history-section {
    padding: 100px 0;
    background: #111;
    color: #FFF;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.history-list {
    margin-top: 3rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 2;
}

.huge-statue {
    height: 100%;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1566127444979-b3d2b654e3d7?auto=format&fit=crop&w=800&q=80') center/cover;
    opacity: 0.8;
}

/* PROCESS (Formerly Safety) */
.process-section {
    padding: 120px 0;
    background: #FFF;
}

/* MARQUEE HANDICRAFTS */
.handicrafts-section {
    padding: 100px 0;
    overflow: hidden;
    background: #FAFAFA;
    border-top: 1px solid var(--border-color);
}

.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Full width breakout */
    overflow: hidden;
}

/* MARQUEE ANIMATION FIXED */
.marquee-track {
    display: flex;
    gap: 0;
    /* Handled by padding in items if needed, or keeping tight */
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    width: 400px;
    height: 500px;
    flex-shrink: 0;
    position: relative;
    margin-right: 2rem;
    /* Gap between items */
}

/* Force link to fill container */
.marquee-item a,
.v-item a {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* Moves half way. requires 2 identical sets of items. */
}

/* VERTICAL ANIMATION FIXED */
.v-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.v-item {
    height: 400px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    /* Gap */
}

.v-col-up .v-track {
    animation-name: scroll-up;
    animation-duration: 40s;
}

.v-col-down .v-track {
    animation-name: scroll-down;
    animation-duration: 45s;
    /* margin-top: -100px; Remove offset for now to ensure clean loop */
}

@keyframes scroll-up {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

/* NEWSLETTER */
.newsletter-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAFA;
    padding: 4rem;
    margin-top: 2rem;
}

/* CONTACT FORM - Premium Minimal */
.contact-section {
    padding: 150px 0;
    background: #FFFEFA;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.contact-wrapper {
    max-width: 900px;
    margin: 4rem auto 0;
}

.main-contact-form {
    background: transparent;
    padding: 0;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.input-group {
    margin-bottom: 3rem;
    position: relative;
}

.input-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #CCC;
    background: transparent;
    font-family: var(--font-heading);
    /* using serif for input text too */
    font-size: 1.5rem;
    /* Larger text */
    color: var(--text-color);
    transition: var(--transition);
    border-radius: 0;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #DDD;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-bottom-color: var(--text-color);
    /* Black focus */
    outline: none;
}

/* Minimal select styling override */
.input-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 0.7rem auto;
}

.full-width {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    border: 1px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.full-width:hover {
    background: var(--text-color);
    color: #FFF;
    border-color: var(--text-color);
    transform: none;
    box-shadow: none;
}

/* HORIZONTAL SCROLL GALLERY */
.horizontal-scroll-section {
    height: 400vh;
    /* Scroll space */
    position: relative;
    background: #FFFEFA;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-intro {
    position: absolute;
    top: 5vh;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.scroll-track {
    display: flex;
    gap: 10vw;
    padding-left: 10vw;
    height: 60vh;
    align-items: center;
    width: fit-content;
    /* Changed from max-content for better support */
    min-width: 100%;
    will-change: transform;
}

.gallery-group {
    display: flex;
    align-items: center;
    gap: 5vw;
    flex-shrink: 0;
}

.scroll-item {
    flex-shrink: 0;
}

.text-item {
    width: 300px;
    padding-top: 5rem;
}

.text-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.img-item .gallery-img {
    height: 50vh;
    width: 35vw;
    /* Landscape-ish */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.img-statue {
    background-image: url('https://images.unsplash.com/photo-1544531586-fde5298cdd40?auto=format&fit=crop&w=800&q=80');
}

.img-portrait {
    background-image: url('https://images.unsplash.com/photo-1547891654-e66ed7ebb968?auto=format&fit=crop&w=800&q=80');
}

.img-painting {
    background-image: url('https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?auto=format&fit=crop&w=800&q=80');
}

.scroll-item:hover .gallery-img {
    filter: sepia(20%);
    transform: scale(0.98);
}

.news-left h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.news-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.news-form input {
    padding: 1rem;
    border: 1px solid #CCC;
    min-width: 300px;
}

/* Main Footer (Single Line) */
.main-footer {
    background-color: var(--footer-bg, #1a1a1a);
    color: var(--footer-text, #ffffff);
    padding: 20px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
}

.footer-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-footer .copyright {
    opacity: 0.8;
}

.main-footer .separator {
    color: rgba(255, 255, 255, 0.2);
}

.social-links-inline {
    display: flex;
    gap: 15px;
}

.main-footer a {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    transition: opacity 0.2s;
    font-weight: 500;
}

.main-footer a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .footer-content-center {
        flex-direction: column;
        gap: 10px;
    }

    .main-footer .separator {
        display: none;
    }
}

/* Organic Blob - REMOVED */
/* .hero-blob { ... } */

/* ... (Existing styles remain until end) ... */

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .title-serif {
        font-size: 2.5rem;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-image-wrapper {
        width: 60vw;
        /* Larger image on tablet */
    }

    .horizontal-scroll-section {
        height: auto;
        /* Disable sticky scroll on smaller tablets if needed, or keep */
    }
}

@media screen and (max-width: 768px) {

    /* Header/Nav Mobile Overrides - minimal now since global is hamburger */
    /* Header/Nav Mobile Overrides */
    .navbar {
        padding: 1.5rem 2rem !important;
        background: rgba(253, 252, 248, 0.95);
        /* Keep bg on mobile */
    }

    /* .hamburger and .nav-menu styles are handled in the Tablet media query above (max-width: 1024px) */
    /* This ensures it works on both Tablet AND Mobile */

    .nav-menu a {
        font-size: 2rem;
        /* Large text for mobile */
    }

    .nav-menu a {
        font-size: 2rem;
        /* Large text for mobile */
    }

    /* Hero Mobile Fix */
    .hero {
        padding-top: 0;
        margin-top: 80px;
        /* Match desktop push-down to be safe, or adjust based on mobile header */
        height: calc(100vh - 80px);
        /* Full visible height */
        min-height: 500px;
        padding-bottom: 0;
        background-position: center;
        background-size: cover;
        /* CHANGED to Cover for better mobile experience */
        flex-direction: column;
    }

    /* Adjust bg image for mobile - Ensure it's not overridden specifically if cover is desired */
    /* .hero override removed to stick to the rule above */


    /* Horizontal Gallery -> Stacked on Mobile */
    .horizontal-scroll-section {
        height: auto;
        background: var(--bg-color);
    }

    .sticky-wrapper {
        position: relative;
        height: auto;
        top: 0;
        display: block;
    }

    .gallery-intro {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
        padding-top: 4rem;
    }

    .scroll-track {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        transform: none !important;
        /* Disable JS transform */
        padding-left: 0;
        gap: 0;
        /* Removing uniform gap to control manually */
    }

    .scroll-item {
        width: 100%;
        padding: 0 2rem;
    }

    .text-item {
        width: 100%;
        padding-top: 0;
        text-align: center;
        margin-bottom: 2rem;
        /* Close to image */
    }

    .img-item {
        margin-bottom: 6rem;
        /* Large gap before next text */
    }

    .img-item .gallery-img {
        width: 100%;
        height: 300px;
    }

    /* Grids */
    .events-list,
    .steps-grid,
    .history-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Art Inspiration Mobile */
    .inspiration-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
        /* Text first, then Image (since it's reversed in desktop usually) handles order */
        gap: 2rem;
    }

    /* Specific fix to ensure Text -> Image order if needed, but flex-direction handles it. 
       Actually, user wants Text then Image. 
       Desktop is .reverse-grid logic. 
       Let's ensure Text is on top, Image bottom, close together.
    */

    .inspiration-grid.reverse-grid {
        flex-direction: column;
        /* Normal column: Visual then Text? No, we want Text then Visual for "Inspiration" usually? 
        Wait, user said "baslik ve aciklama ve altta resim". So Text TOP, Image BOTTOM.
        html structure: .visual-col (img), .text-col (text).
        So we need flex-direction: column-reverse to put Text (2nd child) on Top, Visual (1st child) on Bottom.
        */
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .inspiration-grid .text-col {
        margin-bottom: 0;
        /* Close to image */
    }

    .inspiration-grid .visual-col {
        width: 100%;
        height: 400px;
        /* Good height for mobile */
    }

    .img-placeholder {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }

    /* Marquee */
    .marquee-item {
        width: 250px;
        height: 300px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Sticky Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}