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

/* ==========================
   brand pallete
========================== */
:root {

    --cream: #f7f4ef;

    --sage-100: #d9e3dc;
    --sage-200: #c8d5cd;
    --sage-300: #b8c7be;

    --sage-500: #7f9587;
    --sage-700: #61786b;

    --gold: #d0aa67;

    --text: #2f352f;
}

/* ==========================
   global
========================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.8;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.narrow {
    max-width: 750px;
}

/* ==========================
   nav
========================== */
.navbar-custom {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 30px 0;
}

.navbar-custom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ==========================
   hero
========================== */
.hero {
    height: 100vh;

    background:
        linear-gradient(rgba(97, 120, 107, .55),
            rgba(97, 120, 107, .45)),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    text-align: center;
    color: white;
    padding: 20px;
}

.eyebrow {
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.hero-text {
    max-width: 600px;
    margin: auto;
    margin-bottom: 40px;
}

.btn-primary-custom {
    display: inline-block;
    padding: 14px 30px;

    background: var(--sage-500);
    color: white;

    text-decoration: none;

    border-radius: 3px;

    transition: .3s ease;
}

.btn-primary-custom:hover {
    background: var(--sage-700);
    color: white;
}

/* ==========================
   section labels
========================== */
.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--gold);
}

.section-label::after {

    content: "";

    display: block;

    width: 60px;
    height: 1px;

    background: var(--gold);

    margin-top: 10px;
}

.text-center .section-label::after {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================
   typography
========================== */
h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

/* ==========================
   sections
========================== */
.light-section {
    background: var(--sage-100);
}

/* ==========================
   features
========================== */
.feature-card {
    text-align: center;
    padding: 30px;

    border-top: 2px solid var(--gold);
}

.placeholder-image {
    height: 260px;

    background: var(--sage-200);
    color: var(--sage-700);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

/* ==========================
   gallery
========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;

    background: var(--sage-200);
    color: var(--sage-700);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================
   guests
========================== */
.guest-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.guest-list span {
    padding: 12px 20px;

    border: 1px solid var(--sage-500);

    color: var(--sage-700);

    background: rgba(255, 255, 255, .6);
}

/* ==========================
   map
========================== */
.map-placeholder {
    height: 350px;

    background: var(--sage-200);
    color: var(--sage-700);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 40px;
}

/* ==========================
   contact
========================== */
.contact-section {
    background: var(--sage-700);
    color: white;
}

.contact-section h2,
.contact-section p,
.contact-section .section-label {
    color: white;
}

.contact-section .section-label::after {
    background: var(--gold);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.contact-links a {
    color: white;
    text-decoration: none;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {

    padding: 15px;

    border: none;

    background: white;

    border-radius: 3px;
}

.enquiry-form button {

    padding: 15px;

    border: none;

    background: var(--gold);

    color: white;

    border-radius: 3px;

    transition: .3s ease;
}

.enquiry-form button:hover {
    background: #b9924d;
}

/* ==========================
   whatsapp
========================== */
.whatsapp-button {

    position: fixed;

    bottom: 20px;
    right: 20px;

    background: var(--sage-500);
    color: white;

    text-decoration: none;

    padding: 14px 20px;

    border-radius: 50px;

    transition: .3s ease;

    z-index: 999;
}

.whatsapp-button:hover {
    background: var(--sage-700);
    color: white;
}

/* ==========================
   handy
========================== */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

}