﻿/* ===========================================
   TAWAU GOLF CLUB - HOMEPAGE STYLESHEET
   ===========================================
   
   This file contains styles specific to the homepage.
   Used in conjunction with global.css
   
   TABLE OF CONTENTS
   -----------------
   1. Preloader
   2. Custom Cursor
   3. Hero Section
      3.1 Hero Slideshow
      3.2 Hero Frame
      3.3 Hero Navigation Arrows
      3.4 Hero Counter
      3.5 Hero Content
      3.6 Scroll Indicator
   4. Section: Portals (Two-Column CTA)
   5. Section: Cards Grid (News/Events Style)
   6. Section: List Items (Tournaments Style)
   7. Section Header
   8. Homepage Responsive
   
   =========================================== */


/* ===========================================
   1. PRELOADER
   =========================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-forest-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__logo {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: preloaderFadeInUp 1s ease forwards;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.preloader__progress {
    width: 0%;
    height: 100%;
    background: var(--color-gold);
    animation: preloaderProgress 2s ease forwards;
}

@keyframes preloaderProgress {
    to { width: 100%; }
}

@keyframes preloaderFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===========================================
   2. CUSTOM CURSOR (Desktop Only)
   =========================================== */

@media (min-width: 1024px) {
    body.has-custom-cursor {
        cursor: none;
    }

    .cursor {
        width: 20px;
        height: 20px;
        border: 1px solid var(--color-gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s var(--ease-smooth), opacity 0.15s;
        mix-blend-mode: difference;
    }

    .cursor.hover {
        transform: scale(2);
        background: var(--color-gold);
        opacity: 0.5;
    }
}


/* ===========================================
   3. HERO SECTION
   =========================================== */

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--color-forest-dark);
}


/* -------------------------------------------
   3.1 Hero Slideshow
   ------------------------------------------- */

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroSlowZoom 20s ease-in-out infinite alternate;
}

@keyframes heroSlowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Artistic Overlay */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(26, 45, 34, 0.6) 0%, rgba(26, 45, 34, 0.5) 15%, transparent 40%),
        linear-gradient(135deg, rgba(45, 71, 57, 0.7) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 50%, rgba(26, 45, 34, 0.9) 100%);
}


/* -------------------------------------------
   3.2 Hero Frame
   ------------------------------------------- */

.hero-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(184, 151, 110, 0.3);
    pointer-events: none;
    z-index: 5;
}

.hero-frame::before,
.hero-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gold);
}

.hero-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.hero-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}


/* -------------------------------------------
   3.3 Hero Navigation Arrows
   ------------------------------------------- */

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-nav--left { left: 50px; }
.slide-nav--right { right: 50px; }

.slide-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.slide-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
}

.slide-arrow:hover::before {
    transform: translateY(0);
}

.slide-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-cream);
    fill: none;
    stroke-width: 1.5;
    position: relative;
    z-index: 1;
    transition: stroke 0.4s;
}

.slide-arrow:hover svg {
    stroke: var(--color-forest-dark);
}

/* Font Awesome icon alternative */
.slide-arrow i {
    color: var(--color-cream);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.slide-arrow:hover i {
    color: var(--color-forest-dark);
}


/* -------------------------------------------
   3.4 Hero Counter
   ------------------------------------------- */

.slide-counter {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-cream);
    font-family: var(--font-display);
}

.slide-counter__current {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.slide-counter__divider {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.slide-counter__divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-gold);
    width: var(--progress, 0%);
    transition: width 0.3s ease;
}

.slide-counter__total {
    font-size: 1.2rem;
    opacity: 0.5;
}


/* -------------------------------------------
   3.5 Hero Content
   ------------------------------------------- */

.hero-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hero Header (on homepage, positioned inside hero) */
.hero .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.hero .logo-mark {
    width: 60px;
    height: 60px;
}

.hero .logo-text .club-name {
    font-size: 1.6rem;
    letter-spacing: 4px;
}

.hero .logo-text .tagline {
    font-size: 0.65rem;
    letter-spacing: 6px;
    margin-top: 4px;
}

/* Hero Navigation with Hover Effect */
.hero .nav {
    gap: 50px;
}

.hero .nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.hero .nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero .nav-link span {
    display: block;
    transition: transform 0.4s var(--ease-smooth);
}

.hero .nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: transform 0.4s var(--ease-smooth);
    width: 100%;
    height: auto;
    background: transparent;
}

.hero .nav-link:hover span {
    transform: translateY(-100%);
}

.hero .nav-link:hover::after {
    transform: translateY(-100%);
}

