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

/* Main body styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header styles */
header {
    background: linear-gradient(to bottom, #000000, #004d00);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header-content {
    width: 96%;
    margin: 30px auto;
    max-width: 1500px;
}

/* Navigation styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, #000000, #004d00);
    padding: 0 40px;
    min-height: 70px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ecf9dc;
    letter-spacing: 1px;
}

/* Hamburger menu button - hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Hide menu toggle on larger screens */
@media only screen and (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #ecf9dc;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 27px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ecf9dc;
    text-decoration: none;
    font-size: 1.09rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: rgba(236, 249, 220, 0.15);
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Main content styles */
main {
    width: 80%;
    margin: 20px auto;
    max-width: 1200px;
    flex: 1;
}

/* Card styles */
.card {
    background-color: #222;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

/* Container styles */
.container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Section Styles */
section {
    background: linear-gradient(to bottom, #000000, #004d00);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 20px;
}

/* Headings */
h2, h3 {
    background-color: transparent;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

/* Description and Price Styling */
p {
    background-color: transparent;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    border-left: 3px solid #006400;
    padding: 10px;
    margin: 10px 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Footer styles */
footer {
    background: linear-gradient(to bottom, #000000, #004d00);
    color: white;
    text-align: center;
    padding: 24px 0;
    margin-top: 20px;
}

footer p {
    border-left: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service {
    background-color: #222;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s;
}

.service:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

/* Center the Google contact form */
.googleform {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    width: 100%;
}

/* Services list styling */
.services-list {
    list-style: none;
    padding: 0;
}

/* Responsive design for tablets and smaller devices */
@media only screen and (max-width: 768px) {
    .header-content, main, .container {
        width: 95%;
        margin: 0 auto;
    }
    
    /* Mobile Navigation */
    .navbar {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        background: linear-gradient(to bottom, #000000, #004d00);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-radius: 0;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        display: none;
    }
    
    .nav-actions.active {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .card, section {
        padding: 20px;
    }
}

/* Responsive design for mobile phones */
@media only screen and (max-width: 480px) {
    .header-content, main, .container {
        width: 100%;
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .card, section {
        padding: 15px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}
