/* Modern Home Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
}

.hero-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 3rem;
    margin: 2rem;
    max-width: 800px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
    color: white;
}

.cover-container {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0.25rem;
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .container {
        padding: 0;
        max-width: none;
    }

    .hero-container {
        margin: 0.25rem;
        padding: 1.5rem;
        border-radius: 15px;
        max-width: none;
        width: calc(100vw - 0.5rem);
        min-height: calc(100vh - 1rem);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0.5rem;
        width: calc(50% - 1rem);
        justify-content: center;
    }

    .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.9rem;
        margin: 0 0.2rem;
    }

    /* Stack navigation on very small screens */
    .d-flex.align-items-center {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.1rem;
        padding-top: 0.25rem;
    }

    .hero-container {
        margin: 0.1rem;
        padding: 1rem;
        width: calc(100vw - 0.2rem);
        min-height: calc(100vh - 0.5rem);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .d-flex.align-items-center {
        justify-content: center;
    }
}