/* ==================== */
/* Base & Reset */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #111111;
    --accent-bronze: #c9a050;
    --accent-gold: #d4af37;
    --chrome: #c0c0c0;
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #999999;
    --text-dark: #333333;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4n.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf') format('truetype');
}

@font-face {
    font-family: 'Rye';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/r05XGLJT86YDFg.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}


h2, h3, h4 {
    font-family: 'Rye', serif;
    font-weight: 400;
}

.section h2,
.section h3 {
    text-align: center;
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: var(--dark-bg);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 160, 80, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

/* ==================== */
/* Navigation */
/* ==================== */
.navbar {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.has-watermark .navbar {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    perspective: 500px;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-family: 'Rye', serif;
    font-size: 2.25rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-img {
    /* animation: rotate 10s linear infinite; */
    height: 90px;
    width: auto;
}

.logo-bg-nav {
    display: inline-block;
    width: 90px;
    height: 90px;
    background: url('../images/site/logo.png') center / contain no-repeat;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-bronze);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-bronze);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* ==================== */
/* Page Hero (for subpages) */
/* ==================== */
.page-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

.page-title {
    font-size: 3.5rem;
    font-family: 'Rye', serif;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
    font-family: 'Rye', serif;
}

.page-hero-logo {
    display: block;
    width: min(35%, 220px);
    height: auto;
    margin: 0.75rem auto 1rem;
    filter: drop-shadow(0 0 30px rgba(201, 160, 80, 0.35));
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: lighten;
}

.page-hero-text {
    max-width: 900px;
    margin: 1.5rem auto 0;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.8;
}

.page-hero-text p {
    margin-bottom: 1rem;
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 6rem 2rem 2rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
}

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

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    filter: drop-shadow(0 0 40px rgba(201, 160, 80, 0.4));
    animation: float 2s ease-in-out infinite;
    mix-blend-mode: lighten;
}

.logo-bg-hero {
    width: min(100%, 560px);
    height: min(70vh, 560px);
    background: url('../images/site/logo.png') center / contain no-repeat;
    filter: drop-shadow(0 0 40px rgba(201, 160, 80, 0.4));
    animation: float 2s ease-in-out infinite;
    mix-blend-mode: lighten;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-family: 'Rye', serif;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--accent-bronze);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--chrome);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Rye', serif;
}

.hero-description {
    font-size: 1.04rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-bronze);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-bike-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
    background: #050505;
    min-height: 100%;
    z-index: 0;
}

.hero-bike-gallery-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.75) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
}

.home-bike-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
}

.home-bike-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: homeBikeFade 48s infinite;
    filter: saturate(1.06) contrast(1.03);
}

.home-bike-slide:nth-child(1) { animation-delay: 0s; }
.home-bike-slide:nth-child(2) { animation-delay: 4s; }
.home-bike-slide:nth-child(3) { animation-delay: 8s; }
.home-bike-slide:nth-child(4) { animation-delay: 12s; }
.home-bike-slide:nth-child(5) { animation-delay: 16s; }
.home-bike-slide:nth-child(6) { animation-delay: 20s; }
.home-bike-slide:nth-child(7) { animation-delay: 24s; }
.home-bike-slide:nth-child(8) { animation-delay: 28s; }
.home-bike-slide:nth-child(9) { animation-delay: 32s; }
.home-bike-slide:nth-child(10) { animation-delay: 36s; }
.home-bike-slide:nth-child(11) { animation-delay: 40s; }
.home-bike-slide:nth-child(12) { animation-delay: 44s; }

@keyframes homeBikeFade {
    0% { opacity: 0; transform: scale(1.02); }
    4% { opacity: 1; transform: scale(1); }
    8% { opacity: 1; transform: scale(1); }
    12% { opacity: 0; transform: scale(1.02); }
    100% { opacity: 0; transform: scale(1.02); }
}

/* ==================== */
/* Sections */
/* ==================== */
.section {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
    position: relative;
}

