/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    position: relative;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.highlight {
    color: #ffd700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Email Signup */
.email-signup {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-signup h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
}

.signup-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    outline: none;
}

.signup-form button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #333;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.signup-form button:hover {
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Airplane Animations */
.airplane {
    position: absolute;
    font-size: 2rem;
    color: #ffd700;
    opacity: 0;
    z-index: 10;
}

.airplane i {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    animation: plane-glow 1s ease-in-out infinite alternate;
}

@keyframes plane-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
}

.airplane-1 {
    animation: fly-across-1 8s linear infinite;
}

.airplane-2 {
    animation: fly-across-2 10s linear infinite;
    animation-delay: 3s;
}

.airplane-3 {
    animation: fly-across-3 12s linear infinite;
    animation-delay: 6s;
}

@keyframes fly-across-1 {
    0% {
        left: -50px;
        top: 20%;
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
    }
    10% {
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
    100% {
        left: 110%;
        top: 30%;
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
    }
}

@keyframes fly-across-2 {
    0% {
        left: -50px;
        top: 60%;
        opacity: 0;
        transform: rotate(10deg) scale(0.7);
    }
    15% {
        opacity: 1;
        transform: rotate(10deg) scale(1.1);
    }
    85% {
        opacity: 1;
        transform: rotate(10deg) scale(1.1);
    }
    100% {
        left: 110%;
        top: 40%;
        opacity: 0;
        transform: rotate(10deg) scale(0.7);
    }
}

@keyframes fly-across-3 {
    0% {
        left: -50px;
        top: 80%;
        opacity: 0;
        transform: rotate(-25deg) scale(0.9);
    }
    12% {
        opacity: 1;
        transform: rotate(-25deg) scale(1.2);
    }
    88% {
        opacity: 1;
        transform: rotate(-25deg) scale(1.2);
    }
    100% {
        left: 110%;
        top: 10%;
        opacity: 0;
        transform: rotate(-25deg) scale(0.9);
    }
}



/* Sabrina Section */
.sabrina-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.sabrina-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.sabrina-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sabrina-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

.sabrina-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        transform: scale(1.05);
    }
}

.sabrina-card h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sabrina-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sabrina-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #333;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.sabrina-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.sabrina-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.sabrina-button:hover::before {
    left: 100%;
}

.sabrina-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-orbs {
    position: relative;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 237, 74, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 60%;
    animation-delay: 1.5s;
    animation-duration: 8s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.orb-4 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 70%;
    animation-delay: 4.5s;
    animation-duration: 5s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) translateX(15px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Footer */
.footer {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .hero-visual {
        display: none;
    }
    

    
    .sabrina-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .sabrina-visual {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .sabrina-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .sabrina-section {
        padding: 4rem 1rem;
    }
    
    .sabrina-card {
        padding: 2rem 1.5rem;
    }
}
