/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

a {
    color: #455c38;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5A7A49;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: bold;
    color: #222222;
}

.nav {
    display: flex;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list li a {
    color: #222222;
    font-weight: bold;
    font-size: 1em;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #455c38;
    border-bottom: 2px solid #455c38;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}


/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home_page.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 500px 20px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-text h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
}

.btn {
    background-color: #455c38;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: 2px solid #455c38;
    cursor: pointer;
}

.btn:hover {
    background-color: #5A7A49;
    border-color: #5A7A49;
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #455c38;
}

.btn-solid {
    background-color: #455c38;
    color: #fff;
    border-color: #455c38;
}

.btn-solid:hover {
    background-color: #5A7A49;
    border-color: #5A7A49;
    color: #fff;
}


/* Main Content Sections */
.content-section {
    padding: 100px 0;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    margin-left: -110px;    

}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-top: -30px; /* Added to pull content up */
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text p:first-child {
    margin-top: -70px;
}

/* Media Page */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.media-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-item iframe {
    width: 100%;
    display: block;
    border: none;
}

.media-item-info {
    padding: 20px;
}

.media-item-info h3 {
    margin-top: 0;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #455c38;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #5A7A49;
}

/* Footer */
.footer {
    background-color: #222222;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.footer-content p {
    margin: 0 0 20px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #455c38;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-text p {
        font-size: 1.2em;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin-bottom: 30px;
    }
}