:root {
    --yellow: #F5C400;
    --red: #CC1A00;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --white: #F0EDE6;
    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

/* ── GRAIN OVERLAY ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: var(--grain);
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 64px;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-decoration: none;
    line-height: 1;
}

.nav-logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 0 1.2rem;
    height: 64px;
    line-height: 64px;
    transition: background 0.2s, color 0.2s;
    border-right: 1px solid #222;
    border-left: none;
}

.nav-links li:first-child a {
    border-left: 1px solid #222;
}

.nav-links a:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    position: absolute;
    right: 2rem;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--yellow);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    z-index: 999;
    flex-direction: column;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-bottom: 1px solid #222;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ── SECTIONS ── */
section {
    min-height: 100vh;
    padding: 100px 0 60px;
}

/* ── HERO ── */
#home {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    z-index: 0;
}

.hero-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(245, 196, 0, 0.03) 40px,
            rgba(245, 196, 0, 0.03) 80px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 2rem 60px;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 14vw, 10rem);
    line-height: 0.88;
    color: var(--yellow);
    text-shadow: 6px 6px 0 var(--black), 8px 8px 0 var(--red);
    letter-spacing: 0.02em;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
    animation: fadeUp 0.7s 0.2s ease both;
    text-decoration: none; 
    display: inline-block; 
    transition: color 0.2s, transform 0.2s;
}

.hero-subtitle:hover {
    color: var(--yellow);
    transform: scale(1.02);
    cursor: pointer;
}

.hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #888;
    text-transform: uppercase;
    margin-top: 1.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-cta {
    display: inline-block;
    margin-top: 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.2s;
    animation: fadeUp 0.7s 0.4s ease both;
}

.hero-cta:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── SECTION HEADERS ── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--yellow);
    line-height: 1;
    letter-spacing: 0.02em;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 1rem auto 0;
}

/* ── CONTAINER ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── VIDEO GRID ── */
#home .content-area {
    padding: 0 0 60px;
}

.video-section {
    padding: 60px 2rem;
    background: var(--dark);
}

.videos-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--red);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
}

.videos-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--yellow);
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    background: var(--black);
    border: 2px solid #222;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.video-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-card-info {
    padding: 0.8rem 1rem;
    background: var(--black);
}

.video-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--white);
    text-transform: uppercase;
}

/* ── BAND PHOTOS ── */
.photos-section {
    padding: 60px 2rem;
    background: var(--black);
}

.photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
    max-width: 1100px;
    margin: 0 auto;
}

.photo-item {
    overflow: hidden;
    position: relative;
    background: var(--dark);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s, transform 0.4s;
}

.photo-item:hover img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.03);
}

.photo-item.large {
    grid-row: span 2;
    min-height: 500px;
}

.photo-item.small {
    min-height: 240px;
}

/* ── ALBUM BANNER ── */
.album-banner {
    background: var(--yellow);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.album-banner::before {
    content: 'KLJUSINE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 25vw, 20rem);
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
}

.album-banner-inner {
    position: relative;
    z-index: 1;
}

.album-banner-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.album-banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--black);
    line-height: 0.9;
}

.album-banner-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--black);
    opacity: 0.6;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.album-banner-btn {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 0.8rem 2rem;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s;
}

.album-banner-btn:hover {
    background: var(--black);
}

.horse-head {
    position: absolute;
    pointer-events: none; /* Prevents them from blocking clicks on the button */
    z-index: 1; /* Sits behind the text but above the yellow background */
}

.horse-left {
    left: -40px;
    width: 300px;
    bottom: -10px; /* This creates the 'spill' into the section below */
    height: 60%;  /* Makes them large enough to scale with the banner */
    /* Optional: subtle shadow to enhance 3D effect on the spill */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.horse-right {
    right: -20px;
    height: 85%;
    bottom: 0px;
}

/* ── TOUR ── */
#tour {
    background: var(--black);
    position: relative;
}

#tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
}

.tour-list {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tour-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #222;
    transition: background 0.2s;
    position: relative;
}

.tour-item::after {
    content: '';
    position: absolute;
    left: -2rem;
    right: -2rem;
    top: 0;
    bottom: 0;
    background: var(--yellow);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s;
}

.tour-item:hover::after {
    opacity: 1;
}

.tour-item:hover .tour-date,
.tour-item:hover .tour-venue,
.tour-item:hover .tour-city,
.tour-item:hover .tour-ticket {
    color: var(--yellow) !important;
}

.tour-date-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--yellow);
    line-height: 1;
    display: block;
}

/* .tour-item:hover .tour-day {
    color: var(--black);
} */

.tour-month {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--red);
    text-transform: uppercase;
}

.tour-item:hover .tour-month {
    color: var(--red);
}

.tour-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-venue {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.05em;
    display: block;
    transition: color 0.2s;
}

.tour-city {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
    transition: color 0.2s;
}

