/* ===========================
   The Bruumers — Design System
   =========================== */

:root {
    /* Colors */
    --gold: #c9a84c;
    --gold-light: #e3cc7a;
    --gold-dark: #a88a2e;
    --black: #0a0a0a;
    --black-soft: #111111;
    --dark: #1a1a1a;
    --dark-card: #161616;
    --dark-hover: #222222;
    --gray: #2a2a2a;
    --gray-light: #3a3a3a;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #6a6a6a;
    --white: #ffffff;
    --whatsapp: #25D366;
    --instagram-1: #f09433;
    --instagram-2: #e6683c;
    --instagram-3: #dc2743;
    --instagram-4: #cc2366;
    --instagram-5: #bc1888;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===========================
   Reset & Base
   =========================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ===========================
   Typography
   =========================== */

@font-face {
    font-family: "Twemoji Country Flags";
    unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073, U+E0074, U+E0077, U+E007F;
    src: url("https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2") format("woff2");
    font-display: swap;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding: 6px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.text-gold {
    color: var(--gold);
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===========================
   Navbar
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--gold);
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 30px;
    transition: all 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    font-weight: 600;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

.nav-close {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.05);
    transition: transform 15s linear;
}

.hero:hover .hero-bg-img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.7) 70%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
    border: 3px solid rgba(201, 168, 76, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-line {
    display: block;
    color: var(--text-primary);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===========================
   About
   =========================== */

.about {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.about-lead {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p + p {
    margin-top: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--gold);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===========================
   President
   =========================== */

.president {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.president-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
}

.president-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.president-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.president-badge i {
    font-size: 14px;
}

.president-info {
    padding: 48px 48px 48px 0;
}

.president-name {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 12px;
}

.president-role {
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
    margin-top: 4px;
}

.president-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 24px 0;
    border-radius: 3px;
}

.president-quote {
    font-size: 17px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 20px;
    position: relative;
}

.president-quote .fa-quote-left,
.president-quote .fa-quote-right {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.6;
    margin: 0 4px;
}

.president-bio {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===========================
   Trips
   =========================== */

.trips {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.map-container {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.map-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.map-title h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.map-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-line {
    width: 20px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    display: inline-block;
}

#map {
    width: 100%;
    height: 500px;
}

/* Leaflet custom styles */
.leaflet-popup-content-wrapper {
    background: var(--dark-card) !important;
    color: var(--text-primary) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(201, 168, 76, 0.2) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
}

.leaflet-popup-tip {
    background: var(--dark-card) !important;
}

.leaflet-popup-content {
    font-family: var(--font-body) !important;
    margin: 12px 16px !important;
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.popup-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trip Cards */
.trip-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.trip-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.trip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.trip-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.trip-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.trip-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.trip-card-featured .trip-card-image {
    aspect-ratio: auto;
    min-height: 400px;
}

.trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.trip-card:hover .trip-card-image img {
    transform: scale(1.05);
}

.trip-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), var(--gray));
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
}

.trip-card-content {
    padding: 28px;
}

.trip-card-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trip-card-subtitle {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.trip-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.trip-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.trip-stat i {
    color: var(--gold);
    font-size: 12px;
}

.trip-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.trip-route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.route-tag {
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
}

/* ===========================
   Country Stickers
   =========================== */

.stickers-section {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 48px;
}

.stickers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.stickers-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.stickers-title h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.stickers-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.stickers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.country-sticker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 130px;
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 2px solid rgba(201, 168, 76, 0.25);
    border-radius: 16px;
    position: relative;
    cursor: default;
    transition: all 0.5s var(--ease-bounce);
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
}

.country-sticker.revealed {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.country-sticker::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), transparent, rgba(201, 168, 76, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.country-sticker:hover::before {
    opacity: 1;
}

.country-sticker:hover {
    transform: scale(1.1) rotate(3deg);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.country-sticker::after {
    content: attr(data-year);
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.sticker-flag {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    font-family: "Apple Color Emoji", "Twemoji Country Flags", "Segoe UI Emoji", "Noto Color Emoji", emoji;
}

.sticker-code {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.2;
}

.sticker-name {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===========================
   Map Controls & Trip Selector
   =========================== */

.map-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trip-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trip-select-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.trip-select-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.trip-select-btn.active {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.1);
}

.trip-select-btn i {
    font-size: 11px;
}

/* ===========================
   Gallery
   =========================== */

.gallery-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

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

.instagram-embed-card {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    padding: 28px 36px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s var(--ease);
}

.instagram-embed-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.15);
}

.instagram-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--instagram-1), var(--instagram-3), var(--instagram-5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.instagram-card-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.instagram-card-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.instagram-card-arrow {
    color: var(--text-muted);
    font-size: 16px;
    flex-shrink: 0;
    transition: color 0.3s var(--ease);
}

.instagram-embed-card:hover .instagram-card-arrow {
    color: var(--instagram-3);
}

/* ===========================
   Join
   =========================== */

.join {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.join-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 20px;
}

.join-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-card {
    display: block;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-card);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.1);
}

.instagram-card:hover {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 16px 48px rgba(225, 48, 108, 0.1);
}

.join-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.whatsapp-card .join-card-icon {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp);
}

.instagram-card .join-card-icon {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.15), rgba(225, 48, 108, 0.15));
    color: var(--instagram-3);
}

