/* HERO TEXT ENHANCEMENT */
.hero-content h2 {
    font-family: 'Montserrat', serif;
    font-size: 4rem;
    letter-spacing: 2px;
    color: #fdffd0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3rem;
    color: #fdffd0;
    margin-top: 10px;
}

/* SECTION SPACING IMPROVEMENT */
section {
    padding: 100px 12%;
}

/* SECTION TITLES (LUXURY FEEL) */
section h2 {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    color: #5c432a;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6b553c;
}

/* CARDS ENHANCEMENT */
.card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* SMOOTHER HOVER */
.card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* CARD TEXT PREMIUM STYLE */
.card h3 {
    font-size: 1.5rem;
    font-family: 'Montserrat', serif;
}

.card .subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
}

/* BUTTON (CTA IMPROVEMENT) */
section button {
    margin-top: 25px;
    padding: 14px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #c49e57, #f39c12);
    color: #111;
    font-weight: 600;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

section button:hover {
    transform: scale(1.07);
    background: linear-gradient(135deg, #f39c12, #ffd700);
}

/* ADD DIVIDER LINE BETWEEN SECTIONS */
section::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #c49e57;
    margin: 50px auto 0;
    opacity: 0.5;
}

/* CARDS LAYOUT RESPONSIVE */
.cards {
    flex-wrap: wrap;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    /* NAVIGATION (HAMBURGER STYLE) */
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        z-index: 10001;
        color: #f39c12;
        position: relative;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        left: 0;
        background: rgba(0,0,0,0.9);
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        background: none;
    }

    .dropdown-menu {
    display: none;
    position: static;
    background: none;
    padding: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 8%;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}