﻿/* ============================================
   AZZEM WATERSPORTS - Ana CSS
   Tema: Güneş, Deniz & Kum — Ege Turkuvaz + Altın + Kum
   ============================================ */

:root {
    --ocean-deep:    #073B54;
    --ocean-mid:     #0A6EA8;
    --ocean-light:   #0096C7;
    --ocean-bright:  #00B4D8;
    --wave-teal:     #00CFE8;
    --wave-cyan:     #48CAE4;
    --gold:          #F59E0B;
    --gold-light:    #FBBF24;
    --sand:          #FEF3C7;
    --coral:         #F97316;
    --white:         #ffffff;
    --off-white:     #F0FBFF;
    --text-dark:     #073B54;
    --text-mid:      #2D6A8E;
    --text-light:    #5B9DB9;
    --bg-body:       #EFF9FF;
    --bg-section2:   #DCF1F9;
    --border:        rgba(0,150,199,0.15);
    --shadow-sm:     0 2px 12px rgba(7,59,84,0.08);
    --shadow-md:     0 8px 32px rgba(7,59,84,0.15);
    --shadow-lg:     0 20px 60px rgba(7,59,84,0.22);
    --radius:        16px;
    --radius-sm:     8px;
    --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
    --font-display:  'Bebas Neue', sans-serif;
    --font-body:     'Raleway', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

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

.section {
    padding: 90px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,158,11,0.55);
    filter: brightness(1.08);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--ocean-deep);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
}
.section-title.left { text-align: left; }

.section-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    /* Navbar içeriğinin dışa taşmasını engeller */
    overflow: hidden;
}

.navbar {
    padding: 18px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: rgba(7,59,84,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.logo-img {
    height: var(--logo-h, 52px);
    width: auto;
    max-width: 220px;
    display: block;
    transition: height 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.navbar.scrolled .logo-img { height: var(--logo-h-scrolled, 42px); }
.footer-logo img { height: var(--logo-h-footer, 50px); width: auto; max-width: 200px; }

/* ── Logo metin (geçici — PNG logo gelene kadar) ── */
.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-shadow: 0 2px 14px rgba(0,0,0,0.35), 0 0 28px rgba(251,191,36,0.2);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: font-size 0.3s ease, color 0.3s ease;
}
.navbar.scrolled .logo-text {
    font-size: 1.5rem;
}
.logo-text-footer {
    font-size: 1.6rem;
    color: var(--wave-teal);
    text-shadow: 0 0 24px rgba(0,207,232,0.25);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap; /* Hiçbir zaman alt satıra geçmesin */
    flex-shrink: 0;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 7px 11px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap; /* Kelime kırılmasın */
    flex-shrink: 0;
}
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap; /* Rusça "Бронирование" kırılmasın */
    flex-shrink: 0;
}
.nav-whatsapp:hover { background: #1ebe5c; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ocean-deep);
}

/* Video arka planı */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(160deg, #073B54 0%, #0A6EA8 40%, #0096C7 70%, #00B4D8 100%);
}
.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;   /* 16:9 oran */
    min-height: 100vh;
    min-width: 177.78vh;
    border: none;
    pointer-events: none;
}
/* Koyu overlay — video üzerinde yazı okunsun */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 50, 78, 0.52);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(245,158,11,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 25%, rgba(0,207,232,0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 85%, rgba(0,180,216,0.25) 0%, transparent 50%),
        linear-gradient(160deg, #073B54 0%, #0A6EA8 40%, #0096C7 70%, #00B4D8 100%);
    animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
    0%   { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(12deg) brightness(1.06); }
}

/* Güneş parlaması — hero arka planı üzerinde yüzen animasyonlu ışık */
.hero-sun {
    position: absolute;
    top: -80px;
    right: 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, rgba(249,115,22,0.10) 45%, transparent 70%);
    animation: sunPulse 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}
@keyframes sunPulse {
    0%,100% { transform: scale(1); opacity: 0.9; }
    50%      { transform: scale(1.12); opacity: 1; }
}

