/* ============================================================
   KIBTAŞ.DER - Kıbrıs Türk Aşçılar ve Şefler Derneği
   Modern & Responsive Web Sitesi Stil Dosyası
   ============================================================ */

/* ======================== CSS VARIABLES ======================== */
:root {
    /* Primary Colors */
    --primary: #c8102e;
    --primary-dark: #a00d24;
    --primary-light: #e8344f;
    --primary-rgb: 200, 16, 46;

    /* Secondary / Accent */
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #d4a843;
    --accent-light: #e6c76a;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f1f3;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --dark: #1a1a1a;
    --black: #0d0d0d;

    /* Functional */
    --success: #28a745;
    --whatsapp: #25d366;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================== RESET & BASE ======================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    z-index: 1001;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.brand-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.navbar-brand:hover .brand-logo-img {
    border-color: var(--gold);
    transform: scale(1.05);
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.65rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.navbar-menu {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(200, 16, 46, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 11px;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 44px;
    min-height: 44px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(200, 16, 46, 1);
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
}

.navbar-toggler:active {
    transform: scale(0.95);
}

.toggler-line {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.navbar-toggler.active {
    background: rgba(26, 26, 46, 0.95);
}

.navbar-toggler.active .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ======================== HERO SECTION ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.92), rgba(200, 16, 46, 0.7)),
        url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 16, 46, 0.2), transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: var(--accent-light);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    max-width: 650px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.hero-scroll a:hover {
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Kariyer Merkezi - Navbar butonu */
.nav-career {
    margin-left: 8px;
}

.nav-link-career {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
    animation: careerGlow 2.5s ease-in-out infinite;
}

.nav-link-career i {
    margin-right: 5px;
}

.nav-link-career:hover {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5) !important;
}

@keyframes careerGlow {
    0%, 100% { box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35); }
    50% { box-shadow: 0 4px 22px rgba(245, 158, 11, 0.6); }
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ======================== SECTION STYLES ======================== */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.section-divider span {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.section-divider span:last-child {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.section-divider i {
    color: var(--primary);
    font-size: 1rem;
}

/* ======================== ABOUT SECTION ======================== */
.section-about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.8;
}

.about-card .text-muted {
    color: #999;
    font-size: 0.9rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ======================== PRESS / BASIN ======================== */
.section-press {
    background: var(--secondary);
    padding: 80px 0;
}

.press-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.press-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
}

.press-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 25px;
}

.press-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.press-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent-light) !important;
    text-align: right;
}

/* ======================== BOARD / YÖNETİM ======================== */
.section-board {
    background: var(--white);
}

.board-president {
    margin-bottom: 50px;
}

.president-card {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.president-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(var(--primary-rgb), 0.15));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.president-avatar {
    position: relative;
    z-index: 1;
}

.president-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.member-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(var(--primary-rgb), 0.15);
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.avatar-placeholder.small {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    border-width: 3px;
}

.president-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    border: 3px solid var(--secondary);
}

.president-info {
    position: relative;
    z-index: 1;
}

.role-tag {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.3);
    color: var(--accent-light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.president-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.president-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.board-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.card-avatar {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.card-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
}

.board-empty {
    text-align: center;
    padding: 40px;
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

/* ======================== MEMBERSHIP / ÜYELİK ======================== */
.section-membership {
    background: var(--off-white);
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--primary);
}

.info-card p {
    color: var(--gray);
    line-height: 1.8;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.advantage-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.advantage-icon {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantage-list li strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.advantage-list li p {
    font-size: 0.88rem;
    color: var(--gray);
    margin: 0;
}

/* Bank Info Card - İletişim bölümü altında */
.bank-info {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-top: 40px;
    box-shadow: var(--shadow-md);
}

.bank-info h3 {
    text-align: center;
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.bank-info h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bank-account {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.bank-account:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(var(--primary-rgb), 0.15);
    transform: translateY(-2px);
}

.bank-account-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.12);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--secondary);
}

.bank-account-header i {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6px 0;
    gap: 10px;
}

.bank-detail:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.bank-label {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.bank-value {
    font-size: 0.88rem;
    color: var(--secondary);
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

.iban-number {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    font-size: 0.84rem;
    color: var(--primary-dark);
}

/* Bank info responsive */
@media (max-width: 768px) {
    .bank-accounts-grid {
        grid-template-columns: 1fr;
    }
    .bank-info {
        padding: 25px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .bank-detail {
        flex-direction: column;
        gap: 2px;
    }
    .bank-value {
        text-align: left;
    }
    .bank-account {
        padding: 14px 15px;
    }
    .bank-account-header {
        font-size: 0.84rem;
    }
    .iban-number {
        font-size: 0.78rem;
    }
    .bank-info h3 {
        font-size: 1.1rem;
    }
}

/* Form Styles */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--off-white);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--primary);
}

.error-message {
    display: none;
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-group.error .error-message {
    display: block;
}

.char-counter {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

.form-success {
    text-align: center;
    padding: 30px;
}

.success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray);
}

/* ======================== SPONSORS ======================== */
.section-sponsors {
    background: var(--white);
}

.sponsor-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 25px;
}

