/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5f4f;
    --secondary-color: #8b9d83;
    --accent-color: #c9a876;
    --light-bg: #f5f1f1;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.logo h1 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
    line-height: 1.2;
}

.logo h1 .header-name {
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.92;
}

.logo .tagline {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.1rem;
    opacity: 0.95;
    color: #fff;
}

.btn-book {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.3rem;
    box-shadow: 0 2px 8px rgba(201,168,118,0.3);
    transition: background 0.18s, box-shadow 0.18s;
}

.btn-book:hover {
    background: #b8965e;
    box-shadow: 0 4px 16px rgba(201,168,118,0.4);
    transform: translateY(-1px);
}

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' \25BC';
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    list-style: none;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
    overflow: hidden;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* On mobile, disable hover-based dropdown - use JS tap instead */
@media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.1);
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 0.25rem auto;
    width: 80%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45,95,79,0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('4.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    width: 100%;
    padding: 2rem 1rem;
}

.hero-content h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* ===== BUBBLE OVERLAY ===== */
.bubble-overlay {
    background: rgba(45,95,79,0.55);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.bubble-overlay h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-bubble {
    margin-bottom: 2.5rem;
}

.contact-bubble {
    margin-top: 4rem;
    margin-bottom: 0.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 0;
    margin: 0;
    background: none;
}

.about-container {
    display: flex;
    min-height: 600px;
}

.about-content {
    background: linear-gradient(rgba(200,200,200,0.4), rgba(200,200,200,0.4)),
                url('IMG_6796.jpg') center top/cover no-repeat;
    flex: 1;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.about-background {
    flex: 1;
    background: linear-gradient(rgba(200,200,200,0.4), rgba(200,200,200,0.4)),
                url('IMG_0395.jpg') center top/cover no-repeat;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.about-background h2,
.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
    font-weight: 800;
    text-align: center;
}

.background-text p,
.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
    line-height: 2;
    color: #000;
    font-weight: 500;
    text-align: justify;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(245,241,241,0.8) 0%, rgba(139,157,131,0.08) 100%);
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(139,157,131,0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(45,95,79,0.15);
    border-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== LOCATION SECTION ===== */
.location-bg {
    background: url('9.jpg') center/cover no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 1rem;
}

.location-overlay {
    background: rgba(45,95,79,0.55);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.location-overlay h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.location-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== BOOKING CTA ===== */
.booking-cta {
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.booking-cta h3,
.booking-cta p {
    color: #fff;
    text-align: center;
}

.booking-cta a.btn {
    display: inline-block;
    margin: 1.5rem auto 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(245,241,241,0.8) 0%, rgba(139,157,131,0.08) 100%);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: url('8.jpg') center/cover no-repeat;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 2rem;
    background: url('8.jpg') center/cover no-repeat;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 400px;
}

.contact-info h3,
.contact-info p,
.contact-info a {
    color: #fff !important;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3,
.booking-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-info p,
.booking-cta p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info a {
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

/* ================================================
   RESPONSIVE - TABLET (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        flex-wrap: nowrap;
        padding: 0.5rem 1rem;
        position: relative;
    }

    .logo {
        max-width: calc(100% - 60px);
    }

    .logo h1 {
        font-size: 1.85rem;
    }

    .logo h1 .header-name {
        font-size: 1.2rem;
    }

    .logo .tagline {
        font-size: 0.85rem;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Nav drops DOWN below the header as an overlay */
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .navbar.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.85rem 1rem;
        border-radius: 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }

    /* Services sub-dropdown opens inline below the link */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: rgba(0,0,0,0.15);
        border-radius: 0;
        min-width: 100%;
    }

    .dropdown-menu a {
        text-align: center;
        padding: 0.65rem 1rem;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .hero {
        min-height: 350px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-container {
        flex-direction: column;
        min-height: unset;
    }

    .about-background,
    .about-content {
        padding: 3rem 1.5rem;
    }

    .about-background h2,
    .about h2 {
        font-size: 2rem;
    }

    .background-text p,
    .about-text p {
        text-align: left;
    }

    .services,
    .testimonials {
        padding: 3rem 1rem;
    }

    .services h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .bubble-overlay {
        margin: 1.5rem 1rem;
        padding: 2rem 1.2rem;
    }

    .bubble-overlay h2 {
        font-size: 2rem;
    }

    .location-overlay {
        margin: 1rem;
        padding: 2rem 1.2rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .contact {
        padding: 3rem 1rem;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .header-container {
        padding: 0.4rem 0.75rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo h1 .header-name {
        font-size: 1.05rem;
    }

    .logo .tagline {
        font-size: 0.8rem;
    }

    .btn-book {
        font-size: 0.85rem;
        padding: 0.35rem 1rem;
    }

    .nav-link {
        padding: 0.85rem 1rem;
        font-size: 1.05rem;
    }

    .hero {
        min-height: 280px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .about-background,
    .about-content {
        padding: 2rem 1rem;
    }

    .about-background h2,
    .about h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .background-text p,
    .about-text p {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .bubble-overlay {
        margin: 1rem 0.5rem;
        padding: 1.5rem 1rem;
    }

    .bubble-overlay h2 {
        font-size: 1.5rem;
    }

    .location-bg {
        min-height: 250px;
        padding: 1rem 0.5rem;
    }

    .location-overlay {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .location-overlay h2 {
        font-size: 1.5rem;
    }

    .services h2,
    .testimonials h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .contact {
        padding: 2rem 0.75rem;
    }

    .contact h2 {
        font-size: 1.5rem;
    }

    .footer {
        padding: 1.5rem 0.75rem;
        font-size: 0.85rem;
    }
}
