html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #1e293b;
    font-size: 2.2rem;
        margin-bottom: 40px;
}

h3 {
    font-weight: 500;
    color: #1e293b;
}

p {
    font-family: Helvetica, Arial, sans-serif;
        font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 300;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    padding-right: 40px;
    background-color: #ffffff;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#logo {
    font-weight: bold;
    font-size: 1.5rem;
    padding-left: 20px;
}

#logo img {
    max-height: 90px;
    height: auto;
}

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

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #445b4a;
        border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

nav a:hover,
nav a.active {
    border-color: #0d5c3a;
}

#hamburger-menu {
    display: none;
}
main {
    padding: 150px 20px 20px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

#home h1 {
    color: #2a4736;
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 300;
}

#hero-image {
    width: 100%;
    height: auto;
    background-color: #e9ecef;
    margin-top: 10px;
    overflow: hidden;
    background-size: cover;
        background-position: center;
        border-radius: 8px;
}

#hero-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
        opacity: 1;
    }
    
    #hero-image img.fade {
        opacity: 0;
}

#specialized-products {
    margin-top: 40px;
}

#specialized-products h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.product-col {
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-col img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-col:hover img {
    transform: scale(1.05);
}

.product-col h3,
.product-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 700;
    text-align: left;
}

.product-col h4 {
    margin-top: 45px;
}

.product-col p {
    font-size: 0.99rem;
    color: #64748b;
    text-align: left;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
                                                                #home h1 {
                                                                    font-size: 28px;
                                                                }
                                
                                                                h2 {
                                                                    font-size: 1.8rem;
                                                                }
                                
                                                                /* Hamburger Menu Styles */
                                                                #hamburger-menu {
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    justify-content: space-around;
                                                                    width: 30px;
                                                                    height: 25px;
                                                                    background: transparent;
                                                                    border: none;
                                                                    cursor: pointer;
                                                                    padding: 0;
                                                                    z-index: 2000;
                                                                }
                                
                                                                #hamburger-menu span {
                                                                    width: 30px;
                                                                    height: 3px;
                                                                    background-color: #445b4a;
                                                                    border-radius: 10px;
                                                                    transition: all 0.3s linear;
                                                                    position: relative;
                                                                    transform-origin: 1px;
                                                                }
                                
                                                                #hamburger-menu.active span:nth-child(1) {
                                                                    transform: rotate(45deg);
                                                                }
                                
                                                                #hamburger-menu.active span:nth-child(2) {
                                                                    opacity: 0;
                                                                }
                                
                                                                #hamburger-menu.active span:nth-child(3) {
                                                                    transform: rotate(-45deg);
                                                                }
                                
                                                                nav {
                                                                    display: none;
                                                                    position: fixed;
                                                                    top: 0;
                                                                    left: 0;
                                                                    width: 100%;
                                                                    height: 100vh;
                                                                    background-color: #ffffff;
                                                                    z-index: 1500;
                                                                    justify-content: center;
                                                                    align-items: center;
                                                                    flex-direction: column;
                                                                    opacity: 0;
                                                                    transition: opacity 0.3s ease;
                                                                    pointer-events: none;
                                                                }
                                
                                                                nav.open {
                                                                    display: flex;
                                                                    opacity: 1;
                                                                    pointer-events: auto;
                                                                }
                                
                                                                nav ul {
                                                                    flex-direction: column;
                                                                    align-items: center;
                                                                }
                                
                                                                nav li {
                                                                    margin: 20px 0;
                                                                    margin-left: 0;
                                                                }
                                
                                                                nav a {
                                                                    font-size: 1.5rem;
                                                                    color: #445b4a;
                                                                }
                                
                                                                .fade-in-element {
                                                                    opacity: 0;
                                                                    -webkit-transform: translateZ(0);
                                                                    transform: translateZ(0);
                                                                    -webkit-transition: opacity 1s ease-out;
                                                                    transition: opacity 1s ease-out;
                                                                    visibility: visible;
                                                                }
                                
                                                                .fade-in-element.is-visible {
                                                                    opacity: 1;
                                                                }
}

.contact-highlight {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #2a4736;
    }
    
    .highlight-green {
        color: rgb(0, 110, 65);
        font-weight: bold;
    }
    
    .contact-highlight a {
        color: rgb(0, 110, 65) !important;
        text-decoration: underline !important;
    }
    
    .highlight-green a {
        color: rgb(0, 110, 65) !important;
        text-decoration: underline !important;
    }
    
    #contact p {
        padding: 0 20px;
}

#contact button,
#contact .instagram-btn {
    background-color: rgb(0, 110, 65);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
}

#contact button:hover {
    background-color: #0f4410;
}

header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

#budget-section {
    margin: 60px auto 0 auto;
    text-align: left;
    padding: 20px 0;
}

.budget-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
#budget-section h2 {
    display: block !important;
    text-align: center !important;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 300;
    width: 100%;
}

#budget-section p {
    display: block !important;
    text-align: center !important;
        color: #475569;
        margin-bottom: 40px;
        font-size: 1.1rem;
    width: 100%;
    padding: 0 20px;
}



#budget-section button {
    display: block;
    width: 120px;
    margin: 30px auto 0 auto;
    background-color: #0d5c3a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

#budget-section button:hover {
    background-color: #0a4d30;
}
/* Fade-in animation with high specificity */
.product-col img.fade-in-element {
    opacity: 0;
    transform: none !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
    visibility: visible;
}

.product-col img.fade-in-element.is-visible {
    opacity: 1;
    transform: none !important;
}

/* Ensure fast hover effect */
.product-col:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}