﻿:root {
    --primary-color: #0077b6;
    --secondary-color: #03045e;
    --accent-color: #00b4d8;
    --text-color: #333333;
    --text-light: #f8f9fa;
    --bg-light: #f4f6f9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.text-center .section-title::after,
.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-white {
    color: var(--text-light);
}

.mb-3 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* text-center utility */
.text-center { text-align: center; }
.text-center .section-title { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    background-color: #0096c7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.6);
}

.btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-outline.btn-fb-event {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-outline.btn-fb-event:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--secondary-color);
}

.navbar.scrolled .logo-text, .navbar.scrolled .logo-icon {
    color: var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid #fff;
}

.logo-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.logo-text small {
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(3,4,94,0.9), rgba(0,119,182,0.8)), url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.85) 0%, rgba(0, 119, 182, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3.8rem, 6vw, 5.8rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
    text-align: center;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: #ffffff;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.achievement {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.achievement:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,180,216,0.15);
}

.achievement i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.achievement h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.achievement p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #777;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-color);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 5px solid #fff;
    animation: float 4s ease-in-out infinite;
}

/* Join Section */
.join-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px auto 0;
    max-width: 750px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,180,216,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}

.step-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}


/* Gallery Section – Mosaic 5 photos */
.gallery-shell {
    position: relative;
    margin-top: 40px;
}

.gallery-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 0 18px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 min(78vw, 760px);
    height: clamp(320px, 52vw, 560px);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    position: relative;
    cursor: pointer;
    scroll-snap-align: center;
    background: #dceff7;
    transform: translateZ(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(0,119,182,0.55);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: var(--transition);
}

.gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.gallery-nav--prev {
    left: -12px;
}

.gallery-nav--next {
    right: -12px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #b7c8d6;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    width: 28px;
    background: var(--primary-color);
}

/* Weather Card */
.weather-card {
    background: linear-gradient(135deg, #f2fbff 0%, #d7f3ff 100%);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(0,119,182,0.12);
    border: 1px solid rgba(0,180,216,0.2);
}

.weather-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.weather-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.weather-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.weather-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 8px 20px rgba(0, 119, 182, 0.18);
}

.weather-temp {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.weather-desc {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

.weather-details {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
}

.weather-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.weather-details i {
    color: var(--primary-color);
}

.weather-source {
    font-size: 0.75rem;
    color: #888;
    margin-top: 10px;
}

.weather-source a {
    color: var(--primary-color);
    text-decoration: underline;
}

.weather-loading {
    color: #888;
    font-size: 0.9rem;
    padding: 10px 0;
}


/* Documents Section */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.doc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid transparent;
}

.doc-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,180,216,0.15);
}

.doc-icon--join {
    background: linear-gradient(135deg, #06d6a0, #1b9aaa);
}

.doc-icon--rules {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.doc-icon--child {
    background: linear-gradient(135deg, #f77f00, #fcbf49);
}

.doc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.doc-icon i {
    font-size: 1.8rem;
    color: #fff;
}

/* FB Disclaimer */
.fb-disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    padding: 10px 25px 5px;
    text-align: left;
}

.fb-disclaimer i {
    color: #1877F2;
    margin-right: 5px;
}

.doc-card h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-align: center;
}

.doc-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 18px;
    text-align: center;
}

.doc-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.doc-card:hover .doc-btn {
    background: var(--primary-color);
}


/* Fundraising */
.fundraising {
    background: url('https://images.unsplash.com/photo-1548345680-f5475ea90f14?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    color: #fff;
    background-attachment: fixed;
}

.fundraising::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 94, 0.85);
}

.fundraising .container {
    position: relative;
    z-index: 10;
}

.fundraising-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.fundraising-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.fund-card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.fund-card.glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

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

.bank-account {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.contact-info {
    padding: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.map-right-col {
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.map-container {
    flex: 1;
    min-height: 300px;
}

.map-right-col .weather-card {
    border-radius: 0 0 15px 15px;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #03045e 0%, #023e8a 100%);
    color: rgba(255,255,255,0.7);
    padding: 50px 0 25px;
}

.footer-company-info {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-company-info strong {
    color: #fff;
    font-size: 1rem;
}

.footer-company-info a {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 10px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
    image-rendering: auto;
    cursor: default;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 3rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }

/* Facebook Plugin */
.fb-modern-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.fb-plugin-container {
    max-width: 500px;
    width: 100%;
}

/* Weather Forecast Grid */
.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wf-card {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    padding: 12px;
}

.wf-label {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.88rem;
    margin-bottom: 3px;
}

.wf-date {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 8px;
    text-transform: capitalize;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Contact Form */
.contact-form-wrap {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.contact-form-wrap h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
    background: #fafafa;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .join-steps {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }

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

    .gallery-item {
        flex-basis: min(82vw, 680px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .hero-title {
        font-size: 2.8rem;
        white-space: normal;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 30px;
    }

    .gallery-item {
        flex-basis: 86vw;
        height: 420px;
    }

    .gallery-nav {
        display: none;
    }
}

/* Accessibility - ukryte etykiety dla screen readerów */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
