@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

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

body {
    font-family: Arial, sans-serif;
}


:root {
    --bg-color: #F8F7F1;
    --primary-color: #4BAF47;
    --text-color: #EEC044;
    --main-fsize: 10px;
    --text-white: white;
    --text-black: black;
    --para-color: #9C9D98;
    --cursive-font: "Pacifico", cursive;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    height: 12vh;
    background-color: var(--bg-color);
    color: var(--text-black);
    position: fixed;
    top: 0px;
    margin-bottom: 5px;
    z-index: 9;

}

.logo a img {
  height: 3rem;
    filter: drop-shadow(1px 1px 2px var(--text-color));
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
}

.icons {
    display: flex;
    align-items: center;
}

.icons a {
    text-decoration: none;
    color: var(--text-black);
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.icons a:hover {
    color: var(--text-color);
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
p{
    color: var(--para-color);
}

section{
    width: 100%;
    height: 100vh;
    padding: 5rem 6rem;
    border-bottom: 4px solid var(--primary-color);
}
/* Home Section */
#home{
    background: url(./images/home/home-image.jpg);
    background-size: cover;
    margin-top: 5rem;
}
.home-text{
    width: 60%;
    padding: 4rem;
    color: var(--text-white);
}
.home-text h5{
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: normal;
}
.pacifico-regular {
    font-family: var(--cursive-font);
    font-weight: 400;
    /* font-style: normal; */
    font-size: 6vw;
    line-height: 5.8rem;
    margin-top: 1rem;
   margin-bottom: 2.8rem;
  }
  .home-text p{
    font-size: 1rem;
    padding: 1rem 0;
    color: var(--para-color);
  }
  .discover-btn{
    margin: 1rem 0;
    font-size: 1rem;
    padding: 1rem 2.8rem;
    background-color: var(--primary-color);
    border: none;
    border-radius: .5rem;
    color: var(--text-white);
  }
  .leaf-branch{
    position: absolute;
    padding: 1rem 2rem;
     height: 12vh ;
  }

  /* About */
  #about .cards{
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
   justify-content: center;
   gap: 4rem;
   position: relative;
   top: -4rem;
  }
  #about .card{
    width: 20vw;
    height: 30vh;
    box-shadow: 0px 0px 8px black;
    padding: 1rem;
     background-color: white;
     border-radius: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
  }
  #about .card h3{
    font-family: var(--cursive-font);
    color: var(--text-color);
    font-size: 1.2vw;
  }
  #about .card h2{
    text-align: center;
    padding: .2rem;
    font-size: 1.5vw;
  }
  #about .card img{
    height: 10vh;
  }
  #about{
    height: auto;
    padding-bottom: 2rem;
  }

 .about-main{
    margin-top: 5rem;
display: flex;
align-items: center;
width: 100%;
 }
 .images{
    width: 50%;
    position: relative;
 }
 .main-image{
    height: 50vh;
    border-radius: 50%;
    margin-right: 5rem;
    float: right;

 }
 .main-image2{
    height: 30vh;
    position: absolute;
    bottom: 5%;
    border-radius: 50%;
    border: .5rem solid white;
    left: 20%;
 }
 .about-info{
    width: 50%;
 }
 #about-intro {
    color: var(--text-color);
    font-family: var(--cursive-font);
 }
 .about-info h1{
    font-size: 2.5rem;
 }
 .about-info h3{
    color: var(--primary-color);
 }
 .about-icon{
    display: flex;
 }
 .about-icon div{
    width: 40%;
    display: flex;
    align-items: center;
 }
 .about-icon div h4{
    font-size: 1.2rem;
    padding: 0.5rem 0;
 }
 .about-icon div img{
    height: 3rem;
 }

 /* Services */
 #services{
    background: url(./images/services/services-bg.png);
    background-size: cover;
    background-position: center;
    height: auto;

 }
 .section-heading{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
 }
 .section-heading h3{
    font-family: var(--cursive-font);
    color: var(--text-color);
    font-size: 1.5rem;
 }
 .section-heading h1{
    font-size: 3rem;
    padding-bottom: 1rem;
 }
 .products{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
 }
 .product-card{
    width: 20rem;
    height: 25rem;
    background: white;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
 }
 .product-card:hover{
    box-shadow: 0px 0px 10px var(--para-color);
 }
 .product-icon{
   padding: 1.5rem;
   position: absolute;
   background-color: var(--primary-color);
   color: var(--text-white);
   font-size: 1.5rem;
   bottom: 8rem;
   border-radius: .5rem;
 }
 .product-text{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
 }
 .product-text h4 {
font-size: 1.8rem;
padding: 1rem 0;
 }

 /* Projects Section */
 #projects{
   height: auto;
 }
 .projects-images{
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 2rem;
 }
 .image{
   height: 60vh;
   width: 20vw;
   overflow: hidden;
   border-radius: 1rem;
   position: relative;
 }
 .image img{
   height: 60vh;
   width: 20vw;
   object-fit: cover;
   object-position: center;
 }
 .image-text{
   position: absolute;
   bottom: 1.5rem;
   color: var(--text-white);
   width: 50%;
   left: 1rem;
   opacity: 0;
   transition: opacity 0.2s ease-in;
 }
 .image:hover .image-text{
   opacity: 1;
 }

 /* Shop Sections */
 #shop{
   height: auto;
   display: flex;
   align-items: center;
 }
 .shop-image{
   width: 60%;
   height: auto; 
 }
 .shop-img{
   width: 40vw;
   height: 80vh;
   object-fit: cover;
   float: right;
   margin-right: 2rem;
 }

 .shop-info{
   width: 40%;
   float: left;
 }

 /* News */
 #news {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   padding: 20px;
   height: auto;
   padding-top: 5rem;
}

