@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}


h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #827b74;
}

section {
    padding: 60px 40px;
}

button {
    cursor: pointer;
    background: 0px 0px;
    border: none;
}


img {
    width: 100%;
}


/* 
==================================================
            HOME PAGE CSS start
================================================= */

/*=======  Hero Section Start =======*/

.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-image 1s ease-in-out;
}

.hero-section::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    text-align: center;
    padding: 10px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}


.hero-icon {
    width: 200px;
    /* margin-bottom: 20px; */
}

.hero-heading {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-button {
    background-color: #FF7F50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #FF6347;
}

/*=======  Hero Section End =======*/

.about-us {
    display: flex;
    gap: 40px;
}

.about-us-img,
.about-us-content {
    width: 50%;
}

.about-us-content {
    padding: 40px 10px;
}

.about-us-img img {
    max-height: 600px;
    object-fit: cover;
    height: 600px;
}

.about-us-content h3 {
    font-size: 20px;
    color: #FF7F50;
    margin-bottom: 10px;
}

.about-us-content h1 {
    font-size: 40px;
    color: #26201b;
    margin-bottom: 20px;
}

.about-us-content p {
    margin-bottom: 10px;
}

.about-us-content button {
    margin-top: 20px;
}

/* classes section start */

.section-main-heading-container{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-main-heading-container h4{
   font-size: 18px;
   color: #e67e22;
}

.section-main-heading-container h1{
    font-size: 50px;
    color: #26201b;
    margin-bottom: 20px;
 }

 .section-main-heading-container img{
   width: 70px;
 }

.class-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    margin-top: 50px;
}
.class-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.class-card img {
    width: 100%;
    height: auto;
}
.class-content {
    padding: 5px 15px;
}
.class-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
}
.class-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.class-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.class-info span {
    font-size: 14px;
    color: #999;
}
.class-info .price {
    color: #e74c3c;
    font-weight: bold;
}
.learn-more {
    color: #e67e22;
    margin: 10px 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

.section-main-btn{
    margin-top: 50px;
    text-align: center;
}

.appointment-booking{
    padding: 50px 0px;
}

.appointment-booking-container{
    background-image: url(../images/promo-banner.jpg);
    padding: 0px 100px;
    height: 600px;
    display: flex;
    /* justify-content: space-around; */
    /* align-items: center; */
    flex-direction: column;
    place-items: flex-end;
    align-items: center;
    justify-content: center;
}

.appointment-booking-container div:nth-child(1){
    /* max-width: 660px; */
    text-align: center;
}

.appointment-booking-container div:nth-child(1) h1{
    font-size: 36px;
    color: #26201b;
    margin-bottom: 20px;
}

.appointment-booking-container div:nth-child(1) p{
    
line-height: 20px;
    
margin-bottom: 30px;
}


/* team section start */

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 50px 10%;
  }
  
  .carousel-slide {
    display: none; 
    align-items: center;
    transition: opacity 0.5s ease-in-out;
    margin-top: 100px;
  }
  
  .carousel-slide.active {
    display: flex; 
    opacity: 1;
  }
  
  .team-member {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  
  .team-image {
    border-radius: 10px;
    margin-right: 20px;
    width: 50%;
  }
  
  .team-content {
    width: 50%;
  }
  
  .team-content h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .team-content p {
    color: #666;
    margin: 10px 0;
    line-height: 1.5;
  }
  
  .master-chefs {
    margin-top: 20px;
    color: #d84315;
    font-weight: 600;
  }
  
  

  .blog-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .blog-card .class-content {
    text-align: center;
    height: 200px; 
    overflow-y: auto; 
    padding: 10px;
    box-sizing: border-box;
  }
  
  .blog-card .class-content h4{
    font-size: 14px;
    /* color: rgba(128, 128, 128, 0.384); */
    font-weight: 600;
    margin-bottom: 5px;
    color: #ff6347;
  }

  .blog-card .class-content h3{
    font-size: 20px;
    color: #26201b;
  }

  .blog-card .class-content a{
    font-size: 14px;
    color: #e67e22;
    font-weight: 600;
  }


  /* Testimonial section Start */

  .testimonial-container {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  
  .testimonial-slide {
    display: flex;
    padding: 50px;
    flex: 1;
    min-width: 100%;
    transition: transform 1s ease-in-out;
  }
  
  .testimonial-text {
    width: 50%;
    padding: 20px;
  }
  
  .testimonial-text h3 {
    color: #e67e22;
    font-size: 1.2rem;
  }
  
  .testimonial-text h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .testimonial-text p {
    margin-bottom: 10px;
  }
  
  .testimonial-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dots-container {
    text-align: center;
    padding: 0px 0px 50px;
  }
  
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: #e67e22;
  }

  .student-profeshion{
    margin-top: 20px;
  }

  .student-profeshion h3{
   color: #e67e22;
  }

  /* Contact us section start */

  .contact-section {
    display: flex;
    gap: 50px;
    background-color: #fff;
    padding: 50px 10%;
}

.map {
    width: 50%;
}

.contact-info {
    width: 50%;
    padding: 30px;
    color: #333;
}

.contact-info h2 {
    font-size: 36px;
    color: #26201b;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    font-size: 12px;
    color: #ffffff;
    padding: 10px;
    border-radius: 50%;
    background-color: #e67d22cc;
    margin-right: 15px;
}

.contact-text h3 {
    font-size: 1.1em;
    color: #333;
    margin: 0;
}

.contact-text p {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 0;
}


/* Slider section Start */

  .slider-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}
