@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* Color Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root { 
    --main-color: #D39B37;
    --text-color: #3267AB;
    --bg-color: #000000;
  }

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}


/* Sticky Call Button Styling */
.call-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
    border-radius: 50%;
    width: 60px; /* Adjust button size */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
    transition: transform 0.1s ease, box-shadow 0.3s ease;
  }
  
  .call-button img {
    width: 70%; /* Size of the image inside the button */
    height: auto;
    border-radius: 50%;
  }
  
  .call-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
  }
  
  .call-button.shake {
    animation: shake 0.5s ease-in-out; /* Apply the shake animation */
  }
  
  /* Updated Keyframes for multi-directional shake */
  @keyframes shake {
    0%, 100% {
        transform: translate(0, 0); /* No movement */
    }
    20% {
        transform: translate(-5px, -5px); /* Move left and up */
    }
    40% {
        transform: translate(5px, 5px); /* Move right and down */
    }
    60% {
        transform: translate(-5px, 5px); /* Move left and down */
    }
    80% {
        transform: translate(5px, -5px); /* Move right and up */
    }
  }

/* Universal Section Heading */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
}

/* Horizontal Lines */
.horizontal-line {
    display: inline-block;
    width: 50px; /* Adjusted for perfect spacing */
    height: 2px;
    background-color: #0056b3; /* Blue line */
}

/* First Word (Lighter Style) */
.section-main {
    font-weight: normal;
    color: #444;
    font-size: 3rem;
}

/* Second Word (Bold & Blue) */
.section-highlight {
    font-weight: bold;
    font-size: 3rem;
    color: #0056b3; /* Blue text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-wrap: nowrap; /* Keep in a single line */
    }

    .section-main, .section-highlight {
        font-size: 2.5rem; /* Adjust for smaller screens */
    }

    .horizontal-line {
        width: 40px; /* Adjusted for spacing */
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-wrap: nowrap;
    }

    .section-main, .section-highlight {
        font-size: 2rem; /* Reduce size for mobile */
    }

    .horizontal-line {
        width: 30px;
    }
}


/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #000; /* Solid black when scrolled */
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Yellow on hover */
}

/* Custom Animated Toggler */
.navbar-toggler {
    border: none;
    background: transparent !important;
    outline: none !important;
    padding: 10px;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

  




.hero-section {
    margin-top:100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3267AB;
    color: white;
    padding: 60px;
  }
  
  .hero-content {
    flex: 1;
    max-width: 40%;
  }
  
  .breadcrumb {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
  }
  
  .hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .contact-btn {
    background-color: #ffffff;
    color: #3267AB;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: #ddd;
  }
  
  .rating-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .rating-text {
    font-size: 16px;
    margin-right: 10px;
  }
  
  .google-icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .stars {
    color: gold;
    font-size: 16px;
    margin-right: 10px;
  }
  
  .rating-score {
    font-size: 14px;
  }
  
  .hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  





/* Media Queries */

/* iPhone 12, 13, 14 (390×844px) & iPhone XR, 11 (414×896px) → 1-column layout */
@media (max-width: 430px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-image {
        text-align: center;
        margin-top: 20px;
    }
}

/* iPhone 14 Pro Max (430×932px) → 2-column layout */
@media (min-width: 431px) and (max-width: 767px) {
    .hero-section {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 50px;
    }

    .hero-content {
        max-width: 50%;
    }

    .hero-image {
        max-width: 50%;
        text-align: right;
    }
}

/* Tablets (768px and up) → 2-column layout */
@media (min-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: row;
        padding: 60px;
    }

    .hero-content {
        max-width: 40%;
    }

    .hero-image {
        max-width: 50%;
    }
}


  
/* Horizontal Lines */
.horizontal-line {
    display: inline-block;
    width: 100px; /* Adjusted for perfect spacing */
    height: 3px;
    background-color: #0056b3; /* Blue line */
   
}

/* First Word (Lighter Style) */
.section-main {
    font-weight: normal;
    color: #444;
    font-size: 2rem;
}

/* Second Word (Bold & Blue) */
.section-highlight {
    font-weight: bold;
    font-size: 2rem;
    color: #0056b3; /* Blue text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-wrap: nowrap; /* Keep in a single line */
    }

    .section-main, .section-highlight {
        font-size: 2.5rem; /* Adjust for smaller screens */
    }

    .horizontal-line {
        width: 40px; /* Adjusted for spacing */
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-wrap: nowrap;
    }

    .section-main, .section-highlight {
        font-size: 2rem; /* Reduce size for mobile */
    }

    .horizontal-line {
        width: 30px;
    }
}














/* new third page of website Page CSS ............................................*/
.heroo-section {
   
    background: white;
    padding: 10px 10px;
    text-align: center;
    color: #7a5b1f;
}

.heroo-content h1 {
    
    font-size: 5em;
    font-weight: bold;
    color:  #008080;
  
    font-family: 'Playfair Display', serif;
  
    font-weight: 700;
}

.heroo-content p {
    font-size: 1.3em;
    color: #333;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.description {
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
}

