/* Page System */
#page-container {
    padding-top: 80px;
    min-height: 100vh;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero-section {
    min-height: 1024px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/Container.svg') center/cover;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 185, 84, 0.05);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 17, 13, 0.6) 0%, 
        rgba(10, 17, 13, 0.8) 50%, 
        #0a110d 100%);
}

.decorative-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: rgba(29, 185, 84, 0.2);
    border-radius: 9999px;
    filter: blur(60px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.hero-heading {
    margin-bottom: 2rem;
}

.hero-heading h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -4.8px;
    margin-bottom: 1rem;
}

.text-white {
    color: #ffffff;
}

.text-green {
    color: #1db954;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a110d 0%, #0f1a15 100%);
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #0a110d;
    animation: pulse 2s ease-in-out infinite;
}

.feature-card h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Popular Fields Section */
.popular-fields-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f1a15 0%, #0a110d 100%);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.field-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.field-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.2);
}

.field-image {
    height: 200px;
    background: linear-gradient(135deg, #1db954 0%, #0a110d 100%);
    background-size: cover;
    background-position: center;
}

.field-info {
    padding: 1.5rem;
}

.field-info h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.field-info p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.field-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-heading h1 {
        font-size: 4rem;
        letter-spacing: -3.2px;
    }
    
    .fields-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-heading h1 {
        font-size: 3rem;
        letter-spacing: -2.4px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-heading h1 {
        font-size: 2.5rem;
        letter-spacing: -1.2px;
    }

    .features-grid,
    .fields-grid {
        grid-template-columns: 1fr;
    }

    .field-card {
        margin: 0 5px;
    }
}