.slider-track {
    display: flex;
    animation: slide 20s linear infinite;
}
.slider-track img {
    width: 200px;
    height: 180px;
    object-fit: cover;
}


@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* 
======================================================
      ABOUT PAGE CSS :start
====================================================== */

.banner-section-wrapper {
    background-image: url(../images/bg-all.jpg);
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; /* Added this line */
}

.banner-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Changed from 350px to 100% to cover the whole section */
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
    z-index: 1;
}


.banner-section-wrapper .banner-section-text{
    text-align: center;
    z-index: 2;
}

.banner-section-wrapper .banner-section-text p{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.banner-section-wrapper .banner-section-text p a{
    color: #e67e22;
    margin-right: 5px;
}

.banner-section-wrapper .banner-section-text h1{
    font-size: 50px;
    color: #fff;
}

/* our story section start */

.our-story-section-wrapper{
    background: url('../images/bg1.jpg') center/cover no-repeat;
}

.our-story-section-wrapper h1{
    color: #fff;
}

.our-story-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.content-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    max-width: 600px;
    width: 90%;
    /* background-color: gray; */
    margin: auto;
}

.year-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    background-color: #000;
    padding: 10px;
    border-radius: 30px;
}

.year-btn {
    /* background-color: #e6735b; */
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.year-btn.active {
    background-color: #ff8a5c;
}

h2 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}

.year-content {
    display: none;
    font-size: 16px;
    line-height: 1.5;
    color: gray;
}

.year-content[data-year="1974"] {
    display: block; 
}

/* Experience section start */

.experience-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center; 
    max-width: 800px;
    margin: 100px auto 0px;
}


.experience-item {
    text-align: center;
}

.circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #f57c42;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
}

.experience-section p {
    margin-top: 10px;
    color: #666;
}

/* 
==========================================================
         SERVICE PAGE CSS START
========================================================== */


.our-services-section-wrapper{
    display: flex;
    gap: 30px;
}

.our-services-content-wrapper{
    text-align: left;
    width: 70%;
    padding: 70px 0px;
}

.our-services-content-wrapper p{
   margin-top: 30px;
}

.images-wrapper img{
    max-width: 600px;
}

.why-chose-us .our-services-content-wrapper{
    width: 45%;
}

.why-chose-us-images{
    width: 50%;
}

.grid-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust minmax values as needed */
    gap: 20px; /* Space between grid items */
}

.grid-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.grid-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.grid-item p {
    font-size: 14px;
    color: #666;
}

/* 
=============================================================
       CONTACT PAGE CSS START
============================================================= */

