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

/* Smooth scroll for in-page links like #contact */
html {
  scroll-behavior: smooth;
}

/* Body Styling */
body {
  font-family: 'BT Futura W01', Arial, sans-serif;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); /* subtle shadow to make it pop */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Text */
.navbar-logo {
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  font-family: "National Park", sans-serif;
}

/* Navbar Menu Styling */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-menu li {
  display: inline;
}

.navbar-menu a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  letter-spacing: 0.08em; /* premium feel */
}

.navbar-menu a:hover {
  background-color: #f2f2f2;
  border-radius: 4px;
}

/* Navbar Socials */
.navbar-socials {
  display: flex;
  gap: 15px;
}

.navbar-socials .social-logo img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-socials .social-logo:hover img {
  transform: scale(1.1);
}

/* Hamburger Menu Styling */
.navbar-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.navbar-hamburger span {
  width: 30px;
  height: 3px;
  background-color: black;
}

/* Video Background */
.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Overlay */
.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered Text */
.centered-text {
  text-align: center;
  color: white;
}

.centered-text h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "National Park", sans-serif;
}

.centered-text h2 {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: 300;
  font-family: "Quicksand", sans-serif;
}

.book-now-button {
  text-decoration: none;
  background-color: rgba(201, 201, 201, 0.68);
  color: white;
  font-size: 1.2em;
  padding: 15px 30px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-family: "Quicksand", sans-serif;
}

.book-now-button:hover {
  background-color: #e55a47;
}

/* INTRO + FLOATING IMAGES */
.intro-container {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.intro-text {
  max-width: 800px;
  font-size: 1.4em;
  z-index: 10;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Base Floating Image Style */
.floating-img {
  position: absolute;
  width: 320px;
  z-index: 1;
}

/* Thali – keep floating animation */
.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

/* Chapathi – rotate left & right */
.top-left {
  top: 40px;
  left: 30px;
  transform-origin: center center;
  animation: rotate-left-right 7s ease-in-out infinite;
}

/* Samosa – rotate right then left, with slight float */
.right-middle {
  top: 30%;
  right: 30px;
  transform-origin: center center;
  animation: rotate-right-then-left 7s ease-in-out infinite;
}

/* Thali floating keyframes */
@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

/* Chapathi rotation keyframes */
@keyframes rotate-left-right {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

/* Samosa rotation + subtle float */
@keyframes rotate-right-then-left {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(8deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(10px) rotate(-8deg);
  }
}

/* CONTACT */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.contact-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: "National Park", sans-serif;
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
  }

  .navbar-menu li {
    margin: 10px 0;
  }

  .navbar-menu.show {
    display: flex;
  }

  .navbar-hamburger {
    display: flex;
  }

  .floating-img {
    width: 200px;
  }

  .intro-text {
    font-size: 1.1em;
    padding: 0 10px;
  }
}

/* ABOUT PAGE HERO */
.about-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background-color: #111; /* solid for now */
  color: #fff;
}

