:root {
    --primary: #2C4A3B;
    /* Deep Forest Green */
    --primary-light: #4A7A62;
    --accent: #D4A373;
    /* Wood Accent */
    --accent-hover: #C28D5D;
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #FAFAFA;
    --bg-card: #FFFFFF;
    --border-radius: 12px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: color var(--transition);
}

nav a:hover {
    color: var(--accent);
}

/* Buttons */
.btn-primary,
.btn-primary-small,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-small {
    padding: 0.5rem 1.2rem;
    background-color: var(--primary);
    color: white;
}

.btn-primary-small:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left-column {
    flex: 1;
}

.hero-text h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    max-height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform var(--transition);
}

.hero-image:hover {
    transform: scale(1.02);
}

.accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--border-radius);
    z-index: 1;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-weight: 600;
    font-size: 1.2rem;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: white;
}

.contact-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
}

.contact-form-wrapper {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background-color: #1A2B22;
    /* Darker green */
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-content,
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left-column {
        display: contents;
    }

    .hero-text {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .hero-buttons {
        order: 3;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .accent-box {
        display: none;
    }

    .contact-text p {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    nav {
        display: none;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item .overlay {
        font-size: 0.9rem;
        padding: 1rem 0.5rem 0.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1.2rem;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0}
    to {transform: scale(1); opacity: 1}
}