@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Cormorant+Garamond:wght@400;500&family=Great+Vibes&display=swap');

:root {
    --primary: #c9d8c5;        /* soft green accent */
    --accent: #8fae9b;
    --light: #ffffff;
    --dark: #000000;
    --radius: 14px;
    --shadow: 0 8px 30px rgba(0,0,0,0.6);
}

/* GLOBAL */
body {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    background-color: #000000;   /* black background */
    color: #ffffff;              /* white text */
}

/* HEADER */
header {
    background: #000;
    padding: 10px 40px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* pushes nav + logo to the right */
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 20;
}

nav a {
    margin: 0 20px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: #c0c0c0;
}

.logo-container {
    margin-top: 8px;
}

.logo {
    height: 55px;          /* smaller, cleaner */
    width: auto;
    background-color: #ffffff;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}



/* TITLE */
.site-title {
    text-align: center;
    font-family: "Great Vibes", cursive;
    font-size: 4rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

/* HOMEPAGE HERO IMAGE */
.hero-image {
    width: 100%;
    height: 500px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
    border: 2px solid #222222;
}

/* SLIDESHOW (GALLERY PAGE) */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 550px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid #222222;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* CONTENT CARD */
.content {
    max-width: 1100px;
    margin: 40px auto;
    background: #111111;        /* deep charcoal */
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: #ffffff;
}

h2 {
    margin-top: 0;
    color: var(--primary);
    font-size: 2rem;
}

/* RATES TABLE */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.rates-table th,
.rates-table td {
    border-bottom: 1px solid #333333;
    padding: 12px 10px;
    text-align: left;
}

.rates-table th {
    background-color: #1a1a1a;
    font-weight: 600;
    color: #ffffff;
}

.rates-note {
    margin-top: 20px;
    font-style: italic;
    color: #cccccc;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid #222222;
}

/* CONTACT LAYOUT */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-column {
    flex: 1 1 300px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #444444;
    background: #000000;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form button {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background-color: var(--primary);
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.contact-form button:hover {
    background-color: var(--accent);
}

.form-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bbbbbb;
}

/* MAP */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid #222222;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    background: #000000;
    margin-top: 80px;
    font-size: 0.95rem;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-slideshow {
        height: 350px;
    }

    .content {
        padding: 30px;
        margin: 20px;
    }

    .site-title {
        font-size: 3rem;
    }
}
