body {
    margin: 0;
    font-family: 'Segoe UI';
    background: #faf8ef;
    color: #2e2e2e;
}

/* HEADER */
header {
    background: #1a1a1a;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    color: #ffd76c;
}
header nav a {
    margin-left: 20px;
    color: #ffd76c;
    text-decoration: none;
    font-weight: bold;
}

/* HERO – FULL RESPONSIVE */
.hero {
    width: 100%;
    min-height: 100vh; /* full screen height */
    background-size: cover; /* cover whole screen */
    background-position: center center; /* center image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* parallax on desktop */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-shadow: 1px 1px 4px black;
    padding: 20px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    margin-top: 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero {
        min-height: 65vh;
        background-attachment: scroll; /* fix zoom issues on mobile */
        background-position: center top;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
        text-align: center;
    }
}

/* FLOATING BUTTON */
.enquiry-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ffd76c;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
}

/* POPUP FORM */
.popup-form {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 9999;
}
.popup-form input,
.popup-form button {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
}
.popup-form button {
    background: #ffd76c;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.close-btn {
    display: block;
    text-align: center;
    color: red;
    cursor: pointer;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* responsive cards */
    padding: 40px;
    gap: 20px;
}
.card {
    width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.card img {
    width: 100%;
}

