@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background-color: #f2e8cf;
    margin: 0;
}

header {
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 10vh;
}


header img{
    height: 250%;
    border-radius: 100%;
    width: auto;
    z-index: 20;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

nav a{
    text-decoration: none;
    color: black;  
}

.home{
    height: 45%;
    width: 9%;
    text-align: center;
    align-content: center;
    border: 1px solid black;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.7vh;
    color: black;  
}

.menu{
    height: 45%;
    width: 9%;
    text-align: center;
    align-content: center;
    border: 1px solid black;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.7vh;
    color: black;  
}

.order{
    height: 45%;
    width: 9%;
    text-align: center;
    align-content: center;
    border: 1px solid black;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.7vh;
    color: black;  
}

.contact{
    height: 45%;
    width: 11%;
    text-align: center;
    align-content: center;
    border: 1px solid black;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.7vh;
    color: black;  
}

#active {
    border: 2px solid #a7c957;
}

nav a:hover{
    border: 2px solid #a7c957;
}

.index {
    display: flex;
    height: 80vh;
}

.index #left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 15%;
    background-color: #61a633;
    height: 100%;
    padding: 1%;
}

.footer-text {
    margin-top: auto;
}

.index h1{
    font-family: "Poppins", serif;
    font-size: 2.5vh;
    text-align: center;
    color: #f2e8cf;
}

.index p{
    text-align: center;
    font-size: 1.3vh;
    color: #f2e8cf;
    font-family: "DM Sans", serif;
}

.index #right {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly; 
    align-items: center;
    width: 85%;
    background-image: url("../assets/1.jpg");
    height: 100%;
    background-position-x: center;
    background-position-y: 65%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.index #right #top {
    display: flex;
    flex-direction: column;
    height: 35%; 
    width: 80%;
    background-color: #f2e8cf; 
    color: #333; 
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center; 
    border-radius: 10px; 
    z-index: 10; 
    position: relative;
}

.index #right #top h1, a {
    font-size: 2.5vh;
    font-family: "Poppins", serif;
    color: #61a633;
    margin-bottom: 15px;
}

.index #right #top p {
    font-size: 1.4vh;
    color: #333;
    font-family: "DM Sans", serif;
}

.index #right #bottom {
    height: 30%; 
    width: 80%;
    display: flex; 
    justify-content: space-around; 
    align-items: center; 
}

.index #right #bottom div {
    height: 100%; 
    width: 30%; 
    background-color: #f2e8cf; 
    opacity: 0.7;
    transition: 0.5s;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.index #right #bottom div h2 {
    font-size: 2vh;
    color: #61a633;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
}

.index #right #bottom div p {
    font-size: 1.2vh;
    color: #333;
    font-family: "DM Sans", serif;
    margin-bottom: 15px;
}

.index #right #bottom div a {
    text-decoration: none;
    color: #61a633;
    font-weight: bold;
    font-size: 1.5vh;
    border: 1px solid #61a633;
    padding: 8px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.index #right #bottom div a:hover {
    background-color: #61a633;
    color: white;
    border-color: white;
}

.index #right #bottom #first:hover,
.index #right #bottom #second:hover,
.index #right #bottom #third:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.index #right #bottom #first:hover {
    height: 102%; 
    width: 32%; 
    background-color: #f2e8cf;
    opacity: 1;
    transition: 0.5s;
}

.index #right #bottom #second:hover {
    height: 102%; 
    width: 32%; 
    background-color: #f2e8cf;
    opacity: 1;
    transition: 0.5s;
}

.index #right #bottom #third:hover {
    height: 102%; 
    width: 32%; 
    background-color: #f2e8cf;
    opacity: 1;
    transition: 0.5s;
}

footer {
    background-color: #ffffff;
    color: #000000; 
    padding: 1%; 
    height: 10vh;   
    text-align: center; 
}

.footer-content {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    max-width: 100%; 
}

.terms-policy p{
    color: #000000; 
    margin: 0 10px;
    font-family: "DM Sans", serif;
    font-size: 1.5vh;
}

.contact-info a, p{
    text-decoration: none; 
    color: #000000; 
    font-family: "DM Sans", serif;
    font-size: 1.5vh    ;
    line-height: 1.4vh;
}

.contact-info p {
    margin: 5px 0; 
}

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
}

#empty {
    height: 10vh;
}

.menu-content .content-menu {
    display: flex;
    justify-content: space-around;
    height: 70vh;
}

.menu-content #Frappe {
    background-color: white;
    height: 95%;
    width: 17%;
    transition: 0.5s;
    opacity: 0.7;
}

.menu-content #Frappe:hover {
    background-color: whitesmoke;
    height: 98.5%;
    width: 20%;
    transition: 0.5s;
    opacity: 1;
}

.menu-content #Tea {
    background-color: white;
    height: 95%;
    width: 17%;
    transition: 0.5s;
    opacity: 0.7;
}

.menu-content #Tea:hover {
    background-color: whitesmoke;
    height: 98.5%;
    width: 20%;
    transition: 0.5s;
    opacity: 1;
}

.menu-content #Choco-Coffee {
    background-color: white;
    height: 95%;
    width: 17%;
    transition: 0.5s;
    opacity: 0.7;
}

