/* ==========================================================================
   1. CSS Variables & Root
   ========================================================================== */
   :root {
    /* Colors */
    --marine: #1a2b45;
    --lime: #0077ff;
    --sky-blue: #e6f3ff;
    --accent-warm: #ff6b6b;
    --accent-gold: #ffd700;
    --gradient-primary: linear-gradient(135deg, #0077ff 0%, #00c6ff 100%);
    --gradient-dark: linear-gradient(135deg, #1a2b45 0%, #2a3b55 100%);
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1200px;
    
    /* Typography */
    --nav-text-size: 1rem;
    --logo-text-size: 1.5rem;
    --font-family: 'Open Sans', Arial, sans-serif;
    --footer-bg: #f8f9fa;
    --footer-text: #333;
    --mobile-nav-height: 60px;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    line-height: 1.6;
    color: #333;
    min-height: -webkit-fill-available;
    -webkit-text-size-adjust: 100%;
}

/* ==========================================================================
   3. Layout & Grid
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.section {
    margin: 4rem 0;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(14, 45, 84, 0.05);
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
header {
    background-color: var(--marine);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    justify-content: space-around;
    width: 100%;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: var(--nav-text-size);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--sky-blue);
}

.register-button a {
    background-color: var(--lime);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.register-button a:hover {
    background-color: #0052a3;
    color: white;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
   .hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    padding-top: var(--header-height);
    background: url('/static/images/AdobeStock_189043913_resized_3600x1200_converted.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 69, 0.3);
    z-index: -1;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.1);
}

.logo-container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 0.5rem;
}

.logo-container img,
.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    -webkit-transform: translateZ(0);
}

.hero-logo {
    max-width: 200px;
    margin: 0 auto;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--marine);
    text-align: center;
    color: white;
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.highlight-text {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.75rem;
    text-shadow: none;
}

.registration-deadline {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(26, 43, 69, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.2);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registration-deadline p strong {
    color: var(--accent-warm);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deadline-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-top: 0.6rem;
}

/* ==========================================================================
   6. Main Content Sections
   ========================================================================== */
.event-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0.75rem 0;
    width: 100%;
    align-items: stretch;
}

.highlight {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight::after {
    content: 'Updates Folgen';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--marine);
    text-align: center;
    z-index: 11;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Schedule Grid */
.event-schedule {
    padding: 1.25rem;
}

.event-schedule h2 {
    position: relative;
    color: var(--marine);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.75rem;
}

.event-schedule h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.4rem;
}

.schedule-table td {
    padding: 0.4rem;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.schedule-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-table .schedule-time {
    font-weight: bold;
    color: var(--lime);
    white-space: nowrap;
}

.schedule-table .schedule-detail {
    display: table-cell;
    font-size: 0.95rem;
    white-space: normal;
    color: var(--marine);
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-left: 1rem;
    line-height: 1.3;
    width: 100%;
}

.schedule-table .schedule-detail-mobile {
    display: none;
}

/* Partners Grid */
.partners-grid {
    background-color: white;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: var(--max-width);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.06);
    border: 1px solid rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.partners-grid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 51, 102, 0.12);
}

.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 2rem auto 0;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 1.5rem;
    background: var(--marine);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(14, 45, 84, 0.05);
}

.partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(14, 45, 84, 0.1);
}

.partner img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    background-color: transparent;
    loading: lazy;
}

.partners-grid h2 {
    position: relative;
    margin-bottom: 1.5rem;
}

.partners-grid h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

/* ==========================================================================
   7. Components
   ========================================================================== */
/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Remove underline */
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.5);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.cta-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



/* ==========================================================================
   8. Utility Classes
   ========================================================================== */
   .text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   9. Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Add new footer styles */
footer {
    background-color: var(--footer-bg);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--marine);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.footer-section li {
    width: 100%;
    text-align: center;
}

.footer-section p {
    margin: 0.5rem 0;
    text-align: center;
    width: 100%;
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    line-height: 2;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.footer-section a:hover {
    color: var(--lime);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    width: 100%;
}

/* Bento Box Updates */
.bento-card {
    background: white;
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 3rem);
    margin: clamp(1.5rem, 4vw, 3rem) auto;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.06);
    border: 1px solid rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.bento-content {
    max-width: 100%;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bento-card h2 {
    color: var(--marine);
    font-size: clamp(1.25rem, 4vw, 1.2rem);
    margin-bottom: clamp(1rem, 3vw, 1.2rem);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    width: 100%;
}

.bento-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.bento-content p,
.bento-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1rem;
}

