/* ---------------------------------------------------------
   GLOBAL FONTS & RESET
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    background: #faf7f2;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Global spacing */
section {
    padding: 70px 8%;
}

/* ---------------------------------------------------------
   NAVIGATION BAR
--------------------------------------------------------- */
header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

header h1 {
    color: #fff;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.3s;
}

nav a:hover {
    color: #f5d7a5;
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
    height: 85vh;
    background: url("../images/hero.jpj.png") center/cover no-repeat;
    margin: 45px auto 0;
    width: 92%;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.45)
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    text-shadow: 0px 3px 10px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 18px;
    margin: 15px 0 25px;
    text-shadow: 0px 2px 7px rgba(0,0,0,0.6);
}

.btn {
    padding: 14px 32px;
    background: #d6a25e;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #c28639;
}

/* ---------------------------------------------------------
   SECTION HEADINGS
--------------------------------------------------------- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    text-align: center;
    margin-bottom: 55px;
    color: #2e2e2e;
}

/* ---------------------------------------------------------
   CARDS (ATTRACTIONS, PLACES, ACTIVITIES)
--------------------------------------------------------- */
.grid-4,
.grid-3,
.grid-2 {
    display: grid;
    gap: 35px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 20px;
}

.card p {
    font-size: 15px;
    margin: 0 20px 20px;
    color: #555;
}

/* ---------------------------------------------------------
   PLAN YOUR TRIP – HYBRID EXPANDABLE CARDS
--------------------------------------------------------- */
.expand-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    cursor: pointer;
}

.expand-card:hover {
    transform: translateY(-4px);
}

.expand-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.expand-content {
    display: none;
    margin-top: 18px;
}

.expand-card.active .expand-content {
    display: block;
}

.expand-card a {
    display: inline-block;
    margin-top: 10px;
    background: #d6a25e;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.expand-card a:hover {
    background: #c28639;
}

/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.04);
}

/* ---------------------------------------------------------
   CONTACT FORM
--------------------------------------------------------- */
form {
    width: 60%;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

form label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-top: 6px;
}

button {
    width: 100%;
    background: #d6a25e;
    color: white;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    margin-top: 20px;
    font-weight: 600;
}

button:hover {
    background: #c28639;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
    background: #1f1f1f;
    color: #eee;
    padding: 45px 0;
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN — minimal changes
--------------------------------------------------------- */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {

    section {
        padding: 60px 6%;
    }

    .grid-4 { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        height: 70vh;
        width: 95%;
        border-radius: 30px;
    }

    .hero-content h2 {
        font-size: 44px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
        padding: 20px 8%;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-top: 10px;
    }

    .hero {
        margin-top: 80px;
        width: 100%;
        border-radius: 0 0 30px 30px;
        height: 70vh;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* grids collapse */
    .grid-3,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    form {
        width: 92%;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {

    header h1 {
        font-size: 22px;
    }

    nav ul {
        gap: 10px;
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin-top: 8px;
    }

    form {
        width: 95%;
        padding: 20px;
    }
}
