/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a5d23; /* Earthy green */
}

.logo img {
    margin-right: 10px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a5d23;
}

/* Hero Section (Main Picture) */
.hero {
    height: 80vh;
    background: url('Images/Banner.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

/* Content Sections */
.content-section {
    padding: 80px 15%;
    text-align: center;
}

.gray-bg {
    background-color: #f4f4f4;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4a5d23;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    background-color: #4a5d23;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #38471b;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: #333;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real site, you'd add a hamburger menu */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* History Section Styling */
.history-container {
    padding: 60px 20px;
    background-color: #fdfbf7; /* Light parchment color */
    color: #333;
    line-height: 1.6;
}

.history-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #4a3b2c;
    margin-bottom: 10px;
}

.accent-line {
    width: 80px;
    height: 3px;
    background-color: #c0a080;
    margin: 0 auto;
}

/* Row Layout */
.history-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.history-row.reverse {
    flex-direction: row-reverse;
}

.history-image, .history-text {
    flex: 1;
}

.history-text h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #6b533e;
    margin-bottom: 15px;
}

.history-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Image and Figcaption Styling */
.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

figcaption {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .history-row, .history-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .history-text h3 {
        font-size: 1.5rem;
    }
}