.bento-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.bento-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.bento-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--lime);
    font-weight: bold;
}

.starter-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem 0.75rem;
}

.starter-package-content {
    text-align: center;
    padding-top: 0;
}

.starter-package-content h2 {
    position: relative;
    color: var(--marine);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    padding-top: 1.25rem;
}

.starter-package-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--lime);
    margin: 0.4rem 0;
}

.hoodie-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    width: 80%;
    margin: 0.4rem 0;
}

.hoodie-image,
.hoodie-image-back {
    width: 45%;
    height: auto;
    max-width: 140px;
    object-fit: contain;
}

/* Image Gallery Section - Updated */
.image-gallery {
    padding: 2rem;  /* Reduced padding */
    background-color: var(--footer-bg);  /* Match other sections */
}

.image-gallery h2 {
    color: var(--marine);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Updated Contact Section Styles */
.contact-section {
    background-color: white; /* Ensure a clean background */
    color: var(--marine); /* Use the primary text color */
    padding: 3rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.1); /* Softer shadow */
    text-align: center;
    max-width: var(--max-width); /* Match bento card width */
    margin: 3rem auto; /* Center the section */
    border: 1px solid rgba(0, 51, 102, 0.08); /* Match bento card border */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for hover effect */
}

.contact-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 51, 102, 0.12); /* Match bento card hover effect */
}

.contact-section h2 {
    color: var(--marine);
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.contact-intro p {
    color: var(--marine);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-email {
    color: var(--lime);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 6px;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-2px);
}

.contact-hotline {
    margin: 1.5rem 0;
    padding: 0.75rem;
    background-color: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
}

.contact-hotline a {
    color: var(--marine);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.contact-hotline a:hover {
    color: var(--lime);
}

.note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

.powered-by {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.powered-by-logo {
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.powered-by-logo:hover {
    opacity: 1;
}

.contact-team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

.team-member-info {
    flex: 1;
    min-width: 0;
}

.team-member-info strong {
    color: var(--marine);
    display: block;
    margin-bottom: 0.25rem;
}

.team-member-info span {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--sky-blue);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-separator {
    font-size: 1.5rem;
    color: #666;
}

/* Team Section */
.team-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.team-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img, 
.avatar svg {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure the image covers the container without stretching */
}

.team-member-info {
    display: flex;
    flex-direction: column;
}

.team-member-info strong {
    color: var(--marine);
}

.team-member-info span {
    font-size: 0.9rem;
    color: #666;
}


.organizer-section {
    background-color: white;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: var(--max-width);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.06);
    border: 1px solid rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.organizer-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 51, 102, 0.12);
}

.organizer-section h2,
.organizer-section h3 {
    color: var(--marine);
    margin-bottom: 1.5rem;
}

.skilowen-info {
    margin-bottom: 3rem;
}

.skilowen-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.skilowen-info a {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
}

.skilowen-info a:hover {
    text-decoration: underline;
}

.team-info {
    margin-bottom: 3rem;
}

.patronage {
    padding: 1.5rem; /* Reduce padding for a smaller appearance */
    background-color: var(--footer-bg); /* Ensure consistent background */
    border-radius: 8px;
    text-align: center; /* Center the content */
    margin: 0 auto; /* Center the section horizontally */
    max-width: 600px; /* Limit the width for a smaller appearance */
}

.patronage-content {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 1rem; /* Add space between items */
}

.patronage-content img {
    width: 150px; /* Smaller image size */
    height: auto;
    border-radius: 8px;
    object-fit: cover; /* Ensure the image covers the container without stretching */
}

.patronage-content p {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.patronage-content strong {
    color: var(--marine);
    font-size: 1.2rem;
    display: block;
}


.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: calc(var(--header-height) + 2rem); /* Add spacing for fixed navbar */
}

.registration-header {
    padding-top: 3rem;
}

/* Updated Impressions Section */
.impressions-section {
    background-color: var(--marine);
    color: white;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.impressions-section h2 {
    color: var(--marine);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.impressions-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.9), transparent);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ... existing code ... */

/* Legal Pages (Impressum, etc.) */
.legal-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
}

.legal-section h1 {
    color: var(--marine);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.legal-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.legal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.legal-content h2, 
.legal-content h3 {
    color: var(--marine);
    margin: 1.5rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--lime);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--marine);
}