#news .card {
   background-color: white;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   overflow: hidden;
   width: 300px;
   height: 450px;
   transition: transform 0.3s ease;
   position: relative;
}

#news  .card:hover {
   transform: translateY(-10px);
}

#news  .card img {
   width: 100%;
   height: auto;
}

.card-content {
   padding: 15px;
   text-align: center;
   position: absolute;
   bottom: 2rem;
   background: white;
}

.card-date {
   background-color: #29a744;
   color: white;
   display: inline-block;
   padding: 5px 10px;
   border-radius: 5px;
   margin-bottom: 10px;
   font-size: 1.5rem;
   position: relative;
   top: -2rem;
}

.card-author {
   display: flex;
   justify-content: center;
   gap: 10px;
   font-size: 14px;
   color: #888;
   margin-bottom: 10px;
}

.card-author span::before {
   content: "•";
   margin-right: 5px;
   color: #fbc02d;
}

.card-author span:first-child::before {
   content: "";
   margin-right: 0;
}

.card h4 {
   font-size: 18px;
   color: #333;
   margin: 0;
   line-height: 1.4;
}

/* Contact Form Section */
#contact {
   width: 100%;
   /* max-width: 500px; */
   height: auto;
   padding: 20px;
   padding-top: 5rem;
   background-color: #fff;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   border-radius: 8px;
   display: flex;
   flex-direction: column;
   align-items: center;
}


.contact-form label {
   margin-bottom: 8px;
   display: block;
   font-size: 14px;
   font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
   width: 100%;
   padding: 10px;
   margin-bottom: 15px;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 14px;
}

.contact-form textarea {
   resize: vertical;
   height: 100px;
}

.contact-form button {
   width: 50%;
   padding: 12px;
   background-color: var(--primary-color);
   color: white;
   border: none;
   border-radius: 4px;
   font-size: 16px;
   cursor: pointer;
}

.contact-form button:hover {
   background-color: #45a049;
}

/* Footer CSS */
.footer {
   background-color: var(--bg-color);
   padding: 50px 20px;
   color: black;
}

.footer .container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 20px;
}

.footer-section {
   flex: 1;
   min-width: 200px;
}

.footer-section.about {
   max-width: 300px;
}

.footer-section.about .footer-logo {
   width: 200px;
   margin-bottom: 15px;
   filter: drop-shadow(1px 1px 2px var(--text-color));
}

.footer-section h3 {
   color: black;
   margin-bottom: 20px;
   position: relative;
}
.social-icons a i{
font-size: 2rem;
color: var(--primary-color);
padding: 0 .5rem;
}
.footer-section h3::after {
   content: '';
   position: absolute;
   width: 50px;
   height: 3px;
   background-color: #4CAF50;
   bottom: -10px;
   left: 0;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 10px;
}

.footer-section ul li a {
   color: var(--text-black);
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
   color: var(--primary-color);
}

.footer-section.news ul li span {
   display: block;
   color: #FFD700;
   font-size: 14px;
}

.footer-section.contact p {
   margin-bottom: 10px;
   color: var(--text-black);
}

.footer-section.contact p i {
   color: #4CAF50;
   margin-right: 10px;
}

.newsletter-form {
   display: flex;
   margin-top: 20px;
}

.newsletter-form input[type="email"] {
   padding: 10px;
   border: none;
   border-radius: 4px 0 0 4px;
   width: 80%;
}

.newsletter-form button {
   padding: 10px;
   background-color: #4CAF50;
   border: none;
   border-radius: 0 4px 4px 0;
   cursor: pointer;
   color: #ffffff;
   transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
   background-color: var(--text-color);
}

.footer-bottom {
   text-align: center;
   margin-top: 20px;
   padding-top: 20px;
   border-top: 1px solid #333;
}

.footer-bottom p {
   color: #b3b3b3;
}

.footer-links a {
   color: #514c4c;
   text-decoration: none;
   margin: 0 10px;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: var(--primary-color);
}
