@import url('https://fonts.googleapis.com/css2?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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* .root{} */
body{
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #a47b41;
    text-align: center;
    }

    
 /** NAV BAR */

header {
    position:sticky;
    top: 0;
    background: #ffccd5;
    z-index: 1000;
}
.brandName{
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
        }
  

.navbar {
    display: flex;
    background: white;
    border-bottom: 2px solid #d4a373;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    padding: 25px 40px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #a67c52;
    font-weight: bold;
    padding: 10px;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    cursor: pointer;
}

.logo h1 {
        font-size: 2.5em;
        font-family: 'Dancing Script', cursive;
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 200px;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu a {
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Search & Order Button */
.search-btn a, .order-btn a {
    padding: 8px 15px;
    border: 2px solid #d4a373;
    border-radius: 20px;
}
.order-btn a {
    background: #f4c2c2;
}


/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        width: 100%;
        display: none; /* Initially hidden, toggle with JS if needed */
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        padding: 12px;
        display: block;
    }

    .dropdown-menu {
        position: relative;
        width: 100%;
    }

    .search-btn a, .order-btn a {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Hamburger menu (optional) */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
}
  
/** slider **/


.slider-Container{
    position: relative;
    margin-top: 130px ;
    /* transform:translate(-50%,-50%); */
    width: 100%;
    height: 610px;
    box-shadow: 0 30px 50px #dbdbdb;
    overflow: hidden;

    
}
.slider-overlay{
    position: absolute;
    /* height:50%; */
    width:50%;
    background: linear-gradient( to right,rgb(63, 46, 24),transparent);
    left:0;
    bottom:0;
    top:0;
    color: white;
    /* padding: 20px; */

    /* border-radius: 5px; */

}
.slider-Container .slider .slider-item{
    width: 200px;
    height:300px;
    position: absolute;
    top:50%;
    transform: translate(0,-50%);
    border-radius: 20px;
    /* box-shadow: 0 30px 50px  #505050; */
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    
}

.slider .slider-item:nth-child(1),
.slider .slider-item:nth-child(2){
    top:0;
    left: 0;
    transform: translate(0,0);
    border-radius: 0;
    width: 100%;
    height: 100%;

    
}
.slider .slider-item:nth-child(3){
    left: 50%;
}
.slider .slider-item:nth-child(4){
    left: calc(50% + 220px );
}
.slider .slider-item:nth-child(5){
    left: calc(50% + 440px );
}
/** here n=0,1 ,2 ,3 */
.slider .slider-item:nth-child(n+6){
        left: calc(50% + 660px) ;
        opacity: 0; 
}

.slider-item .content{
    position: absolute;
    top:50%;
    left: 100px;
    width: 300px;
    text-align: left;
    transform: translate(0,-50%);
   font-family: system-ui;
   display: none;
}

.slider .slider-item:nth-child(2) .content{
    display: block;
}
.content .name{
    color:white;
    font-size: 40px;
    margin-top: 180px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards ;
    
}
.content .description{
    color:rgb(247, 238, 238);
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}


button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button-container{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button-container button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background:  #fefefd;
    color: #8b5e3c;
    cursor: pointer;
    border: 1px solid #4e3521;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}


/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .slider-Container {
        height: 400px;
        margin-top: 80px;
    }

    .slider-overlay {
        width: 100%;
        background: linear-gradient(to bottom, rgb(63, 46, 24), transparent);
        text-align: center;
    }

    .slider .slider-item:nth-child(3),
    .slider .slider-item:nth-child(4),
    .slider .slider-item:nth-child(5),
    .slider .slider-item:nth-child(n+6) {
        display: none;
    }

    .slider .slider-item:nth-child(1),
    .slider .slider-item:nth-child(2) {
        height: 100%;
    }

    .slider-item .content {
        left: 0;
        width: 100%;
        text-align: center;
    }

    .content .name {
        font-size: 24px;
        margin-top: 100px;
    }

    .content .description {
        font-size: 12px;
        padding: 0 15px;
    }

    .button-container {
        bottom: 10px;
    }

    .button-container button {
        width: 30px;
        height: 30px;
    }
}


/** ABOUT SECTION **/
.about-section {
    margin-top: 25px;
    text-align: center;
    padding: 50px 20px;
    height:700px;
}

.section-title {
    font-size: 45px;
    margin-bottom: 10px;
}

.about-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.about-content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-text {
    width: 40%;
    min-width: 250px;
}

.about-image img {
    width: 250px;
    height: auto;
}

.info-box {
    margin: 15px 0;
    padding: 25px;
    text-align: center;
}

.info-box h3 {
    font-size: 16px;
    color: #b07d32;
    font-weight: bold;
}

.info-box p {
    font-size: 14px;
    color: #666;
    max-width: 250px;
    margin: auto;
}

.know-more {
    margin-top: 20px;
    background: #8b5e3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.know-more:hover {
    background-color: #8a5e26;
}


/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .about-section {
        height: auto;
        padding: 30px 10px;
    }

    .section-title {
        font-size: 30px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        width: 100%;
    }

    .about-image img {
        width: 180px;
    }

    .info-box {
        padding: 15px;
    }

    .info-box h3 {
        font-size: 14px;
    }

    .info-box p {
        font-size: 12px;
    }

    .know-more {
        padding: 7px 16px;
        font-size: 12px;
    }
}



/** promotion **/

.promo-section {
    background: url('/images/background.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    justify-content: center;
    border: 4px solid burlywood; /* width, style, color */
    /* box-shadow: 0 30px 50px rgb(237, 214, 184); */
    align-items: center;
    text-align: center;
    position: relative;
    height:700px;
}

.promo-overlay {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    width: 800px;
    height: 400px;
    border-radius: 5px;  
}

.promo-overlay h2{
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 80px;
    
}
.promo-highlight {
    font-weight: bold;
    font-size: 20px;
}

.promo-description {
    margin: 10px 0;
}

.promo-btn {
    background:  #8b5e3c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .our-promise {
        padding: 50px 20px;
        height: auto;
    }

    .our-promise h2 {
        font-size: 1.6rem;
    }

    .promise-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promise-item {
        max-width: 100%;
    }

    .promise-item img {
        width: 50px;
    }

    .promise-item h3 {
        font-size: 1rem;
    }

    .promise-item p {
        font-size: 0.8rem;
    }
}



/** menu **/

.menu-section {
    width: 100%;
    margin-top: 25px;
    text-align: center;
    padding: 80px;
    height:500px;
}
.menu-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: auto;
}
.menu-slider-wrapper {
    overflow: hidden;
    width: 900px; /* Show 4 items at a time */
}
.menu-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.menu-item {
    text-align: center;
    min-width: 200px; /* Each menu item width */
    margin: 0 10px;
}
.menu-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.menu-prev-btn, .menu-next-btn {
    /* background: #8b5e3c; */
    color: #a57855;
    background: white;
    border: 1px solid #8b5e3c;
    font-size: 0px;
    cursor: pointer;
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
}
.menu-prev-btn { left: 5px; }
.menu-next-btn { right: 5px; }