.contact-info,
.hauptverein-info,
.legal-notice {
    margin-bottom: 2rem;
}

/* ==========================================================================
   10. Admin Styles
   ========================================================================== */

/* Admin Dashboard */
.admin-dashboard {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    color: var(--marine);
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.dashboard-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.btn-export {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--lime);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-export:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-export svg {
    width: 18px;
    height: 18px;
}

/* Table Styles */
.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    overflow-x: auto;
}

.registrations-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.registrations-table th {
    background-color: var(--marine);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.registrations-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.registrations-table tr:last-child td {
    border-bottom: none;
}

.registrations-table tr:hover {
    background-color: var(--sky-blue);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.success {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: var(--sky-blue);
}

.action-btn.edit-btn svg {
    color: var(--lime);
}

.action-btn.delete-btn svg {
    color: #dc3545;
}

.action-btn.copy-btn svg {
    color: var(--marine);
}

.action-btn.copied {
    background-color: #d4edda;
}

.mobile-title {
    display: none;
}

.mobile-menu-btn {
    display: none;
}

/* Team Details Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 10vh auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--marine);
}

/* Admin Login */
.admin-login {
    max-width: 400px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 4rem) 2rem;
}

.admin-login h1 {
    color: var(--marine);
    text-align: center;
    margin-bottom: 2rem;
}

.login-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
}

/* Edit Registration Form */
.edit-registration {
    max-width: 600px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
}

.edit-registration h1 {
    color: var(--marine);
    margin-bottom: 2rem;
    text-align: center;
}

.edit-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--marine);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 51, 102, 0.2);
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--lime);
    color: white;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e9ecef;
    color: var(--marine);
}

.btn-secondary:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