.tour-ticket {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    text-decoration: none;
    border: 2px solid var(--yellow);
    padding: 0.5rem 1.2rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.tour-ticket:hover {
    background: var(--yellow);
    color: var(--black);
}

.tour-ticket.sold-out {
    color: #555;
    border-color: #555;
    pointer-events: none;
}

.no-tour {
    text-align: center;
    padding: 4rem 2rem;
    color: #555;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

/* ── MERCH ── */
#merch {
    background: var(--dark);
    position: relative;
}

#merch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
}

.merch-carousel-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.merch-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 1rem 0;
}

.merch-carousel::-webkit-scrollbar {
    display: none;
}

.merch-card {
    flex: 0 0 300px;
    position: relative; /* Required for z-index to work */
    z-index: 1;
    scroll-snap-align: start;
    background: var(--black);
    border: 2px solid #222;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.merch-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
    z-index: 10;
}

.merch-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #111;
    position: relative;
}

.merch-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.merch-card:hover .merch-img-wrap img {
    transform: scale(1.05);
}

.merch-badge {
    position: absolute;
    z-index: 1000;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.merch-badge-gold {
    position: absolute;
    z-index: 1000;
    top: 12px;
    right: 12px;
    background: var(--yellow);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.merch-info {
    padding: 1rem 1.2rem 1.4rem;
}

.merch-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: var(--white);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.merch-desc {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.merch-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.merch-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--yellow);
    letter-spacing: 0.05em;
}

.merch-price-currency {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--yellow);
    letter-spacing: 0.05em;
}

.merch-buy {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
    border: none;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.merch-buy:hover {
    background: var(--red);
    color: var(--white);
}

.image-flipper {
    position: relative;
    background: #111;
    overflow: hidden; /* Clips any "overflowing" parts of larger images */
}

.image-flipper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces the image to fill the square exactly */
    transition: transform 0.4s;
}

/* Front Image Animation */
.image-flipper .img-front {
    z-index: 2;
    animation: fadeFront 4s ease-in-out infinite;
}

/* Back Image Animation */
.image-flipper .img-back {
    z-index: 1;
    animation: fadeBack 4s ease-in-out infinite;
}

@keyframes fadeFront {
    0%, 40% { opacity: 1; visibility: visible; }
    50%, 90% { opacity: 0; visibility: hidden; }
    100% { opacity: 1; visibility: visible; }
}

@keyframes fadeBack {
    0%, 40% { opacity: 0; visibility: hidden; }
    50%, 90% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 1.2rem;
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ── CONTACT ── */
#contact {
    background: var(--black);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #222;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    color: var(--white);
    z-index: 5;
    position: relative;
    pointer-events: auto;
}

.contact-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block; /* Gives the link a physical 'box' to click */
    position: relative;
    z-index: 10;
    user-select: all; 
    -webkit-user-select: all;
}

.contact-value a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border: 1px solid #222;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(245, 196, 0, 0.05);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 3px solid #111;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
    letter-spacing: 0.15em;
}

.footer-logo span {
    color: var(--red);
}

.footer-copy {
    font-size: 0.75rem;
    color: #444;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
    font-family: 'Barlow Condensed', sans-serif;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .photo-item.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 260px;
    }

    .photo-item.small {
        min-height: 180px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-item {
        grid-template-columns: 70px 1fr;
    }

    .tour-ticket {
        display: none;
    }

    .merch-card {
        flex: 0 0 260px;
    }

    section {
        padding: 80px 0 60px;
    }
    
    .horse-left { 
        display: none;
    }
    .horse-right { 
        right: -10px; 
        width: 20%;
        bottom: 0%; /* This creates the 'spill' into the section below */
        height: 60%;  /* Makes them large enough to scale with the banner */
    }

    .video-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 10px 1rem 20px; /* Top padding keeps the hover effect visible */
        scrollbar-width: none; /* Firefox */
    }

    .video-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .video-card {
        flex: 0 0 85%; /* Shows most of one card and a peek of the next */
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .horse-head {
        display: none;
    }

    .photo-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .photo-item {
        /* Define the width of the card */
        flex: 0 0 85%; 
        
        /* Forces the height to exactly match the width */
        aspect-ratio: 1 / 1; 
        
        scroll-snap-align: center;
        
        /* Remove the min-height from previous versions to let aspect-ratio work */
        min-height: auto !important; 
    }

    /* Reset grid logic for mobile */
    .photo-item.large, 
    .photo-item.small {
        grid-row: auto;
        grid-column: auto;
    }

    /* Hide the navigation buttons entirely */
    .carousel-nav {
        display: none;
    }

    .merch-carousel-wrap {
        padding: 0 1rem; /* Slightly tighter padding for mobile screens */
    }

    .merch-carousel {
        padding-bottom: 2rem; /* Give room for the card shadows/hover effects */
        gap: 1rem;
    }

    .merch-card {
        /* Using 80% width ensures the next card is visible, 
           telling the user "you can swipe here" without needing buttons.
        */
        flex: 0 0 80%; 
        scroll-snap-align: center; /* Snaps the card to the middle of the screen */
    }

    /* Optional: Disable the hover translateY on mobile to keep scrolling smooth */
    .merch-card:hover {
        transform: none;
    }
}