@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary-color: #3b322a;
    /* Deep earthy brown/taupe based on elegant upholstery */
    --accent-color: #bfa588;
    /* Warm gold/sand */
    --accent-hover: #a88d70;
    --text-dark: #2d2926;
    --text-light: #f5f5f5;
    --bg-body: #fdfbf7;
    /* Off-white/cream */
    --bg-white: #ffffff;
    --nav-bg: #2d2926;
    --border-radius: 6px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* NAVBAR */
.navbar {
    background-color: var(--nav-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 45px;
    width: auto;
    filter: invert(1);
    margin-top: 5px;
    transition: var(--transition);
}

.navbar .logo img:hover {
    opacity: 0.8;
}

.navbar .menu {
    display: flex;
    gap: 35px;
}

.navbar .menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.navbar .menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.navbar .menu a:hover::after,
.navbar .menu a.current::after {
    width: 100%;
}

.navbar .menu a:hover,
.navbar .menu a.current {
    color: var(--accent-color);
}

/* HAMBURGER — hidden on desktop */
.navbar .hamburger {
    display: none;
    cursor: pointer;
    color: var(--text-light);
    user-select: none;
    width: 28px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}

.navbar .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.navbar .hamburger span:nth-child(1) {
    top: 0;
}

.navbar .hamburger span:nth-child(2) {
    top: 10px;
}

.navbar .hamburger span:nth-child(3) {
    top: 20px;
}

.navbar .hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar .hamburger.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* ===== MOBILE SIDEBAR DRAWER ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 4%;
    }

    .navbar .logo img {
        height: 35px;
        margin-left: 10px;
        margin-top: 4px;
    }

    .navbar .menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background-color: var(--nav-bg);
        flex-direction: column;
        display: flex;
        padding: 70px 0 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        overflow-y: auto;
        gap: 0;
    }

    .navbar .menu.open {
        right: 0;
    }

    .navbar .menu a {
        padding: 16px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: left;
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0.3px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .navbar .menu a:last-child {
        border-bottom: none;
    }

    .navbar .menu a:hover,
    .navbar .menu a.current {
        background-color: rgba(191, 165, 136, 0.1);
        color: var(--accent-color);
    }

    .navbar .menu a::after {
        display: none;
    }

    .navbar .hamburger {
        display: block;
    }

    .menu-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 28px;
        height: 28px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-close span {
        position: absolute;
        width: 22px;
        height: 2px;
        background: var(--text-light);
        border-radius: 2px;
    }

    .menu-close span:first-child {
        transform: rotate(45deg);
    }

    .menu-close span:last-child {
        transform: rotate(-45deg);
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(191, 165, 136, 0.4);
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 141, 112, 0.5);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(168, 141, 112, 0.4);
}

/* LAYOUT / CONTAINERS */
main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(45, 41, 38, 0.4), rgba(45, 41, 38, 0.8)), var(--primary-color);
    color: white;
    padding: 120px 5%;
    text-align: center;
}

.hero-logo {
    height: 90px;
    filter: invert(1);
    margin-bottom: 20px;
}

.hero h1 {
    color: white;
    font-size: 3.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero .cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 5%;
    }

    .hero-logo {
        height: 50px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    .container {
        padding: 40px 4%;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 15px 18px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 15px 18px;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .content-box {
        padding: 22px 18px;
    }

    .content-box p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 25px 18px;
    }

    .footer {
        padding: 25px 15px 20px;
        margin-top: 30px;
    }

    .copyright {
        font-size: 0.75rem;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* CARDS GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* BENEFITS (small cards) */
.benefit-card {
    background: var(--bg-body);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: left;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-card h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.benefit-card p {
    margin: 0;
}

.card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--accent-color);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* INFO / CONTENT BOX */
.content-box {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 50px;
    margin: 0 auto;
    max-width: 1000px;
}

.content-box p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-box h2 {
    margin-top: 40px;
}

.content-box h2:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .content-box {
        padding: 30px;
    }
}

/* FORMS */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(191, 165, 136, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-card {
    background: var(--bg-body);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: left;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    align-self: flex-start;
}

/* FOOTER */
.footer {
    background-color: var(--nav-bg);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--accent-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* CONTACT CARDS GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* LIGHTBOX (Photoviewer) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 3rem;
    padding: 10px;
    line-height: 1;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 4rem;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.social-icon svg {
    fill: var(--accent-color);
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.social-icon:hover svg {
    fill: var(--primary-color);
    transform: scale(1.15);
}

/* Responsive reCAPTCHA */
.g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 420px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 350px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}

/* ALERTS */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
    text-align: left;
}

.alert-success {
    background-color: #f0f7f4;
    color: #2e6244;
    border-color: #d1e7dd;
}

.alert-danger {
    background-color: #fdf3f2;
    color: #a83a32;
    border-color: #f8d7da;
}