
/* ===========================================
   IBERIA ECLIPSE - Color Scheme
   =========================================== */

:root {
    --bg-primary: #0a1525;
    --bg-secondary: #132035;
    --text-primary: #f0ebe3;
    --text-muted: rgba(240, 235, 227, 0.7);
    --primary: #00d4c8;
    --primary-glow: rgba(0, 212, 200, 0.3);
    --secondary: #e8734a;
    --secondary-glow: rgba(232, 115, 74, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    background: url('../images/background.jpg') center top -150px / cover no-repeat;

		  /* Mask das Bild von oben (sichtbar) nach unten (transparent) */
	    -webkit-mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 80%,
        transparent 98%
    );
    mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 80%,
        transparent 98%
    );
}


.hero-header {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* Logo bleibt wie bisher */
.hero-logo {
    width: 100%;
    height: 119px;
    background: url('../images/logo.png') center center / contain no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out;
}

/* Subtitle - passt sich der Logo-Breite an */
.hero-subtitle {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-primary);
    margin-top: 5px;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

/* CTA Section */

/* Disabled CTA Button */
.cta-button.disabled {
    background: rgba(0, 212, 200, 0.3);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.cta-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(0, 212, 200, 0.3);
}



.cta-section {
    text-align: center;
    margin-top: clamp(300px, 50vw, 800px);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 56px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg-primary);
    background: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px var(--primary-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px var(--primary-glow), 0 8px 30px rgba(0, 0, 0, 0.4);
    background: #00e8db;
}

.cta-button:active {
    transform: translateY(-1px) scale(1);
}

/* Event Info Row - Date & Location */
.event-info {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 200px;
    padding: 0 10px 200px;
    animation: fadeInUp 1s ease-out 0.7s both;
	z-index: 999999;
}

.event-date,
.event-location {
	font-family: 'Montserrat', sans-serif;
    font-weight: 200;
	font-size: clamp(1.3rem, 2.2vw, 2rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
}

.event-date {
    text-align: left;
}

.event-location {
    text-align: right;
}

/* Spacer to push content down */
.hero-spacer {
    flex: 1;
}

/* Content Section */
.content-section {
    position: relative;
	margin-top: -50px;
    padding: 0 24px 100px;
    background: var(--bg-primary);
    z-index: 2;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(1.3rem, 3.6vw, 2rem);
    margin-bottom: 32px;
    color: var(--text-primary);
}

.section-title span {
    color: var(--primary);
}

.section-copy {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
}

.section-copy p {
    margin-bottom: 1.5em;
}

.section-copy strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Decorative divider */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 60px auto;
    opacity: 0.6;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.newsletter-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px var(--primary-glow);
}

.newsletter-button {
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--secondary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #f5845a;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--secondary-glow);
}

/* Success message */
.newsletter-success {
    display: none;
    padding: 16px 24px;
    background: rgba(0, 212, 200, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
}

.newsletter-success.show {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.newsletter-form.hidden {
    display: none;
}

/* Footer */
.footer {
    padding: 48px 24px;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
}

.footer-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 11px;
    color: rgba(240, 235, 227, 0.4);
    letter-spacing: 0.05em;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Form - Grav Form Plugin */
.form-wrapper {
    margin-top: 2rem;
}

.form-wrapper .form-field {
    margin-bottom: 1.5rem;
}

.form-wrapper .form-label label {
    display: block;
    color: #f0ebe3;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.form-wrapper .required {
    color: #e8734a;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper textarea {
    width: 100%;
    background-color: #0a1525;
    border: 1px solid rgba(240, 235, 227, 0.3);
    color: #f0ebe3;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
    outline: none;
    border-color: #00d4c8;
    box-shadow: 0 0 10px rgba(0, 212, 200, 0.3);
}

.form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.form-wrapper .buttons {
    margin-top: 1.5rem;
}

.form-wrapper button.button,
.form-wrapper .button {
    background-color: #00d4c8;
    color: #0a1525;
    border: none;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-wrapper button.button:hover {
    box-shadow: 0 0 20px rgba(0, 212, 200, 0.3);
}



/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 0 20px;
        background: url('../images/background.jpg') center top -100px / cover no-repeat;
    }
    
    .hero-logo {
        height: 80px;
        max-width: 90%;
        margin-top: 15px;
    }
    
    .cta-section {
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 13px;
    }
    
    .event-info {
        flex-direction: column;
        gap: 8px;
        margin: 100px 0 100px;
    }
    
    .event-date,
    .event-location {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
    
    .newsletter-button {
        padding: 16px 24px;
    }
    
    .content-section {
        padding: 60px 20px 80px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .footer-links {
        gap: 12px 24px;
    }
}

/* Listmonk Newsletter Form */
.listmonk-subscribe {
    max-width: 480px;
    margin: 0 auto;
}

.listmonk-form {
    width: 100%;
}

.listmonk-form .input-group {
    display: flex;
    gap: 12px;
}

.listmonk-form .form-control {
    flex: 1;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.listmonk-form .form-control::placeholder {
    color: var(--text-muted);
}

.listmonk-form .form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px var(--primary-glow);
}

.listmonk-form .btn {
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--secondary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.listmonk-form .btn:hover {
    background: #f5845a;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--secondary-glow);
}

.listmonk-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
}

.listmonk-message.success {
    background: rgba(0, 212, 200, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.listmonk-message.error {
    background: rgba(232, 115, 74, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

/* Responsive für Listmonk Form */
@media (max-width: 640px) {
    .listmonk-form .input-group {
        flex-direction: column;
    }
    
    .listmonk-form .form-control,
    .listmonk-form .btn {
        width: 100%;
    }
}
/* ===========================================
   Content Styling - Lists & HR
   =========================================== */

/* Horizontal Rule */
.section-copy hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 50px 0;
    opacity: 0.5;
}

/* Unordered List Styling */
.section-copy ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.section-copy ul li {
    background: var(--bg-secondary);
    padding: 18px 24px;
    margin-bottom: 8px;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
	border-right: 3px solid var(--primary);
    text-align: left;
    transition: all 0.3s ease;
}

.section-copy ul li:hover {
    background: rgba(19, 32, 53, 0.8);
    border-left-color: var(--secondary);
	border-right-color: var(--secondary);
    transform: translateX(5px);
}

.section-copy ul li strong {
    color: var(--primary);
}

/* H2 inside content */
.section-copy h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* Paragraph spacing after headings */
.section-copy h2 + p {
    margin-top: 0;
}