.sponsor-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.sponsor-cta p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.cta-highlight {
    color: var(--primary) !important;
    font-weight: 600;
}

.sponsor-cta .btn {
    margin-top: 20px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.sponsor-slot {
    min-height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sponsor-placeholder {
    width: 100%;
    height: 100%;
    min-height: 130px;
    background: var(--off-white);
    border: 2px dashed var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    transition: var(--transition);
}

.sponsor-placeholder:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sponsor-placeholder i {
    font-size: 2rem;
}

.sponsor-placeholder span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Gerçek sponsor kartları */
.sponsor-filled {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    min-height: 130px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sponsor-filled:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.sponsor-filled a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.sponsor-logo-img {
    max-width: 160px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-filled:hover .sponsor-logo-img {
    transform: scale(1.05);
}

.sponsor-name {
    font-size: 0.75rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

/* ======================== GALLERY / GALERİ ======================== */
.section-gallery {
    background: var(--secondary);
    color: var(--white);
}

.section-gallery .section-tag {
    color: var(--accent);
}

.section-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 10px;
}

/* Kategori filtreleme */
.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-cat-btn {
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-cat-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 168, 67, 0.08);
}

.gallery-cat-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
    font-weight: 600;
}

/* Gallery Grid — Masonry-style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    min-height: 200px;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.gallery-loading i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.35);
}

.gallery-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: var(--accent);
    opacity: 0.4;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:nth-child(5n+1) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    min-height: 200px;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.gallery-item-info span {
    font-size: 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Zoom icon */
.gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 67, 0.9);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ======================== LIGHTBOX ======================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-info {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.lightbox-info span {
    font-size: 0.8rem;
    color: var(--accent);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(231, 76, 60, 0.8);
    border-color: transparent;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    left: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10001;
}

/* ======================== CONTACT / İLETİŞİM ======================== */
.section-contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.phone-icon { background: linear-gradient(135deg, #4a90d9, #357abd); }
.email-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.whatsapp-icon { background: linear-gradient(135deg, var(--whatsapp), #20b858); }
.social-icon { background: linear-gradient(135deg, #1877f2, #145dbf); }

.contact-detail h4 {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-detail a {
    display: block;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary);
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.footer-logo .brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 0.85rem !important;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-legal h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--primary);
    width: 16px;
}

.footer-contact ul li a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-sicil {
    font-size: 0.8rem !important;
    opacity: 0.5;
    margin-top: 5px;
}

.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-legal ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-legal ul li a i {
    color: var(--primary);
    width: 16px;
    font-size: 0.85rem;
}

.footer-legal-links {
    font-size: 0.8rem !important;
    opacity: 0.6;
    margin-top: 8px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ======================== RESPONSIVE ======================== */

/* Tablet */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-toggler {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 5px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-menu.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero-content {
        padding: 100px 15px 50px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .president-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .president-avatar {
        display: flex;
        justify-content: center;
    }

    .president-photo {
        width: 90px;
        height: 90px;
    }

    .avatar-placeholder {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .president-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .president-info h3 {
        font-size: 1.3rem;
    }

    .president-info p {
        font-size: 0.85rem;
    }

    .president-badge {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .board-president {
        margin-bottom: 30px;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .board-card {
        padding: 18px 12px;
    }

    .member-photo {
        width: 60px;
        height: 60px;
    }

    .avatar-placeholder.small {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .card-role {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
        margin-bottom: 5px;
    }

    .card-name {
        font-size: 0.95rem;
    }

    .card-avatar {
        margin-bottom: 10px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item:nth-child(5n+1) {
        grid-row: span 1;
    }

    .gallery-categories {
        gap: 6px;
    }

    .gallery-cat-btn {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .press-card {
        padding: 30px;
    }

    .form-card {
        padding: 25px;
    }

    .about-card {
        padding: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .brand-sub {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .president-card {
        padding: 20px 15px;
    }

    .president-photo {
        width: 80px;
        height: 80px;
    }

    .avatar-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .president-info h3 {
        font-size: 1.15rem;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .board-card {
        padding: 15px 10px;
    }

    .member-photo {
        width: 50px;
        height: 50px;
    }

    .avatar-placeholder.small {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .card-role {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .card-name {
        font-size: 0.85rem;
    }

    .card-avatar {
        margin-bottom: 8px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ======================== ANIMATIONS ======================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Particle animation for hero */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* Smooth transitions for scroll sections */
.section {
    opacity: 1;
}

/* Selection styling */
::selection {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
