/* Reset */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,Helvetica,sans-serif;}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.75);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; right: -100%;
  height: 100%;
  width: 260px;
  background: #0a58ca;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 2000;
}

.sidebar.active {
  right: 0;
}

.sidebar .close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: block;
  margin-left: auto;
}

.sidebar ul {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* HERO with slant */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-overlay {
  
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 18px;
}

/* Content Sections */
.content-section {
  padding: 100px 20px;
  text-align: center;
  background: #f9f9f9;
}

.content-section:nth-child(even) {
  background: #fff;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.content-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-overlay h1 {
    font-size: 32px;
  }
}






.card-carousel-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.carousel-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #0a58ca;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.carousel-card {
  min-width: 300px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.carousel-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #0a58ca;
}

.carousel-card p {
  font-size: 14px;
  color: #444;
  padding: 0 15px 20px;
}

/* Infinite scroll animation */
.infinite-carousel {
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .carousel-card {
    min-width: 250px;
  }
  .carousel-card img {
    height: 160px;
  }
}



/*menu*/
.menu-preview {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('./diner\ image.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  overflow: hidden;
   clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%); /* slanted top */
  clip-path: polygon(0 8%, 100% 0, 100% 90%, 0 100%); /* slanted bottom */
  min-height: 80vh;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 38, 40, 0.55); /* slight blue overlay */
  z-index: 1;
}

.menu-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.menu-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.menu-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.menu-btn:hover {
  background: #0a58ca;
  color: #fff;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .menu-content h2 {
    font-size: 26px;
  }
  .menu-content p {
    font-size: 16px;
  }
  .menu-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}







/* FOOTER */
#sha{
    height: 100px;
    width: 200px;
}
.footer {
  background: #2c2c2c;
  color: #f5f5f5;
  padding: 50px 80px;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%); /* slanted top */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  max-width: 2000px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}

.footer-logo p {
  font-size: 14px;
  color: #ccc;
}

.footer-links,
.footer-contact {
  flex: 1;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

/* ✅ Responsive for tablet & mobile */
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-logo {
    width: 100%;
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #0a58ca; /* maroon from your logo */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #fff; /* gold from your logo */
  transform: scale(1.2);
}