:root {
    --primary: #1e3d2f;
    --primary-mid: #2d5a42;
    --accent: #d4b896;
    --accent-dark: #c0a07e;
    --accent-light: #e8d5be;
    --green-light: #7aad8a;
    --green-mid: #4a7c5e;
    --text-light: #f8f9fa;
    --text-dark: #1a2e22;
    --bg: #f5f2ee;
    --card-bg: #ffffff;
    --shadow: rgba(30, 61, 47, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography rebuild after reset.css */

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    line-height: 1.2;
    margin: 0;
}

p {
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* HEADER / NAVBAR */

header.navbar {
    background: linear-gradient(90deg, #1e3d2f 0%, #2d5a42 50%, #4a7c5e 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 26px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.navbar.scrolled {
    padding: 8px 24px;
    background: linear-gradient(90deg, #162d22 0%, #254d38 50%, #3d6b4f 100%) !important;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px) scale(1.02);
    opacity: 0.95;
}

.logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.1;
    color: #fdfefe;
    letter-spacing: 0.04em;
}

/* NAV hidden until hamburger click */

nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 61, 47, 0.97);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

nav.open {
    max-height: 360px;
    opacity: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 10px 16px 18px;
    align-items: center;
}

.nav-links li {
    position: relative;
    width: 100%;
    max-width: 260px;
}

.nav-links a {
    display: block;
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.2;
    padding: 10px 20px;
    border-radius: 999px;
    transition: all 0.25s ease;
    position: relative;
    text-align: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 55%;
}

.nav-links a:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.14);
}

/* Language selector */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
}

.lang-option {
    cursor: pointer;
    font-size: 0.78rem;
    line-height: 1.2;
    border-radius: 999px;
    border: 1px solid transparent;
    color: #e8f5e9;
    transition: all 0.25s ease;
    text-transform: uppercase;
    padding: 6px 12px;
    margin: 2px;
}

.lang-option.active {
    background: var(--accent);
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* Hamburger */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.menu-toggle i {
    font-size: 1.3rem;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.menu-toggle.open i {
    transform: rotate(90deg);
    color: var(--accent);
}

/* HERO */

.hero {
    background: linear-gradient(110deg, #1e3d2f 0%, #2d5a42 45%, #4a7c5e 100%);
    color: var(--text-light);
    text-align: center;
    padding: 130px 20px 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -35%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 10% 0%, rgba(212, 184, 150, 0.12) 0%, transparent 60%),
            radial-gradient(circle at 90% 100%, rgba(212, 184, 150, 0.10) 0%, transparent 60%);
    animation: floatGlow 24s linear infinite alternate;
    opacity: 0.9;
    pointer-events: none;
}

@keyframes floatGlow {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-40px, 25px, 0) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: heroFloat 7s ease-in-out infinite alternate;
}

@keyframes heroFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}

.hero h1 {
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 700 !important;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease;
    letter-spacing: 0.05em;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.96;
    animation: fadeInUp 1s ease 0.25s backwards;
    font-style: italic;
}

.hero .btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--accent);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.2;
    display: inline-block;
    transition: all 0.25s ease;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease 0.45s backwards;
}

.hero .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    background: var(--accent-dark);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* QUICK STATS */

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--card-bg);
    padding: 26px 20px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 32px var(--shadow);
    transition: all 0.28s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.10), transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-card p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

/* SECTIONS */

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    color: var(--primary);
    margin: 0 auto 15px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    left: auto;
    transform: none;
    letter-spacing: 0.03em;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section.alt {
    background: linear-gradient(135deg, #ffffff 0%, #f5f2ee 100%);
}

/* VALUES GRID */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 5px 22px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 184, 150, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    margin: 0 auto 18px;
    background: radial-gradient(circle at 30% 0%, #d4b896 0%, #7aad8a 35%, #1e3d2f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.value-card i {
    font-size: 2.4rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* ACTIVITIES GRID */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background: var(--card-bg);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    transform-origin: center;
}

.activity-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.activity-icon {
    background: linear-gradient(135deg, #1e3d2f 0%, #2d5a42 50%, #4a7c5e 100%);
    padding: 36px;
    text-align: center;
}

.activity-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.activity-content {
    padding: 28px 26px 30px;
}

.activity-content h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.98rem;
}

/* EVENTS HIGHLIGHT */

.featured-event {
    max-width: 1050px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: center;
    background: var(--card-bg);
    border-radius: 22px;
    box-shadow: 0 10px 34px var(--shadow);
    overflow: hidden;
}

.featured-event-media {
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, var(--primary), var(--green-mid));
}