.section#gallery {
    padding-top: 1rem;
    padding-bottom: 3.5rem;
}

#about.section {
    padding-top: 2.1rem;
    padding-bottom: 1.5rem;
}

#gallery .section-title {
    margin-bottom: 0.5rem;
}

#gallery .section-subtitle {
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    font-family: 'Rye', serif;
    margin-bottom: 1rem;
    color: var(--accent-bronze);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.first-section {
    padding-top: 7rem;
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Rye', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== */
/* About Section */
/* ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-content h3 {
    font-size: 1.75rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-bronze);
    border-radius: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.about-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-hero {
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-top h3,
.about-values h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-top h3::after,
.about-values h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-bronze), var(--accent-gold));
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #bbb;
    margin-bottom: 1.25rem;
}

.about-story-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 286px;
    margin: 1.25rem auto 0;
    filter: drop-shadow(0 0 30px rgba(201, 160, 80, 0.3));
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: lighten;
}

.about-values {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
}

.about-values .values-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.about-values .values-list li {
    background: rgba(255,255,255,0.03);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-bronze);
}

.about-values .values-list li::before {
    display: none;
}

.about-values .values-list li strong {
    color: var(--accent-gold);
}

/* ==================== */
/* Rides Section */
/* ==================== */
.rides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ride-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.ride-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.ride-date {
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: var(--dark-bg);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.ride-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.ride-date .month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ride-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.ride-route {
    color: var(--accent-bronze);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.ride-details {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.ride-status {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent-bronze);
    color: black;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ride-status.upcoming {
    background: rgba(201, 160, 80, 0.2);
    color: var(--accent-bronze);
}

.coming-soon-message {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-message h2 {
    font-size: 2.5rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
}

.coming-soon-message p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ==================== */
/* Safety Section */
/* ==================== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.safety-card {
    background: transparent;
    padding: 1.25rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.safety-card:hover {
    transform: none;
    box-shadow: none;
}

.safety-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.85rem;
}

.safety-icon svg {
    width: 30px;
    height: 30px;
    fill: black;
}

.safety-card h4 {
    font-size: 1.25rem;
    color: var(--accent-bronze);
    margin-bottom: 0.65rem;
}

.safety-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.7;
}

.group-riding {
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: white;
    padding: 2.2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: none;
}

.group-riding-lead {
    max-width: 72ch;
    margin: 0 auto 1.25rem;
    color: #d9d9d9;
    text-align: center;
    line-height: 1.75;
}

.group-riding .formation-content {
    margin: 2rem 0;
}

.group-rules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
    margin-top: 1rem;
}

.group-rule {
    border-top: 1px solid rgba(255,255,255,0.16);
    padding-top: 0.9rem;
}

.group-rule h4 {
    color: var(--accent-gold);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.group-rule p {
    color: #d0d0d0;
    margin-bottom: 0.55rem;
}

.group-rule ul {
    margin: 0;
    padding-left: 1.1rem;
}

.group-rule li {
    margin-bottom: 0.45rem;
    color: #bfbfbf;
}

.group-riding-media {
    position: relative;
    margin: 0 0 1.75rem;
}

.group-riding-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.group-riding h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    text-align: center;
}

.formation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.formation-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.formation-text ul {
    list-style: none;
}

.formation-text li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.formation-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-bronze);
    border-radius: 50%;
}

.formation-diagram {
    text-align: center;
    align-self: stretch;
}

.formation-visual {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    display: block;
    width: 100%;
    position: relative;
}

.formation-overlay {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
}

.formation-visual .rider {
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0.5rem;
    display: inline-block;
}

.formation-visual .rider.lead,
.formation-visual .rider.sweep {
    background: white;
    display: block;
    margin: 0.75rem auto;
}

.rider-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.formation-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================== */
/* Chapter Section */
/* ==================== */
.chapter-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chapter-card {
    background: transparent;
    padding: 1.25rem 0.2rem;
    border-radius: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    transition: none;
}

.chapter-card:hover {
    background: transparent;
    transform: none;
}

.chapter-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-bronze);
}

.chapter-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.membership-intro-image {
    display: block;
    width: min(500px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    border: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 28px rgba(201, 160, 80, 0.28));
    animation: float 3.5s ease-in-out infinite;
}

.membership-intro-image-bg {
    background: url('../images/site/logo.png') center / contain no-repeat;
}

/* ==================== */
/* Gallery Section */
/* ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Gallery Carousel */
.gallery-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.gallery-carousel {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.carousel-title {
    font-size: 1.75rem;
    color: var(--accent-bronze);
    text-align: center;
    margin-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide img.active {
    opacity: 1;
}

.carousel-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    padding: 1rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--accent-bronze);
    color: var(--dark-bg);
}

.carousel-counter {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.carousel-counter .current {
    color: var(--accent-bronze);
    font-weight: 600;
}

@media (max-width: 992px) {
    .gallery-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        padding: 1rem;
    }
    
    .carousel-btn {
        padding: 0.5rem;
        font-size: 1.25rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-bronze);
    transform: scale(1.1);
}

.lightbox-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ==================== */
/* Membership Section */
/* ==================== */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.membership-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.membership-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.membership-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.membership-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.membership-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

.membership-benefits {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.membership-benefits h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent-bronze);
}

.membership-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.membership-benefits li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.membership-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/site/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#membership .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.membership-form-logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
}

.membership-form-container {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(201, 160, 80, 0.2);
}

.membership-form-container h3 {
    font-size: 2rem;
    color: var(--accent-bronze);
    margin-bottom: 0.25rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.membership-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.membership-form .form-group {
    margin-bottom: 1.5rem;
}

.membership-form label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.membership-form input,
.membership-form select,
.membership-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #1a1a1a;
    color: white;
}

.membership-form input:focus,
.membership-form select:focus,
.membership-form textarea:focus {
    outline: none;
    border-color: var(--accent-bronze);
}

.membership-form input::placeholder,
.membership-form textarea::placeholder {
    color: #666;
}

.membership-form select {
    color: #999;
}

.membership-form select option {
    background: #1a1a1a;
    color: white;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group span {
    color: var(--text-light);
    line-height: 1.5;
}

.membership-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.membership-intro {
    display: grid;
    grid-template-columns: minmax(380px, 1.25fr) minmax(260px, 0.75fr);
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.membership-intro-media {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    background: transparent;
}

.membership-intro-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.25rem 0;
    box-shadow: none;
    position: static;
    overflow: visible;
}

.membership-intro-kicker {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent-bronze);
    margin-bottom: 0.8rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.membership-intro h2 {
    font-size: clamp(2rem, 2.9vw, 2.65rem);
    color: var(--text-light);
    margin-bottom: 0.9rem;
    text-align: left;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-shadow: none;
}

.membership-intro p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: #d3d3d3;
    text-align: left;
}

.membership-intro p + p {
    margin-top: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem 2rem;
    margin-top: 2rem;
}

.value-card {
    background: transparent;
    border-radius: 0;
    padding: 1.3rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    transition: none;
}

.value-card:hover {
    background: transparent;
    transform: none;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 0.55rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 1rem auto 0;
    max-width: 760px;
}

.offer-item {
    background: transparent;
    padding: 0.8rem 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    transition: none;
    overflow: visible;
}

.offer-item:hover {
    transform: none;
    border-color: rgba(255,255,255,0.14);
    box-shadow: none;
}

.offer-item::before {
    content: none;
}

.offer-item h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    padding-left: 0;
    letter-spacing: 0.1px;
}