/* Inner content of hero */
.about-hero-inner h1 {
  font-family: "National Park", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero-inner h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

/* If you want a background image later, uncomment and set your image:
.about-hero {
  background: url("images/about-hero.jpg") center center / cover no-repeat;
}
*/

/* ABOUT CONTENT LAYOUT */
.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-text h2 {
  font-family: "National Park", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.about-text p {
  font-family: "Quicksand", sans-serif;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
}

/* Image block */
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* Responsive for tablet / mobile */
@media screen and (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-hero-inner h1 {
    font-size: 2.2rem;
  }

  .about-hero-inner h2 {
    font-size: 1.1rem;
  }
}

/* CONTACT PAGE MAIN CONTAINER */
.contact-page {
  padding: 80px 20px;
  background-color: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* LEFT SIDE — CONTACT INFO */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: "National Park", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-info p,
.contact-info a {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
}

.info-block {
  margin-top: 25px;
}

.info-block h3 {
  font-family: "National Park", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

/* RIGHT SIDE — FORM */
.contact-form {
  flex: 1;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
  font-family: "National Park", sans-serif;
  margin-bottom: 20px;
}

.contact-form label {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  display: block;
  margin: 12px 0 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 10px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit {
  width: 100%;
  background: #ff6f61;
  color: white;
  padding: 14px;
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.contact-submit:hover {
  background: #e55a47;
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}
/* MENU PAGE */
.menu-page {
  padding: 80px 20px;
  background-color: #ffffff;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Quick links (category pills) */
.menu-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.menu-quick-links a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: #333;
  background-color: #fafafa;
  transition: 0.2s;
}

.menu-quick-links a:hover {
  background-color: #ff6f61;
  color: #fff;
  border-color: #ff6f61;
}

/* Intro text */
.menu-intro {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Category blocks */
.menu-category {
  margin-bottom: 60px;
}

.menu-category h2 {
  font-family: "National Park", sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.menu-category-desc {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: #555;
}

/* Grid of dishes */
.menu-grid {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.menu-item {
  background-color: #f9f9f9;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dish-name {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.dish-note {
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  color: #666;
}

/* Reuse hero styling, but allow tweaks if needed */
.menu-hero .about-hero-inner h1 {
  /* optional overrides later */
}

/* Responsive tweaks */
@media screen and (max-width: 900px) {
  .menu-page {
    padding: 60px 16px;
  }
}
/* EXTRA SMALL SCREENS (PHONES) */
@media screen and (max-width: 600px) {

  /* Navbar spacing */
  .navbar {
    padding: 8px 12px;
  }

  .navbar-logo {
    font-size: 22px;
  }

  .navbar-socials {
    gap: 10px;
  }

  .navbar-socials .social-logo img {
    width: 24px;
  }

  /* Hero sections (home/about/contact/menu) */
  .video-background {
    height: 80vh; /* slightly shorter on phones */
  }

  .about-hero {
    height: 40vh;
    padding: 40px 16px;
  }

  .about-hero-inner h1 {
    font-size: 1.9rem;
  }

  .about-hero-inner h2 {
    font-size: 1rem;
  }

  .centered-text h1 {
    font-size: 2.2rem;
  }

  .centered-text h2 {
    font-size: 1.1rem;
  }

  /* Intro section on home */
  .intro-container {
    height: auto;
    padding: 60px 16px;
  }

  .floating-img {
    width: 160px;
  }

  /* Contact page tweaks */
  .contact-page {
    padding: 50px 16px;
  }

  .contact-form {
    padding: 20px;
  }

  /* Menu page tweaks */
  .menu-page {
    padding: 50px 16px;
  }

  .menu-quick-links a {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .menu-category h2 {
    font-size: 1.6rem;
  }
}
/* FULL MOBILE LAYOUT – PHONES & SMALL TABLETS */
@media screen and (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 8px 12px;
  }

  .navbar-container {
    align-items: center;
  }

  .navbar-logo {
    font-size: 22px;
  }

  /* Hide socials on very small screens to reduce clutter (optional) */
  .navbar-socials {
    display: none;
  }

  .navbar-hamburger {
    display: flex;
  }

  .navbar-menu {
    display: none;              /* hidden by default, toggled by JS */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    z-index: 999;
  }

  .navbar-menu li {
    margin: 8px 0;
  }

  .navbar-menu a {
    display: block;
    padding: 10px 0;
  }

  .navbar-menu.show {
    display: flex;
  }

  /* HERO (HOME) */
  .video-background {
    height: 75vh;
  }

  .centered-text h1 {
    font-size: 2rem;
  }

  .centered-text h2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .book-now-button {
    font-size: 1rem;
    padding: 10px 24px;
  }

  /* INTRO SECTION (HOME) */
  .intro-container {
    height: auto;
    padding: 40px 16px 50px 16px;
    flex-direction: column;
  }

  .intro-text {
    order: 2;
    font-size: 1.05rem;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }

  /* Floating images: make smaller & simpler */
  .floating-img {
    width: 150px;
  }

  /* Show only one or two images to avoid clutter */
  .top-left {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
    animation: none;        /* stop rotation on mobile if it feels too much */
  }

  .bottom-center {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin-top: 10px;
    animation: none;
  }

  .right-middle {
    display: none;          /* hide samosa on small screens for clean layout */
  }

  /* ABOUT PAGE */
  .about-hero {
    height: 40vh;
    padding: 40px 16px;
  }

  .about-hero-inner h1 {
    font-size: 2rem;
  }

  .about-hero-inner h2 {
    font-size: 1rem;
  }

  .about-section {
    padding: 50px 16px;
  }

  .about-container {
    flex-direction: column;
    gap: 24px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

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

  /* CONTACT PAGE */
  .contact-page {
    padding: 50px 16px;
  }

  .contact-container {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  /* MENU PAGE */
  .menu-page {
    padding: 50px 16px;
  }

  .menu-quick-links {
    gap: 8px;
  }

  .menu-quick-links a {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .menu-category h2 {
    font-size: 1.6rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;  /* one dish per row on phones */
  }

  .menu-item {
    padding: 10px 12px;
  }

  /* FOOTER CONTACT SECTION */
  .contact-section {
    padding: 40px 16px;
  }

  .contact-section h2 {
    font-size: 1.8rem;
  }
}