.featured-event-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.featured-event-content {
    padding: 32px 30px;
}

.event-label {
    display: inline-block;
    background: #f9f3ea;
    color: var(--primary);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.featured-event-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-event-content p {
    color: #5f6c64;
    margin-bottom: 20px;
}

.featured-event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.featured-event-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(30, 61, 47, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.featured-event-actions .btn:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 10px 24px rgba(30, 61, 47, 0.22);
}

.btn-secondary {
    background: #ffffff !important;
    border: 2px solid var(--accent);
    color: var(--primary) !important;
}

.featured-event-actions .btn-secondary:hover {
    background: #f9f3ea !important;
    border-color: var(--accent-dark);
}

/* MEMBERSHIP PREVIEW */

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

.benefit-card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 6px 24px var(--shadow);
}

.benefit-card i {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--green-mid));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #666;
}

.section-action {
    text-align: center;
    margin-top: 34px;
}

.section-action .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(30, 61, 47, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.section-action .btn:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 12px 28px rgba(30, 61, 47, 0.24);
}

/* TEAM GRID */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 22px var(--shadow);
    transition: all 0.28s ease;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.team-member i {
    font-size: 2.6rem;
    color: var(--green-mid);
    margin-bottom: 12px;
}

.team-member h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA SECTION */

.cta-section {
    background: linear-gradient(135deg, #1e3d2f 0%, #2d5a42 45%, #4a7c5e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    display: inline-block;
    transition: all 0.25s ease;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.cta-section .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: var(--accent-dark);
}

/* CONTACT PAGE */

.contact-wrapper {
    max-width: 1200px;
    margin: -30px auto 70px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 30px;
}

.contact-intro {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1e3d2f 0%, #2d5a42 60%, #4a7c5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.9rem;
}

.contact-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: #555;
    margin: 2px 0;
}

.contact-text a {
    color: var(--primary-mid);
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 30px 24px 28px;
    box-shadow: 0 10px 34px var(--shadow);
}

.contact-form-card h2 {
    color: var(--primary);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.contact-form-card .subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--primary);
}