.offer-item p {
    color: #cfcfcf;
    font-size: 0.96rem;
    line-height: 1.6;
    padding-left: 0;
}

.about-dual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.25rem;
    align-items: start;
    margin-top: 1.8rem;
}

.about-offer-join-header {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-offer-join-header .section-title {
    margin-bottom: 0.45rem;
}

.about-offer-join-header .section-subtitle {
    margin-bottom: 0;
}

.about-dual-col {
    padding: 0.6rem 0;
}

.about-dual-title {
    font-size: 1.55rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    text-align: left;
}

.about-dual-intro {
    color: var(--text-gray);
    margin-bottom: 0.6rem;
    text-align: left;
}

.about-join-cta {
    text-align: left;
    max-width: none;
    padding: 1.1rem 0 0;
    margin: 0;
}

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

.membership-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.membership-cta h2 {
    font-size: 2rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
}

.membership-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.membership-cta .cta-contact {
    margin-top: 1.5rem;
}

.membership-cta a {
    color: var(--accent-bronze);
    text-decoration: none;
    font-weight: 600;
}

.membership-cta a:hover {
    text-decoration: underline;
}

/* ==================== */
/* Contact Section */
/* ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    color: black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--accent-bronze);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #111;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #1a1a1a;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-bronze);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    color: #999;
}

.form-group select option {
    background: #1a1a1a;
}

.contact-form .btn {
    width: 100%;
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-intro h2 {
    font-size: 2.25rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: transparent;
    border-radius: 0;
    padding: 1.2rem 0.1rem;
    text-align: left;
    text-decoration: none;
    transition: none;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.social-card:hover {
    background: transparent;
    transform: none;
    border-color: rgba(255,255,255,0.14);
}

.social-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.75rem;
    transition: transform 0.3s ease;
}

.social-card:hover .social-card-icon {
    transform: none;
}

.social-card-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0);
}

.social-card h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

.email-contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.email-contact p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.email-contact a {
    color: var(--accent-bronze);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.email-contact a:hover {
    color: var(--accent-gold);
}

.contact-layout {
    display: block;
}

.contact-simple {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-simple h2 {
    color: var(--text-light);
    margin-bottom: 0.45rem;
}

.contact-simple p {
    color: var(--text-gray);
}

.contact-simple-email {
    margin-top: 1rem;
    font-size: 1.05rem;
}

.contact-simple-email a {
    color: var(--accent-bronze);
    text-decoration: none;
    font-weight: 600;
}

.contact-simple-email a:hover {
    color: var(--accent-gold);
}

.contact-simple-links {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.contact-simple-links a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.contact-link-icon {
    width: 38px;
    height: 38px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.contact-link-icon-wrap {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    flex-shrink: 0;
}

.contact-simple-links a:hover {
    color: var(--accent-bronze);
    border-color: rgba(201, 160, 80, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

/* ==================== */
/* Home Page Sections */
/* ==================== */
.home-values {
    background: #0a0a0a;
}

.home-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.home-value-card {
    background: transparent;
    border-radius: 0;
    padding: 1.2rem 0;
    text-align: left;
    transition: none;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.home-value-card:hover {
    background: transparent;
    transform: none;
    border-color: rgba(255,255,255,0.14);
}

.home-value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.home-value-icon svg {
    width: 40px;
    height: 40px;
    fill: black;
}

.home-value-card h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 0.55rem;
}

.home-value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.home-feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: block;
}