/* Team Info Cell and Details Button */
.team-info-cell {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-primary-info {
    font-weight: 600;
    color: var(--marine);
}

.team-secondary-info {
    font-size: 0.85rem;
    color: #666;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--lime);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.details-btn:hover {
    color: #0052a3;
}

.details-btn:hover svg {
    transform: translateX(3px);
}

/* Team Details Modal Content */
.team-details {
    display: grid;
    gap: 2rem;
}

.team-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-info-section h4 {
    color: var(--marine);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-info-section p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
}

.team-info-section svg {
    color: var(--lime);
}

.team-members-section {
    border-top: 1px solid rgba(0, 51, 102, 0.1);
    padding-top: 1.5rem;
}

.team-members-section h4 {
    color: var(--marine);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-member-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.member-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.member-name {
    font-weight: 600;
    color: var(--marine);
    font-size: 0.9rem;
}

.member-info {
    font-size: 0.8rem;
    color: #666;
}

.member-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.tag.regiocup {
    background-color: #d4edda;
    color: #155724;
}

.tag.skipass {
    background-color: #cce5ff;
    color: #004085;
}

.single-entry {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}





/* ==========================================================================
   11. Downloads Styles
   ========================================================================== */

   /* Downloads Section Styles */
.downloads-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.download-section {
    margin: 2rem 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.download-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.download-info h3 {
    color: var(--marine);
    margin-bottom: 0.5rem;
}

.download-info p {
    color: #666;
    font-size: 0.9rem;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--lime);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.download-button:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.download-button svg {
    width: 20px;
    height: 20px;
}

/* Add specific iPhone fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }

    .hero-content {
        padding-bottom: env(safe-area-inset-bottom);
    }
}


/* iOS specific fixes - consolidated */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: 85vh; /* Reduced to match compact design */
    }

    .hero-content {
        min-height: calc(85vh - var(--mobile-nav-height)); /* Adjusted for compact design */
        padding-bottom: env(safe-area-inset-bottom);
        padding-top: max(var(--mobile-nav-height), env(safe-area-inset-top));
    }
}

/* Tablet and Mobile Devices */
@media screen and (max-width: 768px) {
    header {
        height: var(--mobile-nav-height); /* Use the variable for consistency */
    }
    nav {
        height: var(--mobile-nav-height); /* Use the variable for consistency */
        /* ... existing code ... */
    }

    .hero {
        min-height: calc(100vh - var(--mobile-nav-height));
        padding-top: var(--mobile-nav-height); /* Ensure this matches the mobile navbar height */
    }

    .schedule-table .schedule-detail-mobile {
        display: table-cell;
        font-size: 0.9rem;
        white-space: normal;
        color: var(--marine);
    }
    .nav-logo {
        height: 30px;
    }

    .mobile-title {
    display: block;
        position: relative;
        left: 0;
        transform: none;
        max-width: 80%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-left: 1rem;
        color: white;
        font-weight: bold; /* Make font bold */
        font-size: 1rem;
        margin-left: 5px;
    }

    .nav-logo {
        height: 40px;
    }

    .nav-logo img {
        display: none;
    }

    .mobile-menu-btn {
    display: block;
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 1002;
        margin-left: auto;
        background-color: transparent; /* Ensure no background color */
        border: none; /* Remove any borders */
        outline: none;
        margin-right: 10px;
    }

    .hamburger {
        width: 100%;
        height: 2px;
        background-color: white;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger:nth-child(1) {
        top: 2px;
    }

    .hamburger:nth-child(2) {
        top: 11px;
    }

    .hamburger:nth-child(3) {
        top: 20px;
    }

    .mobile-menu-btn.active .hamburger:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .mobile-menu-btn.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .hamburger:nth-child(3) {
        transform: rotate(-45deg);
        top: 11px;
    }

    .nav-links {
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--marine);
    flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: calc(100vh - var(--mobile-nav-height));
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }


    .mobile-title {
        position: relative;
        left: 0;
        transform: none;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-left: 1rem;
        color: white;
    }

    .schedule-detail-1 {
        display: none;
    }

    .schedule-detail-mobile {
        display: inline;
    }
    .contact-team {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team-separator {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
    /* Typography */
    :root {
        --nav-text-size: 0.875rem;
        --logo-text-size: 1.25rem;
    }

    /* Hero Section */
    .hero {
        min-height: 85vh; /* Reduced for mobile to be more compact */
    }

    .hero-content {
        padding: 1.5rem 0.5rem; /* Adjusted for compact design */
        gap: 1rem; /* Reduced gap for mobile */
    }

    .logo-container {
        max-width: 80%;
        padding-top: 0.5rem; /* Reduced from 1rem */
        margin: 0 auto 0.25rem; /* Reduced margin */
    }

    .hero-logo {
        max-width: 180px; /* Slightly smaller on mobile */
    }

    .hero-description p {
        font-size: 0.9rem; /* Slightly larger than before but still compact */
        margin-bottom: 0.5rem; /* Reduced margin */
    }

    .highlight-text {
        font-size: 1.3rem; /* Reduced for mobile */
        margin-top: 0.5rem; /* Reduced margin */
    }

    /* Content Sections */
    .event-highlights {
        padding: 0.5rem; /* Reduced padding */
        gap: 0.75rem; /* Reduced gap */
        margin: 0.5rem 0; /* Reduced margin */
    }

    .highlight {
        padding: 0.75rem; /* Reduced padding */
    }

    .event-schedule {
        padding: 1rem; /* Reduced padding */
    }

    .event-schedule h2 {
        font-size: 1.2rem; /* Reduced font size */
        margin-bottom: 1rem; /* Reduced margin */
        padding-bottom: 0.5rem; /* Reduced padding */
    }

    .schedule-table td {
        padding: 0.3rem; /* Reduced padding */
    }

    .schedule-table .schedule-detail {
        font-size: 0.85rem; /* Reduced font size */
        line-height: 1.2; /* Reduced line height */
    }

    .starter-package {
        gap: 0.5rem; /* Reduced gap */
        padding: 0 0.75rem 0.5rem; /* Reduced padding */
    }

    .starter-package-content h2 {
        font-size: 1.2rem; /* Reduced font size */
        margin-bottom: 1rem; /* Reduced margin */
        padding-top: 1rem; /* Reduced padding */
    }

    .price {
        font-size: 1.3rem; /* Reduced font size */
        margin: 0.3rem 0; /* Reduced margin */
    }

    .hoodie-container {
        margin: 0.3rem 0; /* Reduced margin */
    }

    .hoodie-image,
    .hoodie-image-back {
        max-width: 110px; /* Reduced size */
    }

    /* Components */
    .bento-card {
        padding: 1.25rem; /* Reduced padding */
        margin: 1.25rem auto; /* Reduced margin */
    }

    .bento-card h2 {
        font-size: 1.1rem; /* Slightly larger than before */
    }

    .gallery-item {
        aspect-ratio: 3/2;
    }

    .gallery-item img {
        height: 180px; /* Reduced height */
    }

    /* Team Section */
    .avatar {
        width: 60px;
        height: 60px;
    }

    .team-member-info span {
        font-size: 0.8rem;
    }

    /* Images */
    .patronage-content img {
        width: 120px; /* Reduced size */
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    /* Buttons */
    .cta-button {
        padding: 0.6rem 1.25rem; /* Reduced padding */
    }
}



/* iOS specific fixes - consolidated */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }

    .hero-content {
        min-height: calc(100vh - var(--mobile-nav-height));
        padding-bottom: env(safe-area-inset-bottom);
        padding-top: max(var(--mobile-nav-height), env(safe-area-inset-top));
    }
}

/* Navigation */
.nav-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--accent-warm);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between; /* Change from center to space-between */
    align-items: center;
    height: 80px;
    padding: 0 1rem; /* Add padding for mobile */
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .nav-logo {
        display: none; /* Ensure logo is hidden on iOS */
    }
    
    .mobile-title {
        position: relative;
        left: 0;
        transform: none;
        max-width: 80%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-left: 1rem;
        color: white;
    }
    
}

