/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay gelap */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(20, 35, 40, 0.5),
        rgba(20, 35, 40, 1)
    );
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
}

/* ============ HERO TITLE ============ */
.hero-title {
    font-family: "Inter";
    font-size: clamp(50px, 6vw, 70px);
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    color: #F5E9DD;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}

/* Paragraf Deskripsi */
.container p {
    font-size: clamp(16px, 2vw, 17px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F5E9DD;
}

/* ============ HERO BUTTONS ============ */

.hero-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    font-family: "Inter";
    gap: 25px;
}

.btn {
    padding: 14px 36px;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* Outline button */
.btn-explore {
    border: 2px solid #D2B48C;
    color: #D2B48C;
    background: transparent;
}

.btn-explore:hover {
    background: rgba(210,180,140,0.1);
}

/* Solid button */
.btn-purchase {
    background-color: #D2B48C;
    color: #121212;
    font-family: 'Inter';
    border: none;
}

.btn-purchase:hover {
    background-color: #C3A57F;
}

/* ======== RESPONSIVE TABLET ======== */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
}

/* ======== RESPONSIVE MOBILE ======== */
@media (max-width: 480px) {

    /* Judul hero */
    .hero-title {
        font-size: 26px !important;
        line-height: 1.25;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    /* Paragraf */
    .container p {
        font-size: 13px !important;
        line-height: 1.45;
        margin-top: 5px;
    }

    /* Tombol */
    .btn {
        width: 100%;
        max-width: 240px;
        font-size: 12px;
        padding: 10px 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
}