.form-label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    border: 2px solid #dcdcdc;
    font-size: 0.98rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 184, 150, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    width: 100%;
    padding: 13px 20px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #1e3d2f 0%, #2d5a42 50%);
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.submit-btn i {
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    background: linear-gradient(135deg, #162d22, #254d38);
}

/* FOOTER */

footer {
    background: var(--primary);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 0 auto 30px;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
}

.social-links a i {
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.25s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a::after {
    content: '|';
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links a:last-child::after {
    content: '';
    margin-left: 0;
}

.to-top {
    display: inline-block;
    margin-top: 15px;
    padding: 9px 20px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    line-height: 1.2;
}

.to-top i {
    margin-right: 6px;
}

.to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
    color: var(--primary);
}

/* COOKIE BANNER */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 18px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: slideUp 0.4s ease;
}

.cookie-banner.show {
    display: flex;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 9px 26px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.cookie-banner button:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* SCROLL ANIMATIONS */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* WHATSAPP LABELS */

.wa-men::after,
.wa-women::after,
.wa-Channel::after,
.linktree-icon::after {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.6rem;
    font-weight: bold;
    line-height: 1.2;
    padding: 2px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.wa-women::after {
    content: 'Zusters';
}

.wa-Channel::after {
    content: 'Channel';
}

/* SOCIAL ICON IMAGE */

.social-links a.linktree-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    transition: 0.25s ease;
}

.social-links a.linktree-icon:hover img {
    filter: brightness(1) invert(0);
}

/* LEGAL PAGES */

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.legal-page h1 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.legal-page h2 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-page p {
    margin: 12px 0;
    line-height: 1.7;
    font-size: 1rem;
}

.legal-page ul {
    padding-left: 25px;
    margin: 10px 0 20px;
}

.legal-page ul li {
    margin-bottom: 8px;
    list-style-type: disc;
    line-height: 1.7;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-page a:hover {
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .logo-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .membership-benefits,
    .featured-event {
        grid-template-columns: 1fr;
    }

    .featured-event-media,
    .featured-event-media img {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    header.navbar {
        padding: 10px 16px;
    }

    .logo-text {
        display: none;
    }

    .logo-img {
        width: 46px;
        height: 46px;
    }

    .lang-switcher {
        margin-left: 0;
    }

    .hero {
        padding: 110px 18px 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 10px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 18px 15px;
    }

    .cookie-banner button {
        width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .footer-links a::after {
        content: '';
        margin-left: 0;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .values-grid .value-card {
        width: 300px;
    }

    .activities-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .activities-grid .activity-card {
        width: 400px;
    }
}

@media (max-width: 600px) {
    .legal-page {
        padding: 0 15px;
    }

    .legal-page h1 {
        font-size: 1.6rem;
    }

    .legal-page h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .quick-stats {
        grid-template-columns: 1fr;
    }

    .lang-switcher {
        display: flex;
        justify-content: center;
    }
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: 0 6px 24px var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--primary);
    cursor: pointer;
    display: block;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 0.98rem;
}

.faq-item.active .faq-answer {
    display: block;
}
html[dir="rtl"] .faq-question,
html[dir="rtl"] .faq-answer,
html[dir="rtl"] .faq-answer p {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .section-intro {
    direction: rtl;
    text-align: center;
}

html[dir="rtl"] .faq-container {
    direction: rtl;
}
.faq-question,
.faq-answer p,
.section-intro,
.section h2 {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}
@media (max-width: 768px) {
    .faq-container {
        max-width: 100%;
        margin: 30px auto 0;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}
html[dir="rtl"] .contact-text,
html[dir="rtl"] .contact-text p,
html[dir="rtl"] .contact-text h3,
html[dir="rtl"] .contact-form-card,
html[dir="rtl"] .contact-form-card .subtitle,
html[dir="rtl"] .form-label {
    direction: rtl;
    text-align: right;
}
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group textarea,
html[dir="rtl"] .form-group select {
    direction: rtl;
    text-align: right;
}
.brand-ltr {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}
/* MEMBERSHIP REGISTRATION PAGE */

.membership-page {
    background: var(--bg);
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.membership-container {
    width: 100%;
    max-width: 560px;
    background: var(--card-bg);
    padding: 38px 34px;
    border-radius: 22px;
    box-shadow: 0 12px 32px var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.membership-container h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.membership-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 26px;
}

.membership-form label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 14px;
    margin-bottom: 6px;
}

.membership-form input,
.membership-form select,
.membership-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #dcdcdc;
    border-radius: 12px;
    font-size: 0.96rem;
    background: #ffffff;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.membership-form input:focus,
.membership-form select:focus,
.membership-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 184, 150, 0.25);
}

.membership-form textarea {
    min-height: 90px;
    resize: vertical;
}

.membership-phone-row {
    display: flex;
    gap: 10px;
}

.membership-phone-row select {
    width: 42%;
}

.membership-phone-row input {
    width: 58%;
}

.membership-checkbox-group {
    margin-top: 18px;
}

.membership-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #555;
    margin-top: 12px;
}

.membership-checkbox-group input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--primary-mid);
}

.membership-submit-btn {
    width: 100%;
    padding: 14px 22px;
    margin-top: 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, var(--green-mid) 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.membership-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    background: linear-gradient(135deg, #162d22, #254d38);
}

.membership-submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#loading {
    display: none;
    text-align: center;
    margin-top: 16px;
    color: #555;
    font-size: 0.92rem;
}

.membership-note {
    font-size: 0.86rem;
    color: #777;
    text-align: center;
    line-height: 1.5;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .membership-page {
        padding: 35px 16px;
    }

    .membership-container {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .membership-container h2 {
        font-size: 1.65rem;
    }

    .membership-phone-row {
        flex-direction: column;
    }

    .membership-phone-row select,
    .membership-phone-row input {
        width: 100%;
    }
    .activity-card {
        text-decoration: none;
        color: inherit;
        display: block;
    }

}
