/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-image: url('field.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding-bottom: 15vh;
    animation: fadeInUp 1.5s ease-out;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 1px;
    line-height: 1.1;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #f8f9fa;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.fly-in-button {
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    font-weight: 300;
    color: #f8f9fa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    display: inline-block;
}

.fly-in-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .fly-in-button {
        font-size: 0.8rem;
        padding: 10px 25px;
    }
    
    .hero-content {
        padding-bottom: 12vh;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .fly-in-button {
        font-size: 0.7rem;
        padding: 8px 20px;
    }
    
    .hero-content {
        padding-bottom: 10vh;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}