/* Hero Dropdown Navigation */
.hero .nav-dropdown {
    position: relative;
}

.hero .nav-dropdown > span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-cream);
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color var(--transition-normal);
}

.hero .nav-dropdown > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.hero .nav-dropdown:hover > span {
    color: var(--color-gold);
}

.hero .nav-dropdown:hover > span::after {
    width: 100%;
}

.hero .nav-dropdown .dropdown-menu {
    background: rgba(26, 45, 34, 0.98);
    border: 1px solid rgba(184, 151, 110, 0.3);
}

.hero .nav-dropdown .dropdown-menu::before {
    border-bottom-color: rgba(26, 45, 34, 0.98);
}

/* Hero Main Content Area */
.hero-main {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
}

.hero-text {
    max-width: 700px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.hero__label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-cream);
    margin-bottom: 30px;
}

.hero__title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}


/* -------------------------------------------
   3.6 Scroll Indicator
   ------------------------------------------- */

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-cream);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-indicator__line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-indicator__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--color-gold);
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(250%); }
    100% { transform: translateY(-100%); }
}


/* ===========================================
   4. SECTION: PORTALS (Two-Column CTA)
   =========================================== */

.section-portals {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.portal {
    height: 50vh;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-smooth);
}

.portal:hover .portal__bg {
    transform: scale(1.08);
}

.portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-forest-dark);
    opacity: 0.85;
    z-index: 1;
    transition: opacity 0.6s var(--ease-smooth);
}

.portal:hover::before {
    opacity: 0.75;
}

.portal__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-cream);
    padding: 50px;
}

.portal__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 35px;
    position: relative;
}

.portal__icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(184, 151, 110, 0.3);
    border-radius: 50%;
    transition: all 0.6s var(--ease-smooth);
}

.portal:hover .portal__icon::before {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: var(--color-gold);
}

.portal__icon svg {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1;
}

.portal__icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-gold);
    font-size: 2rem;
}

.portal__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.portal__subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 35px;
}

.portal__btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.portal__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-smooth);
}

.portal__btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.portal__btn span,
.portal__btn i {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.portal__btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    fill: none;
    position: relative;
    z-index: 1;
    transition: stroke 0.4s;
}

.portal__btn:hover span,
.portal__btn:hover i {
    color: var(--color-forest-dark);
}

.portal__btn:hover svg {
    stroke: var(--color-forest-dark);
}


/* ===========================================
   5. SECTION: CARDS GRID (News/Events Style)
   =========================================== */

.section-cards {
    padding: 120px 0;
    background: var(--color-warm-white);
    position: relative;
}

/* Large Watermark Text */
.section-cards::before {
    content: attr(data-watermark);
    position: absolute;
    top: 80px;
    right: 60px;
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 300;
    color: var(--color-sand);
    line-height: 1;
    pointer-events: none;
    opacity: 0.5;
}

.section-cards .container {
    position: relative;
    z-index: 1;
}

/* Cards Grid - Full Width (No Container) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.cards-grid--contained {
    gap: 30px;
}

/* Card Item with Background Image */
.card-hover {
    height: 35vh;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-smooth);
}

.card-hover:hover::before {
    transform: scale(1.1);
}

/* Individual card backgrounds - set via inline style or nth-child */
.card-hover:nth-child(1)::before { background-image: var(--bg-1); }
.card-hover:nth-child(2)::before { background-image: var(--bg-2); }
.card-hover:nth-child(3)::before { background-image: var(--bg-3); }
.card-hover:nth-child(4)::before { background-image: var(--bg-4); }
.card-hover:nth-child(5)::before { background-image: var(--bg-5); }
.card-hover:nth-child(6)::before { background-image: var(--bg-6); }

.card-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(26, 45, 34, 0.95) 100%
    );
}

.card-hover__number {
    position: absolute;
    top: 25px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.card-hover__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
    color: var(--color-cream);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s var(--ease-smooth);
}

.card-hover:hover .card-hover__content {
    transform: translateY(0);
    opacity: 1;
}

.card-hover__date {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.card-hover__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}


/* ===========================================
   6. SECTION: LIST ITEMS (Tournaments Style)
   =========================================== */

.section-list {
    padding: 140px 0;
    background: var(--color-forest-dark);
    position: relative;
    overflow: hidden;
}

.section-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 151, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 151, 110, 0.03) 0%, transparent 40%);
}

.section-list .section-header__title {
    color: var(--color-cream);
}

.section-list .section-header__label {
    color: var(--color-gold);
}

/* List Container */
.list-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* List Item */
.list-item {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 -30px;
}