/* Dalgalanan yüzen parçacıklar */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: floatDot 10s ease-in-out infinite;
}
.hero-particles::before {
    width: 200px; height: 200px;
    bottom: 20%; left: 5%;
    animation-delay: -3s;
}
.hero-particles::after {
    width: 120px; height: 120px;
    top: 30%; left: 20%;
    animation-delay: -6s;
}
@keyframes floatDot {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Eski tek-kolon hero-content (artık kullanılmıyor, uyumluluk için bırakıldı) */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 20px 80px;
    animation: fadeInUp 1s ease forwards;
}

/* ===== YENİ İKİ KOLONLU HERO (poster tarzı) ===== */
.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 130px 24px 90px;
}

/* SOL KOLON — başlık ve CTA */
.hero-left {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.hero-left .hero-title    { animation: fadeInUp 1s ease 0.15s both; }
.hero-left .hero-subtitle { animation: fadeInUp 1s ease 0.25s both; }
.hero-left .hero-cta      { justify-content: flex-start; animation: fadeInUp 1s ease 0.35s both; }
.hero-left .hero-stats    { display: inline-flex; animation: fadeInUp 1s ease 0.45s both; }

/* SAĞ KOLON — aktivite vitrin kartları */
.hero-showcase {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-act-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-act-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.15);
}
.hero-act-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border-color: rgba(251,191,36,0.5);
}
.hero-act-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.hero-act-card:hover img { transform: scale(1.08); }

.hero-act-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--ocean-light), var(--wave-teal));
}

.hero-act-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 8px 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1.2px;
    line-height: 1.1;
    text-align: center;
    color: var(--gold-light);
    -webkit-text-stroke: 0.7px rgba(7,59,84,0.95);
    paint-order: stroke fill;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    background: linear-gradient(to top, rgba(7,59,84,0.95) 0%, rgba(7,59,84,0.5) 55%, transparent 100%);
    pointer-events: none;
}

.hero-showcase-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(245,158,11,0.45);
    transition: var(--transition);
}
.hero-showcase-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(245,158,11,0.65);
    filter: brightness(1.08);
    color: var(--white);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.18);
    border: 1px solid rgba(251,191,36,0.5);
    color: var(--gold-light);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.1s both;
    box-shadow: 0 0 24px rgba(245,158,11,0.18);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7rem);
    color: var(--white);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 1s ease 0.5s both;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 40px;
    display: inline-flex;
}

.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}
.hero-waves svg { width: 100%; display: block; }
.hero-waves path { animation: waveSway 8s ease-in-out infinite; transform-origin: center; }
@keyframes waveSway {
    0%,100% { d: path("M0,60 C360,120 720,0 1080,60 C1260,90 1380,45 1440,60 L1440,120 L0,120 Z"); }
    50%      { d: path("M0,70 C300,20 600,110 960,50 C1140,20 1320,80 1440,55 L1440,120 L0,120 Z"); }
}

/* ===== ACTIVITIES ===== */
.activities-section {
    background: var(--bg-body);
    position: relative;
}
.activities-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--wave-teal), var(--gold));
    background-size: 200% 100%;
    animation: shimmerBorder 4s linear infinite;
}
@keyframes shimmerBorder {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Kart tıklanabilir — JS ile yönlendirme, overlay yok (flicker önlenir) */
.activity-card { position: relative; cursor: pointer; }

/* Detay butonu */
.card-detail-btn {
    background: rgba(0,150,199,0.08);
    color: var(--ocean-light);
    font-size: 0.78rem;
    padding: 9px 16px;
    border: 1px solid rgba(0,150,199,0.18);
}
.card-detail-btn:hover {
    background: rgba(0,150,199,0.14);
    box-shadow: none;
    transform: none;
    filter: none;
}

/* Kart — eşit yükseklik için flex column */
.activity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.activity-card.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hover: kart kutusu sabit kalır — translateY titremeye neden olduğu için kaldırıldı.
   Efekt: derin gölge + kenarlık rengi + görsel zoom (card-image img üzerinden). */
.activity-card:hover {
    box-shadow: 0 16px 48px rgba(0,150,199,0.25);
    border-color: rgba(0,150,199,0.38);
}

/* Görsel alanı */
.card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--ocean-light) 0%, var(--wave-teal) 100%);
    flex-shrink: 0;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.activity-card:hover .card-image img { transform: scale(1.1); }

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    background: linear-gradient(145deg, var(--ocean-light) 0%, var(--wave-teal) 100%);
}