.menu-content #Choco-Coffee:hover {
    background-color: whitesmoke;
    height: 98.5%;
    width: 20%;
    transition: 0.5s;
    opacity: 1;
}

.menu-content #Cheesecake {
    background-color: white;
    height: 95%;
    width: 17%;
    transition: 0.5s;
    opacity: 0.7;
}

.menu-content #Cheesecake:hover {
    background-color: whitesmoke;
    height: 98.5%;
    width: 20%;
    transition: 0.5s;
    opacity: 1;
}

.menu-content #Snacks {
    background-color: white;
    height: 95%;
    width: 17%;
    transition: 0.5s;
    opacity: 0.7;
}

.menu-content #Snacks:hover {
    background-color: whitesmoke;
    height: 98.5%;
    width: 20%;
    transition: 0.5s;
    opacity: 1;
}

.order-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
}

.content-order {
    display: flex;
    justify-content: space-around;
    height: 70vh;
}

#For-Delivery {
    background-color: white;
    height: 85%;
    width: 27%;
    transition: 0.5s;
    opacity: 0.7;
}

#For-Delivery:hover {
    background-color: whitesmoke;
    height: 90%;
    width: 30%;
    transition: 0.5s;
    opacity: 1;
}

#For-Pickup {
    background-color: white;
    height: 70%;
    width: 27%;
    transition: 0.5s;
    opacity: 0.7;
}

#For-Pickup:hover {
    background-color: whitesmoke;
    height: 75%;
    width: 30%;
    transition: 0.5s;
    opacity: 1;
}

#Schedule {
    background-color: white;
    height: 80%;
    width: 27%;
    transition: 0.5s;
    opacity: 0.7;
}

#Schedule:hover {
    background-color: whitesmoke;
    height: 85%;
    width: 30%;
    transition: 0.5s;
    opacity: 1;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
}

.content-contact {
    display: flex;
    justify-content: space-around;
    height: 70vh;
}

.content-contact > div {
    width: 45%;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

#Support {
    background-color: white;
    height: 80%;
    width: 20%;
    transition: 0.5s;
    opacity: 0.7;
}

#Support:hover {
    background-color: whitesmoke;
    height: 81%;
    width: 21%;
    transition: 0.5s;
    opacity: 1;
}

#Partnership {
    background-color: white;
    height: 80%;
    width: 20%;
    transition: 0.5s;
    opacity: 0.7;
}

#Partnership:hover {
    background-color: whitesmoke;
    height: 81%;
    width: 21%;
    transition: 0.5s;
    opacity: 1;
}

#Follow {
    background-color: white;
    height: 80%;
    width: 20%;
    transition: 0.5s;
    opacity: 0.7;
}

#Follow:hover {
    background-color: whitesmoke;
    height: 81%;
    width: 21%;
    transition: 0.5s;
    opacity: 1;
}

#Visit {
    background-color: white;
    height: 80%;
    width: 20%;
    transition: 0.5s;
    opacity: 0.7;
}

#Visit:hover {
    background-color: whitesmoke;
    height: 81%;
    width: 21%;
    transition: 0.5s;
    opacity: 1;
}

.content-contact h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .content-contact p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
  }
  
  .content-contact a {
    color: #61a633;
    text-decoration: none;
    font-weight: bold;
  }
  
  .content-contact a:hover {
    text-decoration: underline;
  }
  
  .content-contact #Follow p a {
    font-size: 1.2rem;
  }
  
  .content-contact #Visit p {
    font-size: 1.2rem;
  }

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
  }
  
  .menu-category {
    background-color: #f2e8cf;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
  }
  
  .menu-category h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.2vh;
    color: #61a633;
    margin-bottom: 15px;
  }
  
  .menu-category ul {
    list-style-type: none;
    padding: 0;
  }
  
  .menu-category li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .menu-category img {
    width: 40px; 
    height: 40px;
    margin-right: 10px;
    border-radius: 5px;
  }
  
  .menu-category li p {
    font-family: "DM Sans", serif;
    font-size: 1.5vh;
    color: #333;
  }
  
  .menu-category li:hover {
    background-color: #e0f4d3;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .menu-category li:hover p {
    color: #61a633;
  }
  
  @media (max-width: 768px) {
    .menu-category ul {
      padding-left: 20px;
    }
  
    .menu-category li {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .menu-category img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }
  }

  .order-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  
  .order-option {
    background-color: #f2e8cf;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
  }
  
  .order-option h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.2vh;
    color: #61a633;
    margin-bottom: 20px;
  }
  
  .order-form {
    display: flex;
    flex-direction: column;
  }
  
  .order-form label {
    font-family: "DM Sans", serif;
    font-size: 1.5vh;
    margin-bottom: 8px;
  }
  
  .order-form input, .order-form textarea {
    padding: 10px;
    font-size: 1.5vh;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .order-form textarea {
    resize: vertical;
  }
  
  .order-btn {
    padding: 12px 20px;
    font-size: 1.5vh;
    background-color: #61a633;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .order-btn:hover {
    background-color: #4a8c27;
  }
  
  @media (max-width: 768px) {
    .order-option {
      padding: 15px;
    }
  
    .order-form input, .order-form textarea {
      font-size: 1.3vh;
    }
  
    .order-btn {
      font-size: 1.3vh;
    }
  }
