/* Local Montserrat Google Fonts (Variable Font Files) */
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* CSS Reset & Variables */
:root {
    --uk-blue: #005BBB;
    /* Official Ukraine Blue */
    --uk-blue-dark: #004590;
    --uk-yellow: #FFD500;
    /* Official Ukraine Yellow */
    --uk-yellow-dark: #ccaa00;

    --text-primary: #2C3E50;
    --text-secondary: #5a6c7d;
    --text-light: #F8F9FA;

    --bg-light: #FFFFFF;
    --bg-gray: #F4F7F6;
    --bg-dark: #121826;
    /* Deep premium dark */

    --font-primary: 'Montserrat', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

strong,
b {
    font-weight: 600;
}

em,
i {
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.inline-link {
    color: var(--uk-blue);
    font-weight: 500;
    text-decoration: underline;
    transition: var(--transition);
}

.inline-link:hover {
    color: var(--uk-blue-dark);
    text-shadow: 0 0 1px rgba(0, 91, 187, 0.2);
}

ul {
    list-style: none;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Colors */
.text-blue {
    color: var(--uk-blue);
}

.text-yellow {
    color: var(--uk-yellow);
}

.text-white {
    color: var(--text-light);
}

.bg-blue {
    background-color: var(--uk-blue);
    color: white;
}

.bg-yellow {
    background-color: var(--uk-yellow);
    color: var(--bg-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--uk-blue);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 91, 187, 0.3);
}

.btn-primary:hover {
    background-color: var(--uk-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 91, 187, 0.4);
}

.btn-primary-yellow {
    background-color: var(--uk-yellow);
    color: var(--bg-dark);
    box-shadow: 0 6px 20px rgba(255, 213, 0, 0.3);
    font-weight: 600;
}

.btn-primary-yellow:hover {
    background-color: var(--uk-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 213, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--text-primary);
    transform: translateY(-3px);
}

.btn-outline-dark {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline-dark:hover {
    background-color: var(--text-primary);
    color: white;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--bg-dark);
}

/* Navigation - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(18, 24, 38, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--uk-yellow) !important;
    transition: var(--transition);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.logo .domain {
    font-size: 0.95rem;
    color: #a0aec0;
    font-weight: 300;
    transition: var(--transition);
}

.navbar.scrolled .logo .domain {
    color: #718096;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--uk-yellow);
    transition: var(--transition);
}

.navbar.scrolled .nav-link::after {
    background-color: var(--uk-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown styles for navbar */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 260px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.navbar.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar.scrolled .dropdown-menu a {
    color: var(--text-primary);
}

.dropdown-menu a:hover {
    background: rgba(0, 91, 187, 0.1);
    color: var(--uk-yellow) !important;
}

.navbar.scrolled .dropdown-menu a:hover {
    color: var(--uk-blue) !important;
    background: rgba(0, 91, 187, 0.05);
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    transition: var(--transition);
    background-color: white;
}

.navbar.scrolled .bar {
    background-color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-irpin.png') center 30% / cover no-repeat;
    z-index: 1;
    transition: transform 10s ease-out;
    transform: scale(1.05);
}

/* Subtle zooming on load */
body:not(.loading) .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Blue overlay to Dark overlay */
    background: linear-gradient(135deg, rgba(0, 91, 187, 0.85) 0%, rgba(18, 24, 38, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding-top: 80px;
    /* Offset navbar */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections Base */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.section-light {
    background-color: var(--bg-light);
}

.section-gray {
    background-color: var(--bg-gray);
}

.section-dark {
    background-color: var(--bg-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--uk-yellow);
    margin: 20px auto 40px;
    border-radius: 3px;
}

.section-dark .section-title::after {
    background: var(--uk-blue);
}

/* Zielsetzung Section */
.ziele-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.ziele-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--uk-blue);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ziele-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.ziele-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 91, 187, 0.1);
    background: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.statement-banner {
    background: linear-gradient(135deg, rgba(0, 91, 187, 0.05) 0%, rgba(255, 213, 0, 0.05) 100%);
    border-left: 4px solid var(--uk-blue);
    padding: 40px;
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
}

/* Unterstützung Section */
#unterstuetzung {
    background-color: var(--uk-blue-dark);
}

#unterstuetzung .section-subtitle {
    color: #ffffff !important;
}

#unterstuetzung .section-title::after {
    background: var(--uk-yellow);
}

#unterstuetzung .pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

#unterstuetzung .pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

#unterstuetzung .card-desc {
    color: #ffffff !important;
}

#unterstuetzung .bank-details {
    color: #ffffff !important;
}

#unterstuetzung .pricing-card span {
    color: rgba(255, 255, 255, 0.8) !important;
}

#unterstuetzung .contact-hint p {
    color: #ffffff !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium {
    background: rgba(0, 91, 187, 0.8);
    border-color: var(--uk-blue);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--uk-yellow);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card h3 {
    color: white;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price .currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 15px;
    margin-left: 5px;
    opacity: 0.7;
}