/* Fiyat etiketi */
.card-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--ocean-deep);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Kart içeriği — flex-grow ile buton alta yapışır */
.card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 1.5px;
    color: var(--ocean-deep);
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-desc {
    color: var(--text-mid);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 14px;
    flex-grow: 1;
}

/* Meta bilgiler (süre, yaş, kişi) */
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--off-white);
    color: var(--text-mid);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.meta-item svg { opacity: 0.65; flex-shrink: 0; }

/* Buton alanı */
.card-actions { margin-top: auto; }

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: linear-gradient(135deg, var(--ocean-light), var(--wave-teal));
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: var(--transition);
}
.card-btn:hover {
    filter: brightness(1.12);
    /* translateY kaldırıldı: stretched-link ile flicker'a neden oluyordu */
    box-shadow: 0 5px 18px rgba(21,101,192,0.35);
}
.card-btn-wa {
    background: #25D366;
    color: white;
}
.card-btn-wa:hover {
    background: #1ebe59;
    box-shadow: 0 5px 18px rgba(37,211,102,0.35);
}

/* ===== ABOUT ===== */
.about-section {
    background: linear-gradient(160deg, #073B54 0%, #0A5C8A 50%, #0096C7 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    padding-bottom: 70%;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.about-image-side { position: relative; }
.about-img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0,180,216,0.25), rgba(245,158,11,0.2));
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    color: var(--ocean-deep);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}
.about-badge-float {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.about-badge-float span {
    color: var(--ocean-deep);
    display: inline-flex;
    align-items: center;
}

.about-section .section-tag { margin-bottom: 14px; }
.about-section .section-title { color: var(--white); }
.about-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.feature p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg-section2); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,59,84,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}
.gallery-overlay svg { width: 34px; height: 34px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section { background: var(--bg-section2); }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.insta-embed-item { border-radius: var(--radius-sm); overflow: hidden; }
.insta-embed-item iframe { max-width: 100%; }

.insta-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(225,48,108,0.08), rgba(193,53,132,0.08));
    border: 1px solid rgba(225,48,108,0.2);
    border-radius: var(--radius);
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(225,48,108,0.35);
}
.insta-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(225,48,108,0.45); filter: brightness(1.05); }

.insta-handle {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-body); }

/* İki sütunlu düzen: sol iletişim, sağ harita */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-col { display: flex; flex-direction: column; gap: 28px; }