.home-feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--accent-bronze);
}

.home-feature-card h3 {
    font-size: 1.35rem;
    color: var(--accent-bronze);
    margin-bottom: 0.75rem;
}

.home-feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.home-feature-card:hover .feature-link {
    color: var(--accent-bronze);
}

.home-cta {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border-top: 1px solid rgba(201, 160, 80, 0.2);
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
}

.home-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.home-cta-content h2 {
    font-size: 2.5rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
}

.home-cta-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ==================== */
/* Footer */
/* ==================== */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
    position: static;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    perspective: 500px;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    max-width: 62px;
    /* animation: rotate 10s linear infinite; */
    height: auto;
}

.logo-bg-footer {
    display: inline-block;
    width: 62px;
    height: 62px;
    background: url('../images/site/logo.png') center / contain no-repeat;
}

.footer-brand-text h3 {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.footer-brand-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-bronze);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-bronze);
    color: var(--dark-bg);
}

.social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.footer-social a:hover .social-icon {
    filter: brightness(0);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom p,
.footer-legal {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.footer-quote {
    font-style: italic;
    margin-top: 0;
    color: var(--accent-bronze);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* ==================== */
/* Animations */
/* ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideRight 0.8s ease-out forwards;
}

.animate-pop {
    opacity: 0;
    animation: pop 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-logo {
        order: -1;
    }

    .about-values .values-list {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-logo {
        order: 1;
    }

    .hero-logo img {
        max-height: 40vh;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 100%);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .membership-intro {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .membership-intro-image {
        width: min(360px, 100%);
    }

    .membership-intro-content {
        padding: 0.25rem 0;
    }

    .membership-intro h2,
    .membership-intro p {
        text-align: left;
    }

    .about-dual {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .about-dual-col {
        padding: 0.6rem 0;
    }

    .about-dual-title {
        font-size: 1.4rem;
    }

    .about-join-cta {
        padding-top: 0.8rem;
    }

    .contact-simple-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .ride-card {
        flex-direction: column;
        text-align: center;
    }

    .ride-date {
        margin: 0 auto;
    }

    .formation-content {
        grid-template-columns: 1fr;
    }

    .group-riding {
        padding: 2rem 1.5rem;
    }

    .group-rules-grid {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .membership-form-container {
        padding: 2rem 1.5rem;
    }
}

/* Additional Responsive Styles */
@media (max-width: 576px) {
    .section {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.72rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .chapter-card,
    .safety-card,
    .ride-card {
        padding: 1.5rem;
    }

    .chapter-card h4,
    .safety-card h4 {
        font-size: 1.1rem;
    }

    .membership-benefits ul {
        padding-left: 1.5rem;
    }

    .membership-benefits li {
        font-size: 1rem;
    }

    .footer-content {
        padding: 2rem 1rem;
    }

    .footer-logo {
    max-width: 62px;
    /* animation: rotate 10s linear infinite; */
    }

    .footer-brand-text h3 {
        font-size: 1.05rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .footer-links a {
        font-size: 0.9rem;
    }

    .nav-logo span {
        font-size: 1rem;
    }


    .logo-img {
    /* animation: rotate 10s linear infinite; */
        height: 35px;
    }

    .values-list li {
        font-size: 1rem;
    }

    .safety-icon {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .ride-date {
        width: 70px;
        height: 70px;
    }

    .ride-date .day {
        font-size: 1.5rem;
    }

    .ride-info h4 {
        font-size: 1.1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

/* Improve tablet landscape */
@media (min-width: 769px) and (max-width: 991px) {
    .chapter-grid,
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 2s ease-in-out infinite;
}

.coming-soon h2 {
    font-family: 'Rye', serif;
    font-size: 3rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Shop Page */
.shop-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.shop-intro h2 {
    color: var(--accent-bronze);
    margin-bottom: 0.6rem;
}

.shop-intro p {
    color: var(--text-gray);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.shop-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 160, 80, 0.25);
    border-radius: 12px;
    overflow: hidden;
}

.shop-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.shop-card-body {
    padding: 1rem 1rem 1.15rem;
}

.shop-card-body h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 0.25rem;
}

.shop-price {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.shop-copy {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.55;
}

.shop-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.shop-order-wrap {
    margin: 2.5rem auto 0;
    max-width: 760px;
}

.shop-order-wrap h2 {
    color: var(--accent-bronze);
    margin-bottom: 0.35rem;
}

.shop-order-intro {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.shop-order-form {
    margin-top: 0.5rem;
}

.form-status {
    margin-top: 0.85rem;
    font-size: 0.95rem;
}

.form-status.success {
    color: #63d47a;
}

.form-status.error {
    color: #ff7e7e;
}
