:root {
    --primary-color: #0d47a1;
    /* Deep Ocean Blue */
    --secondary-color: #00897b;
    /* Emerald Green */
    --accent-color: #ffd54f;
    /* Gold */
    --text-light: #f8f9fa;
    --text-muted: #b0bec5;
    --bg-dark: #0a0e17;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, rgba(13, 71, 161, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 137, 123, 0.4) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(10, 14, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 40px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.text-center.section-title::after {
    left: 25%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.6);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.logo span {
    color: var(--accent-color);
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections Base */
section {
    padding: 100px 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeIn 1s ease-out forwards;
}

.hero-badge {
    background: rgba(0, 137, 123, 0.2);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-logo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: contain;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 213, 79, 0.3);
    background: white;
    margin: 20px 0;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 400;
}

.dates {
    font-size: 1.2rem;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 25px;
    border-radius: 10px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* timeline/about */
.about-section {
    position: relative;
    z-index: 10;
}

.highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.timeline-event {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.timeline-event:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.timeline-event.delayed {
    border-left-color: #ef5350;
    /* Red */
}

.timeline-event.confirmed {
    border-left-color: var(--secondary-color);
    /* Green */
}

.event-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-event.delayed .event-icon {
    color: #ef5350;
}

.timeline-event.confirmed .event-icon {
    color: var(--secondary-color);
}

.event-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.team-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.callsign {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: bold;
    background: rgba(255, 213, 79, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.leader-card {
    border-color: var(--accent-color);
}

.leader-card::before {
    background: var(--accent-color);
}

.role {
    margin-top: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Equipment Section */
.equipment-section {
    position: relative;
    z-index: 10;
}

.equipment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.station-card {
    transition: var(--transition);
}

.station-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.station-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--accent-color);
    border-bottom: 2px solid rgba(255, 213, 79, 0.2);
    padding-bottom: 15px;
}

.station-header i {
    font-size: 2rem;
}

.station-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.station-list {
    list-style: none;
}

.station-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.station-list i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.station-list .highlight-icon {
    color: var(--accent-color);
}

.equipment-footer {
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Frequency Section */
.frequency-section {
    position: relative;
    z-index: 10;
}

.freq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.freq-card {
    transition: var(--transition);
}

.freq-card:hover {
    border-color: var(--secondary-color);
}

.freq-header {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.freq-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.freq-table th,
.freq-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.freq-table th {
    color: var(--accent-color);
    font-weight: 600;
}

.freq-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.freq-notes {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.freq-notes p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.freq-notes p:last-child {
    margin-bottom: 0;
}

.freq-notes strong {
    color: var(--accent-color);
}

/* QSL Section */
.qsl-section {
    position: relative;
    z-index: 10;
}

.qsl-manager-info {
    text-align: center;
    margin-bottom: 50px;
}

.qsl-manager-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(13, 71, 161, 0.4);
}

.manager-intro {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.supporter-note {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.oqrs-warning {
    background: rgba(239, 83, 80, 0.1);
    border: 1px solid #ef5350;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.oqrs-warning i {
    color: #ef5350;
    font-size: 2rem;
}

.qsl-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.qsl-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-list {
    list-style: none;
    margin-bottom: 30px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list span {
    font-weight: 500;
}

.price-list em {
    font-size: 0.8em;
    color: var(--text-muted);
}

.qsl-action {
    text-align: center;
}

.address-details p {
    margin-bottom: 5px;
}

.address-details hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.address-details .contact {
    margin-top: 15px;
    color: var(--accent-color);
}

.website-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.website-link:hover {
    text-decoration: underline;
}

/* Donors and Sponsors Section */
.donors-section {
    position: relative;
    z-index: 10;
    text-align: center;
}

.donors-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sponsor-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.donors-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(255, 213, 79, 0.4);
    margin-bottom: 15px;
}

.sponsor-badge {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.sponsor-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.donors-message {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.donor-card {
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.donor-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.donor-card h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Support Section */
.support-section {
    text-align: center;
}

.support-container {
    max-width: 800px;
}

.support-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.support-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    /* Necessary so multiply works over dark backgrounds */
    border-radius: 20px;
    padding: 20px;
    width: fit-content;
    margin: 0 auto 30px auto;
}

.dx-logo-transparent {
    max-width: 250px;
    mix-blend-mode: multiply;
    /* Works perfectly over the white background container */
    filter: contrast(1.2);
    display: block;
}

.paypal-info {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.paypal-info i {
    color: #003087;
    /* PayPal Blue */
    font-size: 2rem;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.donate-btn {
    background: #0070ba;
    font-size: 1.2rem;
    padding: 15px 40px;
    margin: 0 auto;
}

.donate-btn:hover {
    background: #005ea6;
}

.contact-direct {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.contact-direct h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.direct-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 213, 79, 0.2);
}

.direct-link:hover {
    background: rgba(255, 213, 79, 0.1);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-bottom: 15px;
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: blur(16px);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .main-logo {
        width: 180px;
        height: 180px;
    }
}