/* Add blue line under title for Partners Grid */
.partners-grid h2 {
    position: relative;
    margin-bottom: 1.5rem;
}

.partners-grid h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

/* Add blue line under title for Organizer Section */
.organizer-section h2 {
    position: relative;
    margin-bottom: 1.5rem;
}

.organizer-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lime);
    border-radius: 2px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.schedule-table td {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.schedule-table .schedule-time {
    font-weight: bold;
    color: var(--lime);
    white-space: nowrap;
}

.schedule-table .schedule-detail {
    display: table-cell;
    font-size: 0.9rem;
    white-space: normal;
    color: var(--marine);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Team Member Hotline Styles */
.team-member-hotline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.team-member-hotline p {
    color: var(--marine);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.team-member-hotline .role {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.team-separator {
    color: var(--lime);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Add animations to buttons */
.cta-button {
    /* ... existing code ... */
    transition: all 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.5);
}

/* Add hover effect to gallery images */
.gallery-item img {
    /* ... existing code ... */
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Add gradient background to sections */
.section {
    background: linear-gradient(135deg, #e6f3ff, #ffffff);
    /* ... existing code ... */
}

/* Add icon styles */
h2 i {
    margin-right: 0.5rem;
    color: var(--lime);
}

/* Bento Cards Grid Layout */
.bento-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bento-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.bento-card {
    background: white;
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 3rem);
    margin: clamp(1.5rem, 4vw, 3rem) auto;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.06);
    border: 1px solid rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Mobile-specific adjustments */
@media screen and (max-width: 480px) {
    .bento-card {
        margin: 1rem auto;
        padding: 1.25rem;
    }
    
    .bento-card h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .bento-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Registration Type Selection */
.registration-type-selection {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--sky-blue);
    border-radius: 8px;
}

.registration-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.registration-type input[type="radio"] {
    accent-color: var(--lime);
}

.registration-type label {
    font-weight: 600;
    color: var(--marine);
}

/* Team Registration Styles */
.team-member {
    background: var(--sky-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.team-member h4 {
    color: var(--marine);
    margin-bottom: 1rem;
}

.remove-member {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
}

.remove-member:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

#addTeamMember {
    margin: 1rem 0 2rem;
}

.registration-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.registration-header {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: none;
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: var(--lime);
    color: white;
}

.tab-content {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-content.active {
    display: block;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--marine);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--marine);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 51, 102, 0.2);
    border-radius: 6px;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.remove-member {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
}

.price-section {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.team-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--marine);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .registration-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
    }
}