.list-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* List Item Image */
.list-item__image {
    width: 220px;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.list-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.6s var(--ease-smooth);
}

.list-item:hover .list-item__image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.list-item__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(184, 151, 110, 0.3);
    transition: border-color 0.4s;
}

.list-item:hover .list-item__image::after {
    border-color: var(--color-gold);
}

/* List Item Info */
.list-item__info {
    color: var(--color-cream);
}

.list-item__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    transition: color 0.4s;
}

.list-item:hover .list-item__name {
    color: var(--color-gold);
}

.list-item__meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.list-item__date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-gold);
}

.list-item__date svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    fill: none;
}

.list-item__date i {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* Status Badges */
.list-item__status {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.list-item__status--open {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.list-item__status--upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.list-item__status--completed {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
}

.list-item__description {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.6;
    max-width: 500px;
}

/* List Item Arrow */
.list-item__arrow {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
}

.list-item:hover .list-item__arrow {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.list-item__arrow svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.4);
    fill: none;
    transition: stroke 0.4s;
}

.list-item__arrow i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: color 0.4s;
}

.list-item:hover .list-item__arrow svg {
    stroke: var(--color-forest-dark);
}

.list-item:hover .list-item__arrow i {
    color: var(--color-forest-dark);
}


/* ===========================================
   7. SECTION HEADER
   =========================================== */

.section-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header__label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-earth);
    margin-bottom: 20px;
}

.section-header__label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-forest-dark);
    line-height: 1.2;
}

.section-header__title em {
    font-style: italic;
    color: var(--color-earth);
}


/* ===========================================
   8. HOMEPAGE RESPONSIVE
   =========================================== */

/* Large Desktop (1200px) */
@media (max-width: 1200px) {
    .hero__title {
        font-size: 4rem;
    }

    .section-cards::before {
        font-size: 8rem;
    }

    .list-item {
        grid-template-columns: 180px 1fr auto;
        gap: 65px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    /* Hero Mobile Nav */
    .hero .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-forest-dark);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 100px 50px;
        transition: right 0.6s var(--ease-smooth);
        z-index: 100;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .hero .nav.active {
        right: 0;
    }

    .hero .nav-link {
        font-size: 1.2rem;
        letter-spacing: 5px;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero .nav-link::after {
        display: none;
    }

    /* Hero Dropdown Mobile */
    .hero .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .hero .nav-dropdown > span {
        font-size: 1.2rem;
        letter-spacing: 5px;
        padding: 20px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero .nav-dropdown > span::after {
        display: none;
    }

    .hero .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: none;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .hero .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .hero .nav-dropdown:hover .dropdown-menu,
    .hero .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 15px 0;
    }

    .hero .nav-dropdown .dropdown-item {
        padding: 12px 30px;
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero .nav-dropdown .dropdown-item:hover {
        padding-left: 30px;
    }


    .hero .menu-toggle {
        display: block;
    }

    .slide-nav--left { left: 25px; }
    .slide-nav--right { right: 25px; }

    .scroll-indicator {
        display: none;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    /* Cards Grid */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-cards::before {
        display: none;
    }

    /* List Items */
    .list-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .list-item__image {
        width: 100%;
        height: 200px;
    }

    .list-item__arrow {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .hero-frame {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .hero-frame::before,
    .hero-frame::after {
        width: 40px;
        height: 40px;
    }

    .hero .header {
        padding: 25px 0;
    }

    .hero .logo-text .club-name {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .hero .logo-text .tagline {
        font-size: 0.55rem;
        letter-spacing: 4px;
    }

    .hero .logo-mark {
        width: 45px;
        height: 45px;
    }

    .hero-main {
        padding-bottom: 100px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .slide-counter {
        bottom: 30px;
    }

    .slide-counter__current {
        font-size: 2.5rem;
    }

    /* Portals */
    .section-portals {
        grid-template-columns: 1fr;
    }

    .portal {
        height: 45vh;
    }

    .portal__title {
        font-size: 1.8rem;
    }

    /* Section */
    .section-cards {
        padding: 80px 0;
    }

    .section-header__title {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-hover__content {
        transform: translateY(0);
        opacity: 1;
    }

    /* List Section */
    .section-list {
        padding: 80px 0;
    }

    .list-item__name {
        font-size: 1.5rem;
    }

    .list-item__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__label {
        font-size: 0.6rem;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
    }

    .portal__btn {
        padding: 15px 30px;
        font-size: 0.7rem;
    }

    .section-header__title {
        font-size: 2rem;
    }
}