@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #96715b;
    /* Warm Wood/Coffee Brown */
    --secondary: #fdfaf7;
    /* Soft Cream */
    --accent: #d4a373;
    /* Earthy Gold */
    --text-dark: #4a3f35;
    --text-muted: #7a6c5f;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(150, 113, 91, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 80px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1,
h2,
h3 {
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
}

.btn {
    padding: 14px 34px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 113, 91, 0.2);
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(150, 113, 91, 0.12);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 250, 247, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 10%;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section with BW to Color transition */
.hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(253, 250, 247, 0.7), rgba(253, 250, 247, 0.7)), url('image.jpg') center/cover;
    filter: grayscale(1);
    transition: filter 3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-section.reveal-color::before {
    filter: grayscale(0);
}

.hero-section h1,
.hero-section p,
.hero-section div {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    .nav-links {
        display: none;
    }
}

/* New Sections Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.bio-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.bio-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bio-image img {
    width: 100%;
    display: block;
}

.bio-text {
    flex: 1.5;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--secondary);
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(74, 63, 53, 0.8));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}


.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-question {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.testimonial-card {
    font-style: italic;
    color: var(--text-muted);
}

.testimonial-author {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tips Section Styling */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
    /* Centers items in the last row */
}

.tip-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(150, 113, 91, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.tip-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--primary);
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .bio-container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
        padding: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    section {
        padding: 60px 20px;
    }
}