/* =====================================================
   ATD - Ankara Turizm Derneği
   CSS - Progress Theme Inspired
   ===================================================== */

:root {
    --blue: #2C4BAA;
    --red: #D84B3E;
    --dark: #151515;
    --dark2: #1e1e1e;
    --light: #F4F4F5;
    --white: #ffffff;
    --text-muted: #6b6b6b;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s;
}

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

/* =====================================================
   NAVBAR
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.interior-header {
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
}

.site-header.scrolled {
    background: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    width: 100%;
    padding: 0 60px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    flex: 1;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

/* Görünmez köprü: nav yazısı ile dropdown arasındaki boşluğu kapatır */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* dropdown'ın üstündeki boşluk kadar */
}

.nav-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: rgba(21,21,21,0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    list-style: none;
    gap: 0;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(21,21,21,0.97);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    rotate: 45deg;
}

/* Dropdown üstüne görünmez padding köprüsü — fareyi tutmak için */
.nav-dropdown .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-dropdown .dropdown-menu li a::after {
    display: none;
}

.nav-dropdown .dropdown-menu li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.nav-phone {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.nav-cta {
    background: var(--blue);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    margin-top: 0;
    padding-top: 100px; /* offset for transparent header */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.88) 35%, rgba(10,10,10,0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.hero-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
    display: block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    max-width: 750px;
    margin-bottom: 28px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.2s;
    border: 2px solid var(--red);
}

.btn-red:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* =====================================================
   FOCUS BOXES (3-column solid color blocks)
   ===================================================== */
.focus-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.focus-box {
    padding: 60px 48px;
    transition: filter 0.2s;
}

.focus-box--light { background: var(--light); }
.focus-box--blue  { background: var(--blue); }
.focus-box--dark  { background: var(--dark); }

.focus-box-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.focus-box-icon svg {
    width: 100%;
    height: 100%;
}

.focus-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.focus-box p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.focus-box--light h3 { color: var(--dark); }
.focus-box--light p  { color: var(--text-muted); }
.focus-box--blue  h3 { color: var(--white); }
.focus-box--blue  p  { color: rgba(255,255,255,0.75); }
.focus-box--dark  h3 { color: var(--white); }
.focus-box--dark  p  { color: rgba(255,255,255,0.55); }

.focus-box .focus-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.focus-box--light .focus-link { color: var(--blue); }
.focus-box--blue  .focus-link { color: rgba(255,255,255,0.85); }
.focus-box--dark  .focus-link { color: rgba(255,255,255,0.55); }

/* =====================================================
   MISSION SECTION
   ===================================================== */
.mission {
    background: var(--light);
    padding: 100px 0;
}

.mission-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-images {
    position: relative;
}

.mission-img-main {
    width: 70%;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.mission-img-secondary {
    width: 55%;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 4/3;
    position: absolute;
    right: 0;
    bottom: -40px;
    border: 6px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.mission-badge {
    position: absolute;
    bottom: 20px;
    left: 56%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
    /* Add the white border */
    filter: drop-shadow(0 0 0 4px white);
}

.mission-badge:hover {
    transform: translateX(-50%) scale(1.05);
}

.mission-badge-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateBadge 12s linear infinite;
    z-index: -1;
}

/* White border for the SVG path */
.mission-badge-bg path {
    stroke: var(--white);
    stroke-width: 8px;
    stroke-linejoin: round;
}

.mission-badge span {
    position: relative;
    z-index: 1;
}

@keyframes rotateBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mission-text {
    padding-bottom: 40px;
}

.section-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.mission-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 28px;
}

.mission-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.75;
}

/* =====================================================
   EVENTS / ITEMS (icon + divider + title + arrow)
   ===================================================== */
.events-section {
    background: var(--light);
    padding: 100px 0;
}

/* =====================================================
   MODAL
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center; justify-content: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    line-height: 1;
}

.section-header {
    max-width: 1280px;
    margin: 0 auto 60px;
    padding: 0 32px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
}

.events-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.event-card {
    padding: 16px 40px 40px 0;
    border-top: 1px solid rgba(0,0,0,0.12);
    margin-right: 40px;
}

.event-card:last-child {
    margin-right: 0;
    padding-right: 0;
}

.event-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 20px;
    color: var(--blue);
    font-size: 1.1rem;
}

.event-meta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.event-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.event-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.event-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    transition: translate 0.2s;
}

.event-card:hover .event-arrow {
    translate: 6px 0;
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-section {
    overflow: hidden;
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 30px;
}

.marquee-item .star {
    color: var(--red);
    font-size: 2rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =====================================================
   DARK FOCUS SECTION (what we do)
   ===================================================== */
.dark-focus {
    background: var(--dark);
    padding: 100px 0;
}

.dark-focus-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.dark-focus-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
}

.dark-focus-left p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.75;
}

.dark-focus-img {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.dark-focus-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dark-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.dark-card:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-5px);
}

.dark-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.dark-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.dark-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.dark-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* =====================================================
   TEAM
   ===================================================== */
.team-section {
    background: var(--white);
    padding: 100px 0;
}

.team-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: var(--light);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.04);
}

.team-card-info {
    padding: 16px 18px 20px;
}

.team-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-card-info span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
}

/* =====================================================
   NEWSLETTER / CTA WAVY BLUE SECTION
   ===================================================== */
