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

body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: white;
    
}

/* Fading Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 800; /* Make sure the navbar is on top of everything else */
  background-color: rgba(0, 0, 0, 0.8); /* Transparent background for navbar */
  transition: background-color 0.3s ease;
  padding: 1px 0;
}

.order-btn {
  background-color: orange;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: #000; /* Changes to black when scrolled */
}

.navbar-left {
  display: flex;
  align-items: center;
}

/* Adjust the small logo size */
.logo {
    height: 75px; /* Small logo height */
    width: auto;  /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and title */
}

/* Navbar Title Styling */
.navbar-title {
  font-size: 45px; /* Adjust title font size */
  margin: 0; /* Remove default margin from h1 */
  color: orange;
  font-family: "Tangerine", serif;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}

.navbar .logo a {
    color: orange;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

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

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

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    transition: color 0.3s, outline 0.3s; /* Smooth transition for hover effects */
    position: relative;
}


.nav-links a:hover {
  color: orange; /* Hover effect on links */
  outline: 2px solid orange; /* Outline when hovered */
  border-radius: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.3s ease-in-out;
}

.nav-links a:hover::after {
  box-shadow: 0 0 0 2px orange; /* Create the outline effect */
}

.hero {
  margin-top: 1px; /* Adjust to match the height of your navbar */
  height: calc(120vh - 70px); /* Reduce hero height to avoid overlap with navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: orange;
  background-size: cover;
  background-position: center;
  transition: background-image 50s ease-in-out;
}

.cursive-text {
  font-family: 'Dancing Script', cursive;
  font-size: 5rem; /* Adjust as needed */
  font-weight: 700;
  color: orange; /* Optional: change color to orange for contrast */
}

.hero-content h1 {
  font-size: 90px;
  margin-bottom: 10px;
  color: white;
  text-align: center;
  font-weight: bolder;

}


#rotating-text {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 700;
  color: orange;
  transition: opacity 0.5s ease, transform 0.5s ease;  /* Smooth transition */
  opacity: 0;  /* Initially invisible */
}

#rotating-text.show {
  opacity: 1;  /* Make text visible */
  transform: translateY(0);  /* Final position */
}

#rotating-text.hide {
  opacity: 0;  /* Hide text */
  transform: translateY(20px);  /* Slightly lower the hidden text */
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: white  ;
}

.hero-btn {
  background-color: orange;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Optional: Increase space between sections */
section {
  margin-bottom: 100px; /* Adds space between all sections */
}

/* Section Backgrounds with Overlay */
.order-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

/* Menu Section Styles */
.menu-section {
  padding: 50px 0;
  background-color: #000;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: orange;
  margin-bottom: 40px;
}

.menu-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
}

.front-page-text
{
  text-align: center;
  font-size: medium;
}

@keyframes glowing {
  0% {
      text-shadow: 0 0 2px orange, 0 0 5px orange, 0 0 8px orange;
  }
  50% {
      text-shadow: 0 0 3px orange, 0 0 6px orange, 0 0 9px orange;
  }
  100% {
      text-shadow: 0 0 4px orange, 0 0 7px orange, 0 0 10px orange;
  }
}

.glow-text {
  font-size: medium;
  color: orange; /* Text color */
  text-shadow: 
      0 0 10px orange;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-item {
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.menu-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-item img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.menu-info h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: orange;
}

.menu-info p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ddd;
}

.menu-info .price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* ===========================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   =========================================== */

/* Base styles (mobile-first) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Mobile-first navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.navbar-title {
    font-size: 24px;
    margin: 0;
    color: orange;
    font-family: "Tangerine", serif;
}

.nav-links {
    list-style: none;
    display: none; /* Hidden by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-links.active {
    display: flex;
}

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

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: orange;
}

/* Mobile menu toggle button */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Hero section mobile-first */
.hero {
    margin-top: 70px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: orange;
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    text-align: center;
    font-weight: bolder;
}

.cursive-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: orange;
}

#rotating-text {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: orange;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
}

#rotating-text.show {
    opacity: 1;
    transform: translateY(0);
}

#rotating-text.hide {
    opacity: 0;
    transform: translateY(20px);
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.5;
}

.hero-btn {
    background-color: orange;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #e67e00;
}