.card-desc {
    color: #a0aec0;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list {
    margin-bottom: 30px;
    color: #cbd5e0;
    font-size: 0.95rem;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.features-list i {
    color: var(--uk-yellow);
    margin-right: 15px;
    margin-top: 4px;
}

.bank-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.bank-details h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1rem;
}

.bank-reference {
    margin-top: 15px;
    color: var(--uk-yellow);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    margin-top: auto;
}

.contact-hint {
    text-align: center;
    color: #a0aec0;
    margin-top: 50px;
    font-size: 1.1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.team-member:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-content {
    padding: 40px;
}

.team-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bg-gray);
    padding-bottom: 20px;
}

.team-header h3 {
    font-size: 1.5rem;
    color: var(--uk-blue);
    margin-bottom: 5px;
}

.team-header .role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--uk-yellow-dark);
    font-weight: 500;
}

.team-content .subtitle {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.team-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 20px;
    overflow: hidden; /* Prevents scroll reveal transitions from creating a bottom white bar */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: var(--uk-yellow);
    margin-bottom: 25px;
    font-weight: 400;
}

.contact-info {
    margin: 20px 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-link i {
    margin-right: 15px;
    color: var(--uk-yellow);
}

.contact-link:hover {
    color: var(--uk-yellow);
}

.legal-list {
    margin-top: 15px;
}

.legal-list li {
    margin-bottom: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-col address,
.footer-col p {
    color: #a0aec0;
    font-weight: 300;
    font-style: normal;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--uk-blue);
    border-color: var(--uk-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #718096;
    font-size: 0.85rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--bg-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--uk-blue);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.news-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--uk-yellow-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.news-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Support Split Layout */
.support-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin: 45px auto 0;
    max-width: 1050px;
}
@media screen and (max-width: 992px) {
    .support-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
}

/* Project Details Section */
.project-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 40px 30px;
    transition: var(--transition);
    border-left: 4px solid var(--uk-yellow);
    display: flex;
    flex-direction: column;
}

.project-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-detail-icon {
    font-size: 2.2rem;
    color: var(--uk-blue);
    margin-bottom: 20px;
}

.project-detail-content h3 {
    font-size: 1.3rem;
    color: var(--uk-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.project-detail-content .lead-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--uk-blue);
    margin-bottom: 15px;
}

.project-detail-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ehrentafel Section */
.ehrentafel-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 187, 0.08);
}

.ehrentafel-decor-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--uk-blue) 0%, var(--uk-yellow) 100%);
}

.ehrentafel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ehrentafel-category h3 {
    font-size: 1.25rem;
    color: var(--uk-blue);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 213, 0, 0.3);
}