.menu-search-btn {
    margin-top: 40px;
    padding: 10px 20px;
    background: #8b5e3c;
    border-radius: 25px;
    color: white;
    border: none;
    cursor: pointer;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}


/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .menu-section {
        padding: 40px 20px;
        height: auto;
    }

    .menu-slider-container {
        width: 100%;
        flex-direction: column;
    }

    .menu-slider-wrapper {
        width: 100%;
        overflow-x: scroll;
        scrollbar-width: none; /* Hide scrollbar */
    }

    .menu-slider {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .menu-item {
        min-width: 160px;
        margin: 0 5px;
    }

    .menu-item img {
        width: 110px;
        height: 110px;
    }

    /* .menu-prev-btn, .menu-next-btn {
        display: none; /* Hide navigation buttons */
    /* } */ 

    .menu-search-btn {
        padding: 7px 15px;
        font-size: 14px;
    }
}

/** cookbook **/

.cookbook-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC0CB; /* Soft pastel pink, adjust as per your theme */
    padding: 60px 10%;
    gap: 60px;
    height:700px;
}

.cookbook-content {
    max-width: 500px;
    text-align: left;
}

.cookbook-title {
    font-size: 52px;
    /* color: #4A2C2A; Dark brown for a bakery aesthetic */
    font-weight: bold;
    line-height: 1.2;
}

.highlight-text {
    font-size: 22px;
    font-weight: bold;
    /* color: #6A3E3A; */
    margin-top: 10px;
}

.description {
    font-size: 18px;
    /* color: #4A2C2A; */
    margin-top: 15px;
    line-height: 1.5;
}

.cook-order-btn {
    background: #8b5e3c;
    color: white;
    padding: 14px 28px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 25px;
    border-radius: 8px;
    transition: background 0.3s;
}

.cook-order-btn:hover {
    background: #71492e;
}

.cookbook-image img {
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}


/** our specials **/ 
/* Specials Section */
.specials-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 28px;
    color: #7a4b15;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  /* Specials Container */
  .specials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* Individual Special Card */
  .special-card {
    width: 250px;
    background: white;
    border: 1px solid #7a4b15;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
  }
  
  .special-card:hover {
    transform: scale(1.05);
  }
  
  /* Image Styling */
  .special-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid #e0a96d;
   
  }
  .special-card img:hover {
      cursor: pointer;
  }
  
  /* Text Container */
  .special-text {
    padding: 15px;
    flex-grow: 1; /* Ensures all text boxes have equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Title */
  .special-text h3 {
    font-size: 18px;
    color: #7a4b15;
    font-weight: bold;
    margin-bottom: 8px;
    cursor: pointer;
  }
  
  /* Description */
  .special-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    min-height: 40px; /* Ensures consistent height across all cards */
    padding: 5px 10px;
  }
  
