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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: white;
    line-height: 1.6;
}


/* HERO SECTION */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(20,20,20,0.68), rgba(20,20,20,0.74)),
        url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 45px 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* LOGO */

.logo {
    margin-bottom: 55px;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 62vw;
    max-width: 980px;
    min-width: 420px;
    height: auto;
    object-fit: contain;
    opacity: 0.98;
}

/* TITLES */

.hero h3 {
    font-size: 22px;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.88);
}

.hero h1 {
    font-size: 120px;
    line-height: 0.95;
    font-weight: 800;
    color: #ff5a2c;
    letter-spacing: -3px;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(255,90,44,0.18);
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 500;
    color: #f2f2f2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 42px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff5a2c;
    color: white;
    box-shadow: 0 0 25px rgba(255,90,44,0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ff744d;
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: black;
}


/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 90px 10%;
    background: #202020;
}

.feature-box {
    background: #262626;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 45px 30px;
    border-radius: 28px;
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,90,44,0.25);
}

.feature-box h3 {
    font-size: 24px;
    color: white;
}


/* EXPERIENCE */

.experience {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    padding: 100px 10%;
    background: #1c1c1c;
}

.experience-card {
    background: #262626;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.experience-card h3 {
    padding: 28px;
    font-size: 24px;
    color: white;
}


/* PRICING */

.pricing {
    padding: 100px 10%;
    background: #202020;
    display: flex;
    justify-content: center;
}

.price-box {
    width: 100%;
    max-width: 650px;
    background: linear-gradient(145deg, #2a2a2a, #1d1d1d);
    border: 1px solid rgba(255,90,44,0.15);
    border-radius: 36px;
    padding: 70px 50px;
    text-align: center;
}

.small-text {
    letter-spacing: 4px;
    font-size: 15px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
}

.price-box h2 {
    font-size: 90px;
    color: #ff5a2c;
    margin-bottom: 10px;
}

.price-box p {
    color: rgba(255,255,255,0.75);
    font-size: 20px;
}


/* JOURNEY */

.journey {
    background: #1c1c1c;
    padding: 110px 10%;
}

.journey h2 {
    text-align: center;
    font-size: 64px;
    margin-bottom: 70px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.journey-item {
    background: #262626;
    border-radius: 26px;
    padding: 38px;
    border: 1px solid rgba(255,255,255,0.04);
}

.journey-item span {
    color: #ff5a2c;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

.journey-item h3 {
    margin-top: 14px;
    font-size: 25px;
    color: white;
}


/* IMPORTANT INFO */

.important-info {
    padding: 100px 10%;
    background: #202020;
    display: flex;
    justify-content: center;
}

.info-box {
    max-width: 900px;
    text-align: center;
}

.info-box h2 {
    font-size: 54px;
    margin-bottom: 35px;
}

.info-box p {
    font-size: 20px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.78);
}


/* FOOTER */

footer {
    background: #181818;
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}


.footer-logo img {
    width: 78vw;
    max-width: 1200px;
    min-width: 520px;
    height: auto;
    object-fit: contain;
}

footer h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 18px;
}


/* MOBILE */

@media(max-width: 1100px) {

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 90px 18px 60px;
    }

    .logo {
        margin-bottom: 70px;
    }

.logo img {
    width: 46vw;
    max-width: 260px;
    min-width: 170px;
}


    .hero h3 {
        font-size: 17px;
        letter-spacing: 7px;
        margin-bottom: 22px;
    }

    .hero h1 {
        font-size: 74px;
        line-height: 0.9;
        letter-spacing: -1px;
        max-width: 95vw;
    }

    .hero h2 {
        font-size: 44px;
        margin-top: 18px;
    }

    .subtitle {
        font-size: 20px;
        margin-top: 22px;
        margin-bottom: 38px;
    }

    .hero-buttons {
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 28px;
        font-size: 16px;
    }

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

    .price-box h2 {
        font-size: 62px;
    }

    .journey h2,
    .info-box h2 {
        font-size: 42px;
    }


.footer-logo img {
    width: 78vw;
    max-width: 420px;
    min-width: 0;
}


}