/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

/* Header and Navigation */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-image: linear-gradient(-225deg, #DFFFCD 0%, #90F9C4 48%, #39F3BB 100%);
    color: #01796F;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header img{
    height: 120px;
    object-fit: contain;
}

nav {
    display: flex;
    justify-content: center;
    background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
    padding: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: darkgreen;
}

/* Promotional Banner */
.promotional-banner {
    position: relative;
    height: 520px;
    background-image: url("Lucky-Shrub-Logos/garden banner img.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* about section */
.about-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 2rem;
    background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.about-text {
    flex: 1;
    padding-right: 2rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.banner-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #b8e986;
    color: #2c5e3b;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2c5e3b;
    color: #9ce058;
    transform: scale(1.05);
    border-style: 5px solid;
}

/* Services Columns */
.services-container {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: white;
}

.service-column {
    flex-basis: 30%;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-column:hover {
    transform: translateY(-10px);
}

.service-column img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-column h2 {
    color: #2c5e3b;
    margin-bottom: 15px;
}

 /* Contact Styles */
 .contact-header {
    text-align: center;
 }

 .contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px var;
    overflow: hidden;
}

.contact-info, .contact-form {
    flex: 1;
    padding: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #3a7c4f;;
    border-radius: 5px;
    background-color:#f4f6f9;
    color: #333;
}
.contact-form button {
    background-color: #3a7c4f;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #468e49;
}


footer{
    display: flex;
    background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);
}

footer div{
    flex: 1;
    padding: 10px;
}

.fa {
    padding: 20px;
    font-size: 30px;
    width: 55px;
    text-align: center;
    text-decoration: none;
    border-radius: 25%;
    margin-left: 10px;
    margin-top: 20px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-instagram {
    background: #125688;
    color: white;
}
  
.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-pinterest {
    background: #cb2027;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        flex: none;
        width: 100%;
        padding: 1rem 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
    }

    .service-column {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .fa { padding: 10px; font-size: 20px; width: 40px; margin-left: 2.5px; margin-top: 7.5px;}
}