.ehrentafel-category ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.ehrentafel-category ul li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .ziele-grid {
        gap: 40px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .focus-card {
        grid-column: span 2;
    }

    .support-split-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .support-split-container .pricing-card {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--bg-dark);
        width: 100%;
        height: 100vh;
        transition: 0.4s;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle.active {
        position: fixed;
        right: 5%;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ziele-grid,
    .team-grid,
    .news-grid,
    .project-details-grid,
    .ehrentafel-grid {
        grid-template-columns: 1fr;
    }

    .ehrentafel-container {
        padding: 30px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .focus-card {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 70px 0;
    }

    /* Mobile responsive for dropdowns */
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 5px 0 15px 0;
        display: block;
        min-width: auto;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        color: var(--uk-yellow) !important;
    }
    
    .dropdown-toggle i {
        display: none;
    }

    /* Mobile Menu Readability Enforcements */
    .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link {
        color: white !important;
    }

    .dropdown-menu,
    .navbar.scrolled .dropdown-menu {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .dropdown-menu a,
    .navbar.scrolled .dropdown-menu a,
    .navbar.scrolled .dropdown-menu .nav-link {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .dropdown-menu a:hover,
    .navbar.scrolled .dropdown-menu a:hover,
    .navbar.scrolled .dropdown-menu .nav-link:hover {
        color: var(--uk-yellow) !important;
    }
}

/* CMS Admin elements visibility control */
.admin-donor-drag-handle,
.admin-delete-donor-btn,
.admin-delete-news-btn,
.admin-toggle-news-draft-btn,
.admin-toggle-project-draft-btn,
.admin-add-donor-form {
    display: none !important;
}

body.admin-mode .admin-donor-drag-handle {
    display: inline-block !important;
}

body.admin-mode .admin-delete-donor-btn {
    display: inline-block !important;
}

body.admin-mode .admin-delete-news-btn {
    display: flex !important;
}

body.admin-mode .admin-toggle-news-draft-btn {
    display: flex !important;
}

body.admin-mode .admin-toggle-project-draft-btn {
    display: flex !important;
}

body.admin-mode .admin-add-donor-form {
    display: flex !important;
}

/* Page Section draft state visual outline in admin mode */
body.admin-mode section[data-draft="true"] {
    display: block !important;
    opacity: 0.5;
    filter: grayscale(50%);
}

/* Visibility Draft Mode CSS */
[data-draft="true"] {
    display: none !important;
}

body.admin-mode [data-draft="true"] {
    display: block !important;
}

body.admin-mode h3[data-draft="true"] {
    display: block !important;
}

body.admin-mode .project-detail-card[data-draft="true"] {
    display: flex !important;
    opacity: 0.65;
    outline: 2px dashed #e53e3e !important;
    outline-offset: -2px;
}

body.admin-mode .news-card[data-draft="true"] {
    display: flex !important;
    opacity: 0.65;
    outline: 2px dashed #e53e3e !important;
    outline-offset: -2px;
}

body.admin-mode .admin-text-block[data-draft="true"] {
    opacity: 0.65;
    outline: 1px dashed #e53e3e !important;
    outline-offset: -1px;
}

.admin-block-toggle-btn {
    background: transparent;
    border: none;
    color: #4a5568;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    opacity: 0;
    transition: all 0.2s ease;
    line-height: 1;
    margin-top: 2px;
}

.admin-text-block:hover .admin-block-toggle-btn {
    opacity: 1;
}

.admin-block-toggle-btn:hover {
    color: #005BBB;
    transform: scale(1.1);
}

.admin-text-block[data-draft="true"] .admin-block-toggle-btn {
    color: #e53e3e;
    opacity: 1;
}

.admin-toggle-project-draft-btn {
    position: absolute;
    top: 15px;
    right: 55px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 91, 187, 0.1);
    color: #005BBB;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 91, 187, 0.2);
}

.admin-toggle-project-draft-btn:hover {
    background: #005BBB;
    color: white;
    transform: scale(1.1);
}


/* Admin Block-Based Text Editor Styles */
.admin-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.admin-text-block {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 12px;
    border: 1px dashed transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.admin-text-block:hover {
    border-color: rgba(0, 91, 187, 0.3);
    background: rgba(0, 91, 187, 0.02);
}

.admin-block-handle {
    color: #cbd5e0;
    cursor: grab;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
    user-select: none;
}

.admin-text-block:hover .admin-block-handle {
    opacity: 1;
}

.admin-block-handle:active {
    cursor: grabbing;
}

.admin-block-content {
    flex-grow: 1;
    outline: none;
    border: none;
    background: transparent;
    padding: 2px 0;
    min-height: 1.5em;
}

/* Specific styling for paragraph and headings in block editor */
.admin-text-block[data-tag="p"] .admin-block-content {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.admin-text-block[data-tag="h3"] .admin-block-content {
    font-size: 1.5rem;
    color: var(--uk-blue);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
}

.admin-block-delete-btn {
    background: transparent;
    border: none;
    color: #e53e3e;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
    line-height: 1;
    margin-top: 2px;
}

.admin-text-block:hover .admin-block-delete-btn {
    opacity: 1;
}

.admin-block-delete-btn:hover {
    color: #c53030;
    transform: scale(1.1);
}

.admin-block-content[placeholder]:empty::before {
    content: attr(placeholder);
    color: #a0aec0;
    font-style: italic;
    cursor: text;
}

.admin-text-block.dragging-block {
    opacity: 0.4;
    border: 1px dashed var(--uk-blue);
    background: rgba(0, 91, 187, 0.05);
}

/* Project card image and overlay styling */
.project-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.project-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 91, 187, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
    cursor: default;
}

body.admin-mode .project-icon-overlay {
    cursor: pointer;
}

.project-icon-overlay i {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

/* Card Hover micro-interactions */
.project-detail-card:hover .admin-project-card-img {
    transform: scale(1.05);
}

.project-detail-card:hover .project-icon-overlay {
    background: rgba(0, 91, 187, 0.25) !important;
}

.project-detail-card:hover .project-icon-overlay i {
    transform: scale(1.1);
}

/* Ensure proper paragraph spacing and alignment throughout editable text areas */
.ziele-text p,
.team-desc p,
.project-body p {
    margin-bottom: 1.5rem !important;
    text-align: left !important;
}

body.admin-mode .admin-text-block[data-tag="p"] .admin-block-content {
    margin-bottom: 0 !important;
    text-align: left !important;
}
body.admin-mode .admin-text-block[data-tag="h3"] .admin-block-content {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    text-align: left !important;
}

/* Privacy Banner Styles */
.privacy-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 90%;
    max-width: 800px;
    background: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 99999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    color: white;
}

.privacy-banner.show {
    transform: translateX(-50%) translateY(0);
}

.privacy-banner-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e0;
}

.privacy-banner-text a {
    color: var(--uk-yellow);
    text-decoration: underline;
}

.privacy-banner-text a:hover {
    color: white;
}

.privacy-banner-btn {
    background: var(--uk-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}

.privacy-banner-btn:hover {
    background: var(--uk-blue-dark);
    transform: scale(1.03);
}

@media screen and (max-width: 600px) {
    .privacy-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
        bottom: 10px;
    }
    .privacy-banner-btn {
        text-align: center;
    }
}