/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .cookbook-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        gap: 30px;
        padding: 40px 5%;
    }

    .cookbook-content {
        max-width: 100%;
    }

    .cookbook-title {
        font-size: 36px;
    }

    .highlight-text {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }

    .cook-order-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .cookbook-image img {
        width: 250px;
        transform: rotate(0deg);
    }
}
 

/** promises section **/

.our-promise {
    text-align: center;
    padding: 90px 50px;
    height:500px;
    background-color: white;
}

.our-promise h2 {
    font-size: 2rem;
    color: #a47b41;
    /* margin-bottom: 10px; */
}


.promise-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.promise-item {
    text-align: center;
    max-width: 300px;
}

.promise-item img {
    width: 60px;
    margin-bottom: 15px;
}

.promise-item h3 {
    font-size: 1.2rem;
    color: #a47b41;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promise-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}


/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .our-promise {
        padding: 50px 20px;
        height: auto;
    }

    .our-promise h2 {
        font-size: 1.6rem;
    }

    .promise-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promise-item {
        max-width: 100%;
    }

    .promise-item img {
        width: 50px;
    }

    .promise-item h3 {
        font-size: 1rem;
    }

    .promise-item p {
        font-size: 0.8rem;
    }
}


/** contact form section **/

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: #fef5f8; /* Soft pastel pink */
  }
  
  /* Contact Container */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Form Container */
  .form-container {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    text-align: center;
  }
  
  /* Form Heading */
  .form-container h2 {
    font-size: 26px;
    color: #8b5e3c;
    margin-bottom: 10px;
  }
  
  .form-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
  }
  
  /* Input Fields */
  .form-container form input,
  .form-container form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ffb6c1;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
  }
  
  /* Textarea */
  .form-container form textarea {
    height: 120px;
    resize: none;
  }
  
  /* Submit Button */
  .form-button {
    width: 100%;
    padding: 12px;
    background: #8b5e3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .form-button:hover {
    background: rgb(88, 69, 44);
  }
  
  /* Map Container */
  .map-container {
    flex: 1;
    min-height: 400px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .form-container,
    .map-container {
      width: 100%;
    }
  }
  
  

/** Review Section **/

.review-section {
    text-align: center;
    padding: 50px ;
    height: 500px;
    background: #fffaf0;
    
}
.review-section h2 {
    margin-bottom: -10px;
}

.review-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.review-slider {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: infiniteScroll 15s linear infinite;
}

.review-card {
    width: 350px;
    margin: 50px auto;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.review-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 5px;

}

.review-author {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Animation for Infinite Loop */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.review-slider:hover {
    animation-play-state: paused;
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .review-section {
        padding: 30px;
        height: auto;
    }

    .review-slider {
        flex-direction: column;
        align-items: center;
        animation: none; /* Disable scrolling animation on mobile */
    }

    .review-card {
        width: 90%;
        margin: 20px auto;
        padding: 15px;
    }

    .review-card img {
        width: 80px;
        height: 80px;
    }

    .review-text {
        font-size: 14px;
    }

    .review-author {
        font-size: 12px;
    }
}
/** footer **/

.footer {
    background:  rgb(223, 194, 155);
    padding: 40px 80px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 300px;
    /* text-align: center; */
    /* color: #39152b;  */
}
footer img{
    margin:50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 5px;
    text-transform: uppercase;
}
.footer-col h4:hover {
   
    font-weight: bold;
    cursor: pointer;
    
}

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

.footer-col ul li a {
    text-decoration: none;
    color:  rgb(119, 93, 58); 
    display: block;
    margin-bottom: 20px;
    font-size: 1em;
    transition: color 0.3s ease-in-out;
}

.footer-col ul li a:hover {
    color: #71492e;
    font-weight: bold;
}

.contact-info p {
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    /* color: #5a1a41; */
}

.contact-info i {
    margin-right: 10px;
    /* color: #5f2f3f; */
    transition: color 0.3s ease-in-out;
}

.contact-info i:hover {
    color:  rgb(121, 96, 63);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons i {
    font-size: 22px;
    color:  rgb(223, 194, 155);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
}

.social-icons i:hover {
    color:  rgb(122, 100, 71);
    transform: scale(1.2);
}
.newsletter{
    display:flex;
    justify-content: center;
    align-items: center; 
    gap: 8px;
}

.newsletter input {
    padding: 10px;
    width: 220px;
    border: 1px solid  rgb(223, 194, 155);
    border-radius: 5px;
    outline: none;
}

.news {
    width: 70px;
    height: 40px;
    
    padding: 6px 10px;
    border: none;
    background: #8b5e3c;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.newsletter button:hover {
    background: #71492e;
}

.logo {
    display: flex;
    justify-content: center;
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
        height: auto;
    }

    .footer-col {
        width: 100%;
        min-width: unset;
        margin-bottom: 15px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col ul li a {
        font-size: 0.9em;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input {
        width: 90%;
        text-align: center;
    }

    .news {
        width: 100px;
    }
}