.join-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.join-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.join-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s var(--ease);
}

.join-card:hover .join-card-cta {
    gap: 14px;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-location i {
    color: var(--gold);
}

/* ===========================
   Animations
   =========================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Staggered animation for value cards */
.about-values .value-card:nth-child(1) { transition-delay: 0s; }
.about-values .value-card:nth-child(2) { transition-delay: 0.1s; }
.about-values .value-card:nth-child(3) { transition-delay: 0.2s; }
.about-values .value-card:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   Responsive
   =========================== */

.nav-mobile-info {
    display: none;
}

@media (max-width: 1024px) {
    .president-card {
        grid-template-columns: 350px 1fr;
    }

    .trip-card-featured {
        grid-template-columns: 1fr;
    }

    .trip-card-featured .trip-card-image {
        min-height: auto;
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(10, 10, 10, 0.8);
        border: 2px solid var(--gold);
        color: var(--gold);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 32px;
        font-weight: 400;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s var(--ease);
        backdrop-filter: blur(4px);
    }

    .nav-close:hover {
        background: var(--gold);
        color: var(--black);
        transform: scale(1.1);
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100svh;
        background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.95)), url('assets/stelvio-bikes.png') center/cover no-repeat;
        display: flex;
        flex-direction: column;
        padding: 80px 24px 32px;
        gap: 16px;
        transition: right 0.4s var(--ease);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .nav-menu-wrapper.open {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-mobile-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        margin-top: auto;
    }

    .mobile-info-social {
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .mobile-info-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 20px;
        transition: all 0.3s var(--ease);
    }

    .mobile-info-social a:hover {
        background: rgba(201, 168, 76, 0.2);
    }

    .nav-link {
        font-size: 18px;
        padding: 8px 18px;
        width: 100%;
    }

    .hero-logo img {
        width: 120px;
        height: 120px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .president-card {
        grid-template-columns: 1fr;
    }

    .president-image {
        min-height: 350px;
    }

    .president-info {
        padding: 32px;
    }

    .trip-cards {
        grid-template-columns: 1fr;
    }

    .trip-card-featured {
        grid-template-columns: 1fr;
    }

    #map {
        height: 350px;
    }

    .stickers-section {
        padding: 24px;
    }

    .stickers-header {
        flex-direction: column;
        text-align: center;
    }

    .stickers-grid {
        gap: 12px;
    }

    .country-sticker {
        width: 90px;
        height: 110px;
    }

    .sticker-flag {
        font-size: 28px;
    }

    .sticker-code {
        font-size: 14px;
    }

    .map-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .map-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .join-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 1px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .map-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