.food-images-container {
    display: flex;
    justify-content: center;
    gap: 0px;
    padding: 20px;
}

.food-image {
    position: relative;
    flex: 1;
    max-width: 330px;
}

.food-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.food-image img {
    width: 100%;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    display: block;
}

.food-image span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-family: 'Pacifico', cursive;
    color: #fff;
    
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}



.visit-button {
    margin-top: 30px;
    text-align: center;
}

.visit-button a {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    transition: background-color 1.1s ease, transform 1.1s ease;
}

.visit-button a:hover {
    transform: scale(1.1);
    background-color: var(--main-color);
}

/* Keyframes for animations */
@keyframes rotateText {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bottomUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-drop, .animate-up {
    opacity: 0;
    transform: translateY(20px);
}

.animate-drop.show {
    animation: dropDown 1s ease-out forwards;
}

.animate-up.show {
    animation: bottomUp 1s ease-out 0.5s forwards;
}



/* Slider Container */
.slider-container {
    margin-top: 70px; /* Top margin for spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Blurry Animated Container */
.slider-blur {
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blurry effect */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden; /* Clip overflowing content */
    animation: pulse 5s infinite alternate; /* Smooth pulse animation */
}

/* Continuous Slider */
.slider {
    display: flex;
    align-items: center;
    gap: 30px; /* Spacing between images */
    animation: slide-continuous 30s linear infinite; /* Slower animation duration */
    width: fit-content; /* Ensure content adapts to the total width */
}

.slide {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 200px; /* Uniform width for each image */
}

.slide img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* Continuous Scrolling Animation */
@keyframes slide-continuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move halfway to ensure seamless looping */
    }
}

/* Pulse Animation for Blurry Container */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1.02);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .heroo-section {
        padding: 40px 15px;
    }

    .heroo-content h1 {
        font-size: 4em;
    }

    .heroo-content p {
        font-size: 1.1em;
    }

    .description {
        max-width: 500px;
        font-size: 1em;
    }

    .food-image {
        max-width: 250px;
    }

    .visit-button a {
        padding: 8px 16px;
        font-size: 1em;
    }
    
.food-image span {
 
    font-size: 1.28em;
 
}

}

@media (max-width: 480px) {
    .heroo-section {
        padding: 30px 10px;
    }

    .heroo-content h1 {
        font-size: 2.5em;
    }

    .heroo-content p {
        font-size: 1em;
    }

    .description {
        max-width: 100%;
        font-size: 0.4em;
    }

    .food-image {
        max-width: 200px;
    }

    .visit-button a {
        width: 26%;
        padding: 10px;
    }
        
.food-image span {
 
    font-size: 1em;
 
}

}

@media (max-width: 414px) {
    .heroo-section {
        padding: 20px 10px;
    }

    .heroo-content h1 {
        font-size: 2em;
    }

    .heroo-content p {
        font-size: 0.9em;
    }

    .description {
        max-width: 90%;
        font-size: 0.5em;
    }

    .food-image {
        max-width: 180px;
    }

    .visit-button a {
        padding: 10px;
    }
}



.description { 
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
    font-family: 'Playfair Display', serif;
    color: #3267AB;
    font-size: 40px;
    margin-bottom: 15px;
}
.description p {
    font-family: 'Rajdhani', sans-serif;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: normal;  /* Ensure text is not bold */
}
ul {
    color: black;
    padding-left: 20px;
    list-style-type: disc;
}
ul li {
    font-family: 'Rajdhani', sans-serif;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;  /* Ensure text is not bold */
}

/* iPhone 12, 13, 14 (390×844px) & iPhone XR, 11 (414×896px) → 1-column layout */
@media (max-width: 430px) {
    .description {
        max-width: 90%;
        padding: 15px;
    }

    h2 {
        font-size: 32px;
    }

    .description p {
        font-size: 16px;
    }

    ul li {
        font-size: 16px;
    }
}

/* iPhone 14 Pro Max (431px - 767px) → Centers text with reduced margins */
@media (min-width: 431px) and (max-width: 767px) {
    .description {
        max-width: 85%;
        padding: 18px;
    }

    h2 {
        font-size: 34px;
    }

    .description p {
        font-size: 17px;
    }

    ul li {
        font-size: 17px;
    }
}

/* Tablets (768px and up) → Keeps original styles */
@media (min-width: 768px) {
    .description {
        max-width: 800px;
    }

    h2 {
        font-size: 40px;
    }

    .description p,
    ul li {
        font-size: 18px;
    }
}
  

      /* footer  */
/* Full-Width Footer */
.footer {
    background-color: #002855; /* Navy Blue */
    color: #fff;
    padding: 50px 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Ensures content does not touch edges */
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

/* Footer Headings */
.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffc107; /* Yellow Accent */
}

/* Footer Links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact i {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    font-size: 0.9rem;
    width: 100%;
}

/* Make Footer Full Width */
.footer-wrapper {
    width: 100%;
    background-color: #002855;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .footer-links, .footer-contact {
        display: inline-block;
    }
    .social-icons {
        justify-content: center;
    }
}



 



