/* =========================================
   Combined Public CSS
   Includes: Header, Footer, Main Styles, Expo Menu
   ========================================= */

@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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sedan:ital@0;1&display=swap');

:root {
  --primary-color: #eabe4fbb;
  --primary-color-dark: #5d8b66;
  --primary-color-blue: #4f92eabb;
  --text-dark: #dcdada;
  --text-light: #ebeae8;
  --white: #ffffff;
  --max-width: 1400px;
  --btn-color: #e58f00;
  --about-sec: #1d1d23;
}

/* =========================================
   Base/Reset Styles
   ========================================= */
html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: "Sedan", serif;
  /* Changed to Sedan as requested */
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #d3aa46d6;
  /* Default link color from index */
}

a:hover {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-color);
}

img {
  display: flex;
  width: 100%;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  padding: 1rem 2.5rem;
  outline: none;
  border: none;
  font-size: 1.1rem;
  color: var(--white);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 5px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Navigation (Header)
   ========================================= */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: static;
  isolation: isolate;
  margin-inline: auto;
  z-index: 9;
  padding: 0.5rem 1rem;
}

.navbar__logo img {
  max-width: 220px;
  z-index: 9999;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  margin-right: 20px;
}

/* Mobile Nav */
.nav__links {
  list-style: none;
  position: absolute;
  top: 60px;
  /* Adjusted */
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background-color: rgba(0, 0, 0, 0.95);
  transition: transform 0.3s ease-in-out;
  transform: translateY(-150%);
  z-index: 9998;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.nav__links a:hover {
  color: var(--primary-color);
}

/* Dropdown */
.dropdown {
  position: relative;
  text-align: center;
}

.dropdown-content {
  display: none;
  /* Hidden by default */
  background-color: rgba(0, 0, 0, 0.9);
  /* Slightly darker for better readability */
  position: relative;
  /* Default for mobile */
  padding: 10px;
  border-top: 2px solid var(--primary-color);
  z-index: 1000;
  border-radius: 0 0 5px 5px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 8px 10px;
  /* Larger hit area */
  font-size: 1rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

/* Desktop Logic (>1000px) */
@media (width > 1000px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    transform: none;
    background-color: transparent;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    margin-left: 50px;
    /* Separator */
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    margin-top: 0;
    /* Important: No gap */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
}

/* =========================================
   Header Container (Hero Text)
   ========================================= */
.header__container {
  font-family: "Sedan", serif;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.header__container h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.header__container h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.header__container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .header__container h2 {
    font-size: 2.5rem;
  }
}

/* =========================================
   Sections & Grids (Home Page)
   ========================================= */
.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  /* Changed to gold/primary from text-dark based on context */
  text-align: center;
  margin-bottom: 2rem;
}

.app__container {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.app__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .app__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.app__card {
  padding: 1rem;
}

.app__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.app__card p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Images in Grid */
.app__image2 img {
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

/* Shortcuts Row (Icons) */
.header__image .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 10px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__image .column1,
.header__image .column2,
.header__image .column3 {
  flex: 1 1 150px;
  max-width: 250px;
  text-align: center;
}

.header__image img {
  width: 80px;
  height: auto;
  margin: 0 auto 10px;
}

.header__image h3 {
  color: var(--white);
  font-size: 1.2rem;
}

/* =========================================
   Menu / Cards (ExpMenu style)
   ========================================= */
.our-menu-food {
  background-color: var(--about-sec);
  padding: 4rem 1rem;
}

.main-menu-food {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.inner-menu-food {
  flex: 1 1 300px;
  max-width: 350px;
}

.menu-food-content {
  text-align: center;
}

.menu-food-content img {
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.menu-food-content img:hover {
  transform: scale(1.02);
}

.menu-food-text h2 {
  color: var(--btn-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-food-text p {
  color: var(--white);
  line-height: 1.6;
}

/* =========================================
   Footer & Download Section
   ========================================= */
.download {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/images/csarda.jpg");
  /* Adjusted path */
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  text-align: center;
  color: var(--white);
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 1rem 1rem;
  /* Reduced from 2rem */
}

.footer__container {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.footer__bar {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* =========================================
   Modern UI Additions (Parallax, Cards, Animations)
   ========================================= */

/* Parallax Section */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
  /* Reduced from 400px */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    /* Disable parallax on mobile for performance */
    min-height: 150px;
    /* Reduced from 250px */
  }
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-content h2 {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-family: 'Sedan', serif;
  margin: 0;
  opacity: 0;
  /* For animation */
  transform: translateY(30px);
}

/* Modern Card Style */
.modern-card {
  background: rgba(215, 235, 222, 0.98);
  /* Visibly darker green tint */
  /* Light green tint */
  /* Semi-transparent */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Global Background for Depth */
body {
  background-image: url('/images/rolunkhatter.jpg');
  /* Wood/Dark texture */
  background-attachment: fixed;
  background-size: cover;
}

.content-container {
  background: transparent !important;
  /* Let body bg show through */
}