.contact-form-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    margin: 100px auto;
  }
  
  #contactForm {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form-input, .contact-form-textarea {
    border: 1px solid #cccccce0; /* Gray border */
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f4f0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s; /* Smooth transition */
  }
  
  .contact-form-input:focus, .contact-form-textarea:focus {
    border-color: #ff7f5c; /* Orange border on focus */
  }
  
  .contact-form-textarea {
    border-radius: 20px;
    resize: none;
    height: 150px;
  }
  
  .contact-form-button {
    background-color: #ffa382;
    border: none;
    border-radius: 30px;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .contact-form-button:hover {
    background-color: #ff7f5cd3;
  }
  
  .contact-form-thankYouMessage {
    color: green;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
  }
  
  .contact-form-hidden {
    display: none;
  }


  
/* 
  ==========================================

  PRIVACY POLICY AND TERM AND CONDITION

  ==========================================
   */

   .privicy_content_section,
   .term_condition_section {
     padding: 70px 50px;
   }
   
   .privicy_content_section p,
   .term_condition_section p {
     margin: 5px 0px;
   }
   
   .privicy_content_section ul,
   .term_condition_section ul {
     margin-left: 30px;
     list-style: disc;
   }


/* 
==============================================================================
==============================================================================
          RESPONSIVE MEDIA QUERRY 
============================================================================== */


@media screen and (max-width: 992px) {
    .hero-content {
        max-width: 700px;
    }

    .hero-heading {
        font-size: 50px;
    }

    .hero-text {
        font-size: 18px;
    }

    .about-us {
        flex-direction: column;
    }

    .about-us-img,
    .about-us-content {
        width: 100%;
    }

    .about-us-content {
      text-align: center;
    }

    .appointment-booking-container{
       flex-direction: column;
    }

    .appointment-booking-container {
        padding: 0px
    }

    .team-member {
       
        flex-direction: column;
      }
      
      .team-image {
       width: 100%;
      }
      
      .team-content {
        width: 100%;
      }

      .contact-section {
        flex-direction: column;
    }

    .contact-section .map,
    .contact-section .contact-info{
        width: 100%;
    }

    .our-services-section-wrapper{
        flex-direction: column;
    }
    
    .our-services-content-wrapper{
       width: 100%;
    }

    .images-wrapper{
        text-align: center;
    }

    .images-wrapper img{
        max-width: 500px;

    }

    .why-chose-us .our-services-content-wrapper{
        width: 100%;
    }
    
    .why-chose-us-images{
        width: 100%;
    }

    .grid-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 2fr)); /* Adjust minmax values as needed */
    }

}



@media screen and (max-width: 768px) {
    .hero-content {
        max-width: 600px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .about-us-content h3{
        font-size: 20px;

    }

    .about-us-content h1{
        font-size: 30px;
    }

    .appointment-booking {
       padding: 50px 0px;
    }

    .testimonial-slide {
       flex-direction: column;
      }

      .testimonial-text,
      .testimonial-image{
        width: 100%;
        text-align: center;
      }
}




@media screen and (max-width: 576px) {

    section {
        padding: 60px 10px;
    }

    p {
       line-height: 25px;
    }

    .hero-button{
        padding: 10px 20px;
    }

    .hero-content {
        max-width: 400px;
    }

    .hero-heading {
        font-size: 30px;
    }

    .hero-text {
        font-size: 16px;
    }

    .about-us-content h3{
        font-size: 18px;

    }

    .about-us-content h1{
        font-size: 24px;
    }

    .appointment-booking-container div:nth-child(1) h1{
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-main-heading-container h1{
        font-size: 36px;
    }

    .class-container{
        padding: 0px;
    }

    .carousel-container{
        padding: 50px 10px;
    }

    .team-image{
        padding: 10px;
        margin-right: 0px;
    }

    .testimonial-slide{
        padding: 50px 10px;
    }

    .blog-card{
        padding: 40px 10px;
    }

    .contact-section{
        padding: 50px 10px;
    }

    .contact-info{
        padding: 30px 0px;
    }

    .contact-info h2{
        font-size: 32px;
    }

    
}

@media screen and (max-width: 420px) {

    .year-buttons{
        flex-direction: column;
    }
}