/* İletişim kartları (eski düzen — düzeltilmiş adres) */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: inherit;
}
.contact-card:hover { border-color: var(--ocean-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon  {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,150,199,0.10);
    color: var(--ocean-light);
}
.contact-card-icon svg { width: 27px; height: 27px; }
.contact-card strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.contact-card span   { color: var(--ocean-mid); font-weight: 700; font-size: 0.9rem; word-break: break-word; }

/* (contact-card-full kaldırıldı, adres normal kart olarak 2x2 grid içinde) */

.whatsapp-card { border-color: rgba(37,211,102,0.3); }
.whatsapp-card:hover { border-color: #25D366; box-shadow: 0 8px 32px rgba(37,211,102,0.2); }
.whatsapp-card .contact-card-icon { color: #25D366; background: rgba(37,211,102,0.12); }
.whatsapp-card span { color: #25D366; }

/* Sosyal medya satırı */
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.social-pill:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.social-pill.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-pill.facebook  { background: #1877F2; }
.social-pill.tiktok    { background: #010101; }

/* Harita sütunu */
.contact-map-col { position: sticky; top: 100px; }

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    background: var(--off-white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* Harita yoksa tüm genişlik */
.contact-full { display: flex; flex-direction: column; gap: 28px; }
.contact-full .contact-cards { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.contact-full .social-links-row { justify-content: center; }

/* Alert (admin formları için) */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Footer sosyal ikonlar */
.footer-social {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: white;
    transition: var(--transition);
}
.footer-social-icon:hover { transform: translateY(-3px); filter: brightness(1.15); }
.footer-social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-icon.facebook  { background: #1877F2; }
.footer-social-icon.tiktok    { background: #010101; border: 1px solid rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.site-footer { background: var(--ocean-deep); color: rgba(255,255,255,0.7); }

.footer-top { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 1.3rem;
}
.footer-logo img { height: var(--logo-h-footer, 52px); width: auto; }
.footer-logo strong {
    font-family: var(--font-display);
    color: white;
    letter-spacing: 2px;
    font-size: 1rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.65);
}
.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.footer-contact-line svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    width: 100%;
}
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: pulseWA 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes pulseWA {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid  { grid-template-columns: 1fr; gap: 40px; }
    .about-image-side { max-width: 400px; margin: 0 auto; }

    /* Tablet: showcase biraz daralt */
    .hero-inner  { gap: 32px; padding: 120px 20px 80px; }
    .hero-showcase { flex: 0 0 300px; }
    .hero-act-label { font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { letter-spacing: 1px; }

    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--ocean-deep);
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 4px;
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }
    .nav-menu.open { right: 0; box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
    .nav-link { padding: 12px 16px; font-size: 0.9rem; width: 100%; }
    .nav-whatsapp { width: 100%; justify-content: center; }

    /* Hero mobil — poster tarzı tek kolon */
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 16px 50px;
        gap: 28px;
    }
    .hero-left {
        width: 100%;
        text-align: center;
        order: 1;
    }
    .hero-left .hero-cta   { justify-content: center; }
    .hero-left .hero-cta .btn { width: 100%; text-align: center; }
    .hero-left .hero-stats { display: none; } /* mobilde gizle — vitrin kartları yeterli */
    .hero-showcase {
        width: 100%;
        order: 2;
        gap: 12px;
    }
    .hero-act-cards { gap: 8px; }
    .hero-act-card { border-radius: 16px; }
    .hero-act-label { font-size: 0.85rem; padding: 30px 6px 10px; }
    .hero-showcase-cta { font-size: 1.05rem; letter-spacing: 1.5px; padding: 16px 24px; width: 100%; }

    /* Hero-content (eski) için uyumluluk */
    .hero-content {
        text-align: center;
        padding: 100px 20px 60px;
        width: 100%;
        max-width: 100%;
    }
    .hero-stats { gap: 20px; padding: 16px 24px; }
    .stat-num   { font-size: 1.4rem; }

    .activities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-map-col { position: static; }
    .map-container { height: 300px; }
    .about-features { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .activities-grid { grid-template-columns: 1fr; gap: 14px; }
    .hero-cta   { flex-direction: column; align-items: center; }
    .hero-stats { gap: 16px; }
    .stat-divider { height: 30px; }
    .footer-grid  { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 24px; }
    .insta-grid { grid-template-columns: 1fr; }
}

/* ===== NO-ACTIVITIES ===== */
.no-activities {
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== INSTAGRAM FEED ===== */

/* Widget wrapper (Behold / LightWidget) */
.insta-row-wrap { margin-bottom: 40px; }

/* Bireysel embed — yatay kaydırmalı tek satır */
.insta-row-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--ocean-light) transparent;
}
.insta-row-scroll::-webkit-scrollbar { height: 4px; }
.insta-row-scroll::-webkit-scrollbar-thumb { background: var(--ocean-light); border-radius: 2px; }
.insta-row-item {
    flex: 0 0 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Kurulum rehberi kutusu */
.insta-setup-box {
    max-width: 560px;
    margin: 0 auto 40px;
    padding: 40px 36px;
    background: var(--white);
    border: 1.5px solid rgba(188,24,136,0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.insta-setup-icon { margin-bottom: 16px; }
.insta-setup-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}
.insta-setup-desc { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 24px; }

.insta-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 28px;
}
.insta-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.87rem;
    color: var(--text-mid);
}
.insta-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f09433, #bc1888);
    color: white;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.insta-setup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(188,24,136,0.3);
}
.insta-setup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(188,24,136,0.4); }

/* ===== AKTİVİTE DETAY SAYFASI ===== */
.act-detail-hero {
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-light) 100%);
    overflow: hidden;
}
.act-detail-hero-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.45;
}
.act-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,59,84,0.95) 0%, rgba(7,59,84,0.3) 100%);
}
.act-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0 50px;
    width: 100%;
}

.act-detail-body { padding: 60px 0; }

.act-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.act-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.act-detail-text {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.03rem;
    margin-bottom: 36px;
}

/* Aktivite açıklama paragrafları (2 paragraf, detail_text içinde) */
.act-description {
    margin-bottom: 28px;
}
.act-description p {
    color: var(--text-mid);
    line-height: 1.85;
    font-size: 1.03rem;
    margin-bottom: 14px;
}
.act-description p:last-child { margin-bottom: 0; }