.newsletter {
    background-color: #1254cd;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath fill='%230f48b5' d='M0,256L48,229.3C96,203,192,149,288,154.7C384,160,480,224,576,261.3C672,299,768,309,864,282.7C960,256,1056,192,1152,149.3C1248,107,1344,85,1392,74.7L1440,64L1440,600L1392,600C1344,600,1248,600,1152,600C1056,600,960,600,864,600C768,600,672,600,576,600C480,600,384,600,288,600C192,600,96,600,48,600L0,600Z'/%3E%3Cpath fill='%231a61e6' d='M0,480L48,469.3C96,459,192,437,288,416C384,395,480,373,576,384C672,395,768,437,864,448C960,459,1056,437,1152,389.3C1248,341,1344,267,1392,229.3L1440,192L1440,600L1392,600C1344,600,1248,600,1152,600C1056,600,960,600,864,600C768,600,672,600,576,600C480,600,384,600,288,600C192,600,96,600,48,600L0,600Z' opacity='0.7'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='3' stroke-dasharray='15,20' d='M-100 150 Q 300 0, 700 200 T 1500 150 M -100 500 Q 400 650, 900 450 T 1600 550'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    border-top: none;
    display: flex;
    justify-content: center;
}

.newsletter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.newsletter-text .section-kicker {
    margin-bottom: 12px;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 360px;
}

.newsletter-input-row {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 2px solid var(--dark);
    padding-bottom: 12px;
}

.newsletter-input-row input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    outline: none;
}

.newsletter-input-row input::placeholder {
    color: #aaa;
}

.newsletter-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--red);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    transition: translate 0.2s;
}

.newsletter-submit:hover {
    translate: 4px 0;
}

.newsletter-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.newsletter-agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--dark);
    padding: 80px 0 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
}

.footer-widget h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-widget p {
    color: rgba(255,255,255,0.45);
    font-size: 0.92rem;
    line-height: 1.75;
}

.footer-widget .contact-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-widget .contact-item:hover {
    color: var(--white);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-widget ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
    border-color: var(--white);
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
    background: var(--dark);
    padding: 180px 0 70px;
    margin-top: 0;
}

.page-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.page-header span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 16px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
}

/* =====================================================
   CONTENT PAGES
   ===================================================== */
.content-section {
    background: var(--light);
    padding: 80px 0;
}

.content-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.prose {
    background: var(--white);
    border-radius: 2px;
    padding: 60px;
    margin-bottom: 2px;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
}

.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.prose p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.prose p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   TEAM PAGE / MEMBERS
   ===================================================== */
.member-row {
    background: var(--white);
    display: flex;
    gap: 0;
    margin-bottom: 2px;
    overflow: hidden;
}

.member-row:nth-child(even) {
    flex-direction: row-reverse;
}

.member-img-wrap {
    width: 280px;
    flex-shrink: 0;
}

.member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.member-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 4rem;
}

.member-body {
    flex: 1;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}

.member-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.member-header h3 {
    margin-bottom: 0;
}


/* ── LOGO CONTAINER YAKLAŞIMI ──
   Her logo aynı boyutlu kutuya sığdırılır, object-fit ile içeride hizalanır */

.logo-wrap {
    width: 130px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-wrap .member-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border: none;
    outline: none;
    display: block;
}

/* Vega — siyah zemin, negatife çevir */
.logo-wrap .member-logo[alt="Vega"] {
    filter: invert(1);
}

/* Çoklu logo grubu */
.logo-group {
    width: 160px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.logo-group .member-logo {
    height: 100%;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    object-position: center;
    border: none;
    outline: none;
    flex-shrink: 0;
}

/* Eski .member-logo — genel fallback */
.member-logo {
    height: 44px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    border: none;
    outline: none;
}




.member-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--red);
    padding-bottom: 12px;
}

.member-body h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
}

.member-body p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 12px;
}


/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
    background: var(--blue);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 36px;
}

/* =====================================================
   NEWS / GALLERY
   ===================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.news-card {
    background: var(--white);
    overflow: hidden;
}

.news-card-body {
    padding: 32px;
}

.news-card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.news-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    transition: gap 0.2s;
}

.news-card:hover .news-arrow {
    gap: 12px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.gallery-label {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    color: #555;
    padding: 6px 4px 4px;
    background: #f5f5f5;
    line-height: 1.3;
}

.gallery-group-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #C8102E;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2px;
}

.contact-info {
    background: var(--dark);
    padding: 60px 52px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-text span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.contact-form-wrap {
    background: var(--white);
    padding: 60px 52px;
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 36px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--dark);
}

.form-submit {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =====================================================
   MOBILE / RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .focus-boxes {
        grid-template-columns: 1fr;
    }
    .mission-inner {
        grid-template-columns: 1fr;
    }
    .mission-images {
        height: 400px;
    }
    .dark-focus-inner {
        grid-template-columns: 1fr;
    }
    .dark-focus-cards {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .newsletter-inner {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        min-width: auto;
        width: 100%;
        align-items: flex-start;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--dark2);
        padding: 24px 32px;
        gap: 20px;
        z-index: 998;
    }
    .nav-links.open a {
        font-size: 1.05rem;
    }
    .nav-links.open .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 0 0 0 16px;
        margin-top: 12px;
        border: none;
        box-shadow: none;
        pointer-events: auto;
    }
    .nav-dropdown.expanded .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .nav-dropdown.expanded > a i {
        transform: rotate(180deg);
    }
    .hamburger {
        display: block;
    }

    .hero {
        background-position: right center !important;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-actions {
        flex-direction: column;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
    .event-card {
        margin-right: 0;
        padding-right: 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .marquee-item {
        font-size: 2rem;
    }

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

    .member-row,
    .member-row:nth-child(even) {
        flex-direction: column;
    }
    .member-img-wrap {
        width: 100%;
        height: 240px;
    }
    .member-body {
        padding: 32px;
    }

    .focus-box {
        padding: 48px 32px;
    }

    .prose {
        padding: 36px 24px;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 40px 28px;
    }
}
