@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #F4F4F0;
    overflow-x: hidden;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, #888888);
    pointer-events: none;
    z-index: 5;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: calc(100% - 80px);
    z-index: 20;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    animation: navSlideDown 0.8s ease-out forwards;
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.logo {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #050505;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #050505;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #a20003;
}

.cta-button {
    background-color: #a20003;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #8a0003;
    transform: translateY(-1px);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 15%;
    background-image: url('/public/hero.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7%;
    transform: translateY(-0px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    animation: heroFadeIn 1.2s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        filter: blur(0px);
    }
}

.hero-title {
    font-size: clamp(46px, 8vw, 86px);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.05;
    color: #050505;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 40px;
}

.get-started-button {
    background-color: #a20003;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(162, 0, 3, 0.15);
}

.get-started-button:hover {
    background-color: #8a0003;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(162, 0, 3, 0.25);
}

/* Responsive Design */
@media (min-width: 1025px) {
    .hero-background {
        bottom: 0%;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        width: calc(100% - 60px);
        padding: 14px 28px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        width: calc(100% - 40px);
        padding: 12px 24px;
        top: 16px;
    }


    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-content {
        transform: translateY(-60px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        transform: translateY(-40px);
    }
}

/* Apply Section Redesign */
.application-section {
    padding-top: 30px !important;
}

.arrow-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #a20003;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 13px 26px;
}

.arrow-button:hover {
    gap: 24px;
    transform: translateX(10px);
}

.arrow-button svg {
    transition: all 0.3s ease;
}