/* ===== Fiyat Gizleme — prices-hidden body sınıfı ===== */
.prices-hidden .price-table          { display: none !important; }
.prices-hidden .act-booking-price    { display: none !important; }
.prices-hidden .card-price           { display: none !important; }
.prices-hidden .act-detail-hero .section-tag[data-price] { display: none !important; }

/* YouTube video embed */
.act-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
}
.act-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Fotoğraf galerisi */
.act-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 36px;
}
.act-photo-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.act-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.act-photo-item:hover img { transform: scale(1.08); }
.act-photo-item .gallery-overlay { position: absolute; inset: 0; }

/* Yan panel (rezervasyon) */
.act-sidebar {
    position: sticky;
    top: 100px;
}
.act-booking-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 28px 24px;
}
.act-booking-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--ocean-deep);
    letter-spacing: 2px;
    margin-bottom: 6px;
    line-height: 1;
}
.act-booking-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
}
.act-booking-card .card-meta { margin: 16px 0; }
.act-booking-divider { height: 1px; background: var(--border); margin: 20px 0; }
.act-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.2s;
}
.act-back-link:hover { color: var(--ocean-light); }

@media (max-width: 900px) {
    .act-detail-grid { grid-template-columns: 1fr; }
    .act-sidebar { position: static; }
}

/* ===== Fiyat Tablosu (aktivite detay sayfası) ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 0.93rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.price-table th {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    color: white;
    padding: 11px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
}
.price-table td:last-child {
    font-weight: 800;
    color: var(--ocean-light);
    font-size: 1rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg-section2); }
.price-table tr:hover td { background: rgba(0,150,199,0.07); }

/* ===== Scroll Reveal ===== */
[data-aos] { opacity: 0; transform: translateY(30px); }

/* ============================================
   POSTER-STİLİ MOBİL REVİZYON
   Referans görsele göre mobil görünüm: sarı konturlu
   kalın başlıklar, görsel-ağırlıklı aktivite kartları,
   tam genişlikte büyük CTA butonları.
   (Masaüstü görünümü bu bloktan etkilenmez.)
   ============================================ */

/* Görsel üstü aktivite başlığı — yalnızca mobilde görünür */
.card-img-caption { display: none; }

@media (max-width: 768px) {
    /* — Hero başlığı: sarı konturlu poster tarzı — */
    .hero-title {
        color: var(--gold-light);
        font-size: clamp(2.6rem, 12.5vw, 4.6rem);
        letter-spacing: 2px;
        -webkit-text-stroke: 1.5px rgba(7, 59, 84, 0.92);
        paint-order: stroke fill;
        text-shadow: 0 3px 0 rgba(7, 59, 84, 0.45), 0 8px 22px rgba(0, 0, 0, 0.6);
    }

    /* — Hero CTA: dikey, tam genişlik, büyük buton — */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* — Aktivite kartları: görsel-ağırlıklı poster düzeni — */
    .card-image { height: 250px; }

    /* Görsel üzerine bindirilen sarı konturlu aktivite adı */
    .card-img-caption {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 48px 14px 14px;
        font-family: var(--font-display);
        font-size: 1.7rem;
        letter-spacing: 1.5px;
        line-height: 1.05;
        text-align: center;
        color: var(--gold-light);
        -webkit-text-stroke: 1.2px rgba(7, 59, 84, 0.9);
        paint-order: stroke fill;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        background: linear-gradient(to top,
            rgba(7, 59, 84, 0.92) 0%,
            rgba(7, 59, 84, 0.45) 55%,
            transparent 100%);
        pointer-events: none;
    }
    /* Gövdedeki başlık mobilde gizli — görsel üstündeki kullanılıyor */
    .activity-card .card-body .card-title { display: none; }

    /* Kart kutusu mobilde daha belirgin */
    .activity-card {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 150, 199, 0.18);
    }
    .card-body { padding: 18px; }

    /* Dokunmatik dostu büyük kart butonları */
    .card-btn { padding: 14px 18px; font-size: 0.9rem; }
}

/* Tek sütun (telefon) — daha büyük görsel ve başlık */
@media (max-width: 480px) {
    .card-image { height: 270px; }
    .card-img-caption { font-size: 1.9rem; }
}
