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

p {
    margin-bottom: 1rem;
}

a {
    color: #3d5913;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #3d5913;
    background: #f4f7f0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f4f7f0;
    box-shadow: 0 2px 5px rgba(61, 89, 19, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a,
.logo a:hover {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: #3d5913;
    text-shadow: 1px 1px 2px rgba(61, 89, 19, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #3d5913;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav a {
    text-decoration: none;
    color: #3d5913;
    font-weight: 500;
    font-family: 'Lora', serif;
    transition: color 0.3s;
}

nav a:hover {
    color: #8fa977;
}

.section {
    min-height: 100vh;
    padding: 80px 5% 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#home {
    background: linear-gradient(rgba(150, 150, 150, 0.2), rgba(150, 150, 150, 0.2)),
        url('images/splash.jpg') no-repeat center center/cover;
}

#home .service-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
}

#home .service-card h1 {
    color: #3d5913;
    opacity: 1;
}

#home .service-card p {
    color: #4a6320;
    opacity: 1;
}

h1 {
    font-size: 3rem;
    color: #3d5913;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: #3d5913;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

#about .services-grid {
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

#services .services-grid {
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

#home .services-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(61, 89, 19, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(61, 89, 19, 0.1);
}

/* .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(61, 89, 19, 0.2);
    border-color: #8fa977;
} */

.more-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 1.6rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #8fa977 0%, #5d7b3f 100%);
    color: #fff;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(93, 123, 63, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.more-button:hover,
.more-button:focus {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #9fba85 0%, #6f8c51 100%);
    box-shadow: 0 14px 28px rgba(93, 123, 63, 0.25);
    outline: none;
}

.more-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.service-card h3 {
    color: #3d5913;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a6320;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info p {
    color: #3d5913;
}

.photo-container {
    position: relative;
    margin: 20px auto 30px;
    width: fit-content;
}

.photo {
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0;
    padding: 0;
}

.bacp {
    max-width: 60%;
    margin: auto;
}

.polaroid {
    background: white;
    padding: 12px 12px 12px 12px;
    box-shadow: 0 4px 15px rgba(61, 89, 19, 0.1);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    display: inline-block;
}

.photo-caption {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: #3d5913;
    text-align: center;
    margin-top: 12px;
    opacity: 0.9;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #3d5913;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    #about .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

footer {
    background: #3d5913;
    color: #f4f7f0;
    padding: 2rem 5%;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 1rem;
    color: #f4f7f0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.footer-links a {
    color: #d4e5c4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    #about .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #f4f7f0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(61, 89, 19, 0.1);
        box-shadow: 0 5px 10px rgba(61, 89, 19, 0.1);
    }

    .nav-menu.active {
        max-height: calc(100vh - 70px);
        z-index: 1001;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(61, 89, 19, 0.05);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        text-align: left;
    }

    nav {
        position: relative;
    }

    .section {
        padding: 100px 5% 40px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    #about .services-grid,
    #services .services-grid {
        grid-template-columns: 1fr;
    }

    #home h1 {
        display: none;
    }
}