/* General styling */
:root {
    --primary-color: #FFB600;
    --primary-color-dark: #FFB600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Hero section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

/* Intro wrapper */
.intro-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* Typography */
h1, h2, h3 {
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

h1 {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 15px;
}

h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Teaser styles */
.teaser {
    margin: 20px 0;
    text-align: center;
}

.teaser-text {
    position: relative;
    display: inline-block;
    text-align: center;
}

.teaser-text-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.teaser-text-animation.active {
    opacity: 1;
    transform: translateY(0);
}

.teaser-normal {
    font-weight: 400;
    color: #fff;
}

.teaser-highlight {
    font-weight: 700;
    color: var(--primary-color);
}

/* Border styles */
.border-1, .border-2 {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto;
    width: 100px;
}

/* Slider styles */
.slider {
    margin: 20px 0;
    text-align: center;
}

.slide h2 {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
}

/* Poll input styles */
.poll-input {
    margin: 30px 0;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2em;
}

input[type="tel"] {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s ease;
    text-align: center;
}

input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

button[type="submit"] {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button[type="submit"]:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

button[type="submit"] i {
    font-size: 1.2em;
}

/* Error message */
.error-message {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: clamp(12px, 1.8vw, 14px);
    text-align: center;
    animation: fadeIn 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.2);
    width: 100%;
    max-width: 400px;
}

/* Countdown styles */
.countdown {
    margin: 30px 0;
    text-align: center;
}

.countdown-wrapper h6 {
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.countdown ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown li {
    text-align: center;
    min-width: 60px;
}

.countdown span {
    display: block;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown p {
    font-size: clamp(10px, 1.8vw, 12px);
    text-transform: uppercase;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-1, .fade-in-2, .fade-in-3, .fade-in-4, .fade-in-5 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fade-in-1 { animation-delay: 0.2s; }
.fade-in-2 { animation-delay: 0.4s; }
.fade-in-3 { animation-delay: 0.6s; }
.fade-in-4 { animation-delay: 0.8s; }
.fade-in-5 { animation-delay: 1s; }

/* Responsive styles */
@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }

    .intro-wrapper {
        padding: 15px;
    }

    .poll-input {
        margin: 20px 0;
    }

    .countdown ul {
        gap: 10px;
    }

    .countdown li {
        min-width: 50px;
    }
}

@media (max-height: 700px) {
    .content {
        padding: 60px 15px;
    }
    
    h1 {
        font-size: clamp(28px, 6vw, 48px);
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: clamp(20px, 3vw, 28px);
        margin-bottom: 10px;
    }
    
    h3 {
        font-size: clamp(16px, 2.5vw, 20px);
    }
    
    .teaser, .slider {
        margin: 15px 0;
    }
    
    .poll-input {
        margin: 20px 0;
    }
    
    .countdown {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 10px;
    }

    .intro-wrapper {
        padding: 10px;
    }

    input[type="tel"] {
        padding: 12px 12px 12px 40px;
    }

    button[type="submit"] {
        padding: 12px 20px;
    }

    .error-message {
        padding: 10px;
    }
}

/* Success page styles */
.success-icon {
    text-align: center;
    margin: 30px 0;
}

.success-icon i {
    font-size: 80px;
    color: var(--primary-color);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-primary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}