/* Menu section mobile-first */
.menu-section {
    padding: 40px 20px;
    background-color: #000;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: orange;
    margin-bottom: 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-item {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: orange;
}

.menu-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.menu-info .price {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* About section mobile-first */
.about-section {
    padding: 40px 20px;
    background-color: #111;
    color: #fff;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-text {
    text-align: center;
    opacity: 1;
    transform: none;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: orange;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text .btn {
    background-color: orange;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.about-text .btn:hover {
    background-color: #e67e00;
}

/* Gallery section mobile-first */
.gallery-section {
    padding: 40px 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.gallery-section h2 {
    font-size: 28px;
    color: orange;
    margin-bottom: 20px;
}

.image-scroller {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
}

.image-scroller img {
    min-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.image-scroller img:hover {
    transform: scale(1.05);
}

/* Hide scrollbar for better aesthetics */
.image-scroller::-webkit-scrollbar {
    display: none;
}

.image-scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Why section mobile-first */
.why-section {
    padding: 40px 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.why-section .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: orange;
}

.why-section .section-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.feature-item h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: orange;
}

.feature-item p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
}

.feature-item i {
    font-size: 30px;
    color: orange;
    margin-bottom: 10px;
}

/* Contact section mobile-first */
.contact-section {
    background-image: url('../contactUsBackground.jpeg');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container div {
    flex: 1;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.contact-container div h3 {
    color: #ff8c00;
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-container div ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-container div ul li {
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Times New Roman', Times, serif;
}

.contact-container div ul li a {
    color: white;
    text-decoration: none;
}

.contact-container div ul li a:hover {
    color: #ff8c00;
}

.social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff8c00;
}

.contact-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Location section mobile-first */
.location-section {
    padding: 40px 20px;
    background-color: #111;
    color: white;
    text-align: center;
}

.location-section h2 {
    font-size: 28px;
    color: orange;
    margin-bottom: 20px;
}

.map-container {
    max-width: 100%;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.store-address, .store-hours, .store-contact {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.store-info h3 {
    color: orange;
    margin-bottom: 10px;
}

/* Footer mobile-first */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ===========================================
   TABLET STYLES (768px and up)
   =========================================== */
@media (min-width: 768px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .logo {
        height: 60px;
    }
    
    .navbar-title {
        font-size: 32px;
    }
    
    .nav-links {
        display: flex;
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        flex-direction: row;
        padding: 0;
    }
    
    .nav-links li {
        margin: 0 0 0 20px;
    }
    
    .nav-links li a {
        font-size: 16px;
        padding: 8px 12px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero {
        margin-top: 80px;
        height: 100vh;
        padding: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .cursive-text {
        font-size: 3.5rem;
    }
    
    #rotating-text {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .menu-item img {
        height: 250px;
    }
    
    .about-container {
        flex-direction: row;
        text-align: left;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    .features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-item {
        width: 45%;
        max-width: 250px;
    }
    
    .contact-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-container div {
        flex: 1;
        min-width: 200px;
    }
    
    .store-info {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .store-address, .store-hours, .store-contact {
        width: 30%;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

/* ===========================================
   DESKTOP STYLES (1024px and up)
   =========================================== */
@media (min-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }
    
    .logo {
        height: 75px;
    }
    
    .navbar-title {
        font-size: 45px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .cursive-text {
        font-size: 5rem;
    }
    
    #rotating-text {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-item img {
        height: 300px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    .features {
        justify-content: space-around;
    }
    
    .feature-item {
        width: 250px;
    }
    
    .contact-container {
        justify-content: space-between;
    }
    
    .map-container iframe {
        height: 500px;
    }
}

/* ===========================================
   LARGE DESKTOP STYLES (1200px and up)
   =========================================== */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .cursive-text {
        font-size: 6rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ===========================================
   EXTRA LARGE SCREENS (1400px and up)
   =========================================== */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: 6rem;
    }
    
    .cursive-text {
        font-size: 7rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ===========================================
   LANDSCAPE ORIENTATION ADJUSTMENTS
   =========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cursive-text {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* ===========================================
   HIGH DPI DISPLAYS
   =========================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .menu-item img,
    .about-image img,
    .image-scroller img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
    .navbar,
    .menu-toggle,
    .hero-btn,
    .contact-section,
    footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 20px;
        background: none !important;
        color: black;
    }
    
    .hero-content h1,
    .cursive-text {
        color: black;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ===========================================
   ACCESSIBILITY IMPROVEMENTS
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* ===========================================
   DARK MODE SUPPORT
   =========================================== */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
        color: #fff;
    }
}

/* ===========================================
   FOCUS STYLES FOR ACCESSIBILITY
   =========================================== */
.menu-toggle:focus,
.nav-links a:focus,
.hero-btn:focus,
.about-text .btn:focus {
    outline: 2px solid orange;
    outline-offset: 2px;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* About Us Section */
.about-section {
  padding: 100px 20px;
  background-color: #111; /* Dark background */
  color: #fff; /* White text color */
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out; /* Smooth scaling effect */
}

.about-text {
  flex: 1;
  opacity: 0; /* Initially hidden */
  transform: translateX(50px); /* Initially shifted to the right */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; /* Fade-in and slide-in effect */
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: orange;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text .btn {
  background-color: orange;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.about-text .btn:hover {
  background-color: #ff5722;
}

/* Hover Effects */
.about-section:hover .about-image img {
  transform: scale(1.05); /* Slightly enlarge the image on hover */
}

.about-section:hover .about-text {
  opacity: 1; /* Fade in the text */
  transform: translateX(0); /* Slide the text to its original position */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .about-container {
      flex-direction: column;
      text-align: center;
  }

  .about-image img {
      max-width: 100%;
  }

  .about-text {
      text-align: center;
      opacity: 1; /* Ensure the text is visible on smaller screens */
      transform: none; /* No slide effect on small screens */
  }
}


/************************Gallery Section *******************************/

/* Gallery Section */
.gallery-section {
  padding: 50px 20px;
  background-color: #111; /* Dark background */
  color: #fff;
  text-align: center;
}

.gallery-section h2 {
  font-size: 36px;
  color: orange;
  margin-bottom: 20px;
}

.image-scroller {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  gap: 20px; /* Space between images */
  scroll-behavior: smooth; /* Smooth scrolling */
  padding: 10px;
}

.image-scroller img {
  max-width: 300px; /* Control image width */
  height: auto;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add depth to images */
  transition: transform 0.3s ease; /* Hover effect */
}

.image-scroller img:hover {
  transform: scale(1.05); /* Enlarge the image on hover */
}

/* Hide scrollbar for better aesthetics */
.image-scroller::-webkit-scrollbar {
  display: none; /* Hide scrollbar in WebKit browsers */
}

.image-scroller {
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-scroller img {
      max-width: 200px; /* Smaller images on mobile */
  }
}
@media (min-width: 1025px) {
  .hero-content h1 {
      font-size: 4rem;
  }
  .menu-item img {
      height: 300px;
  }
}




/***********************************************************************/


.order-section {
    background-image: url('../images/order-bg.jpg');
    padding-top: 100px; /* Add space at the top of the section */
    padding-bottom: 100px; /* Optional: Add space at the bottom too */
    background-color: #222; /* Optional: Add a background color */
    color: #fff; /* Text color */
    text-align: center;
}

.order-text {
  max-width: 800px;
  margin: 0 auto;
  color: #ddd;
  font-size: 18px;
}

/* Overlay Effect for Backgrounds */
.section-overlay {
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for better text readability */
    padding: 40px;
    border-radius: 10px;
}


.price {
    color: orange;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
}


/* Why CULTURE COLOMBO Section */
.why-section {
  padding: 80px 0; /* Space above and below */
  background-color: #111; /* Background color */
  color: #fff; /* Text color */
  text-align: center; /* Center align text */
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: orange; /* Highlighting the title */
}

.section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin: 0 auto; /* Center align */
}

.features {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  gap: 30px; /* Space between feature items */
}

.feature-item {
  background: rgba(255, 255, 255, 0.1); /* Light background with transparency */
  border-radius: 10px;
  padding: 20px;
  width: 250px; /* Fixed width */
  text-align: center; /* Center align text */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation for scaling and shadow */
}

.feature-item:hover {
  transform: scale(1.1); /* Scale effect on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Add shadow on hover */
}
.feature-item h3 {
  font-size: 24px;
  margin: 15px 0 10px;
}

.feature-item p {
  font-size: 16px;
  color: #ddd; /* Soft color for description */
}

.feature-item i {
  font-size: 36px; /* Icon size */
  color: orange; /* Icon color */
  margin-bottom: 10px; /* Space below icon */
}

/* Flip Card Container */
.flip-card-container {
  perspective: 1000px; /* 3D effect for the flip */
  display: inline-block;
  margin: 20px;
}

.flip-card {
  width: 300px; /* Card size */
  height: 400px;
  position: relative;
  transition: transform 0.6s; /* Flip speed */
  transform-style: preserve-3d; /* Ensures 3D effect */
}

.flip-card-container:hover .flip-card {
  transform: rotateY(180deg); /* Flip the card */
}

/* Front and Back of the Flip Card */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide the back until flipped */
  border-radius: 10px;
}

/* Front - Image */
.flip-card-front img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Back - Text */
.flip-card-back {
  background-color: #333; /* Dark background */
  color: #fff; /* White text */
  text-align: center;
  padding: 20px;
  transform: rotateY(180deg); /* Initially hidden with a 180deg rotation */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}

.flip-card-back h3 {
  margin-bottom: 10px;
  color: orange;
}

.flip-card-back p {
  font-size: 16px;
  color: #ddd; /* Softer color for description */
}


/*---recent changes*/

.navbar-links a:hover {
  color: orange; /* Highlight color on hover */
}


/* ******************** Contact us **********************/
/* Contact Us Section */
  /*****************Contact us **********************************/
       /* General Styles */
        /* General Styles */
        .contact-section {
          background-image: url('../contactUsBackground.jpeg'); /* Add your background image here */
          background-size: cover;
          background-position: center;
          padding: 80px 20px;
          color: white;
      }

      .contact-container {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          gap: 20px;
      }

      .contact-container div {
          flex: 1;
          padding: 20px;
          background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background for each div */
          border-radius: 10px;
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
      }

      .contact-container div h3 {
          color: #ff8c00;
          font-size: 1.3em;
          margin-bottom: 20px;
      }

      .contact-container div ul {
          list-style-type: none;
          padding: 0;
          margin: 0;
      }

      .contact-container div ul li {
          margin-bottom: 10px;
          font-size: 0.9em;
          font-family: 'Times New Roman', Times, serif;
      }

      .contact-container div ul li a {
          color: white;
          text-decoration: none;
      }

      .contact-container div ul li a:hover {
          color: #ff8c00;
      }

      .social-icons a {
          font-size: 1.5em;
          margin-right: 15px;
          color: white;
      }

      .social-icons a:hover {
          color: #ff8c00;
      }

      .contact-logo {
          width: 100px;
          height: 100px;
          margin-bottom: 20px;
      }

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .contact-content h2 {
      font-size: 28px;
  }

  .button {
      width: 100%;
      margin: 10px 0;
  }
}




/************************ Gallery Section ************************/

 /* Gallery Section */
 .gallery-section {
  padding: 80px 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  position: relative;
}

/* Image grid styles */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

 

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Show the images when they are in view */
.image-grid img.visible {
  opacity: 1;
  transform: translateY(0);
}


/******************************* Map Section *********************/

/* Location Section */
.location-section {
  padding: 50px 20px;
  background-color: #111; /* Dark background */
  color: white;
  text-align: center;
}

.location-section h2 {
  font-size: 36px;
  color: orange;
  margin-bottom: 20px;
}

.map-container {
  max-width: 100%;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.store-info {
  display: flex;
  justify-content: space-around;
  text-align: left;
  flex-wrap: wrap;
  gap: 20px;
}

.store-info h3 {
  color: orange;
}

.store-address, .store-hours, .store-contact {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .store-info {
      flex-direction: column;
      text-align: center;
  }

  .store-address, .store-hours, .store-contact {
      width: 100%;
  }
}


/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .navbar {
      flex-direction: column;
      padding: 20px;
  }

  .hero {
      flex-direction: column;
      padding: 40px 20px;
  }

  .why-section .features {
      flex-direction: column;
  }

  .menu-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .contact-container {
      flex-direction: column;
      align-items: center;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

  body
  {
    width: auto;
  }
  .hero-content h1 {
      font-size: 2rem;
  }
  .hero-btn {
      font-size: 1rem;
      padding: 8px 16px;
  }

  .why-section .features {
      width: 100%;
      height: auto;
      flex-wrap: wrap;
      flex-direction: row-reverse;
  }
 

  .feature-item {
    flex-direction: row;
    width: inherit;
}

.feature-item h3 {
  flex-direction: row;
  width: auto;
}
.feature-item p {
  font-size: 0.5rem;
  width: auto;
}
  .menu-grid {
      grid-template-columns: 1fr;
  }

  .contact-container {
      flex-direction: row;
      text-align: center;
      flex-wrap: wrap;
  }
  
  .feature-item {
      width: 100%;
      padding: 10px;
  }


}

/*************************************************************/