/* =====================================================
   HOTEL ATITHI WEBSITE
   Clean, organized stylesheet

   01. Theme & reset
   02. Shared layout & components
   03. Header & navigation
   04. Intro video
   05. Hero
   06. Our Story
   07. Signature Menu
   08. Catering & Party Hall
   09. Brand Banner
   10. Contact
   11. Footer
   12. Reveal animations
   13. Responsive styles
===================================================== */

/* =====================================================
   01. THEME & RESET
===================================================== */

:root {
  --red: #c80032;
  --deep-red: #8c001f;
  --pink: #f9dfe5;
  --light-pink: #fff0f3;
  --cream: #fff9f3;
  --ivory: #fffdf9;
  --silver: #aebbc1;
  --silver-light: #edf1f2;
  --dark: #35272a;
  --text: #706065;
  --light-text: #97858a;
  --green: #16854b;
  --shadow: 0 18px 50px rgba(100, 25, 45, 0.10);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
.btn,
a {
  -webkit-tap-highlight-color: transparent;
}

section {
  scroll-margin-top: 100px;
}

::selection {
  background: var(--red);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(200, 0, 50, 0.35);
  outline-offset: 4px;
}

/* =====================================================
   02. SHARED LAYOUT & COMPONENTS
===================================================== */

.container {
  width: min(1250px, 100%);
  margin: 0 auto;
}

.small-heading,
.menu-label,
.visit-label,
.story-chapter-label,
.menu-highlight-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
}

.small-heading {
  margin-bottom: 13px;
  font-size: 12px;
  letter-spacing: 5px;
}

.section-heading h2 {
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1.12;
}

.section-heading h2 span {
  color: var(--red);
}

.center {
  text-align: center;
}

.section-description {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.btn {
  min-width: 175px;
  padding: 14px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(200, 0, 50, 0.20);
}

.btn-primary:hover {
  background: var(--deep-red);
}

.btn-secondary {
  color: var(--deep-red);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--red);
}

.btn-secondary:hover {
  background: var(--pink);
}

.whatsapp-button {
  color: var(--green);
  background: #e4f7eb;
  border: 1px solid #a9ddbd;
}

/* =====================================================
   03. HEADER & NAVIGATION
===================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100px;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 0, 50, 0.07);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 7px 30px rgba(80, 20, 40, 0.08);
}

.navbar {
  width: min(1400px, 100%);
  min-height: 100px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  width: 280px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  position: relative;
  color: var(--dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: var(--deep-red);
}

/* =====================================================
   04. INTRO VIDEO
===================================================== */

.intro-video-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-already-played .intro-video-screen {
  display: none !important;
}

.intro-video-screen.hide-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-skip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 10px 20px;
  color: var(--deep-red);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.intro-skip:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* =====================================================
   05. HERO
===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 165px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 10% 30%, rgba(200, 0, 50, 0.12), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(174, 187, 193, 0.25), transparent 30%),
    linear-gradient(135deg, #fffdf9, #fff1f3, #fff9f2);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
}

.hero-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo-icon {
  width: min(220px, 42vw);
  height: auto;
  object-fit: contain;
  margin-bottom: -60px;
}

.hero-logo-name {
  width: min(620px, 82vw);
  height: auto;
  object-fit: contain;
}

.hero-tagline {
  margin-top: -10px;
  color: var(--deep-red);
  font-size: clamp(22px, 3vw, 33px);
  letter-spacing: 3px;
  font-style: italic;
}

.hero-description {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decoration-one {
  width: 370px;
  height: 370px;
  left: -190px;
  top: 18%;
  border: 1px solid rgba(200, 0, 50, 0.08);
  background: rgba(200, 0, 50, 0.025);
}

.decoration-two {
  width: 300px;
  height: 300px;
  right: -140px;
  bottom: 5%;
  border: 38px solid rgba(174, 187, 193, 0.09);
}

.scroll-down {
  width: 28px;
  height: 44px;
  margin: 43px auto 0;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(140, 0, 31, 0.35);
  border-radius: 30px;
}

.scroll-down span {
  width: 5px;
  height: 9px;
  margin-top: 8px;
  border-radius: 10px;
  background: var(--red);
  animation: scrollMove 1.6s infinite;
}

@keyframes scrollMove {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(15px); opacity: 0; }
  100% { opacity: 0; }
}

/* =====================================================
   06. OUR STORY
===================================================== */

.story-section {
  padding: 120px 7%;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 18%, rgba(200, 0, 50, 0.08), transparent 25%),
    linear-gradient(180deg, #fff, #fff9f4);
}

.story-container {
  width: min(1150px, 100%);
  margin: 0 auto;
}

.story-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.story-heading h2 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
}

.story-heading h2 span {
  color: var(--red);
}

.story-opening {
  max-width: 850px;
}

.story-opening p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.9;
}

.story-opening .story-lead {
  color: var(--dark);
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.55;
}

.story-lead strong {
  color: var(--deep-red);
}

.story-quote {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 48px 65px;
  text-align: center;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--deep-red), var(--red));
  box-shadow: 0 18px 45px rgba(140, 0, 31, 0.18);
}

.story-quote p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(23px, 3vw, 35px);
  line-height: 1.5;
}

.quote-mark {
  position: absolute;
  top: -25px;
  left: 25px;
  color: rgba(255, 255, 255, 0.16);
  font-family: Georgia, serif;
  font-size: 130px;
}

.story-chapters {
  max-width: 1240px;
  margin: 80px auto 90px;
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.story-chapter {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 55px rgba(80, 20, 35, 0.08);
}

.story-chapter-reverse .story-chapter-image {
  order: 2;
}

.story-chapter-reverse .story-chapter-content {
  order: 1;
}

.story-chapter-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #f8eef0;
}

.story-chapter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.story-chapter:hover .story-chapter-image img {
  transform: scale(1.035);
}

.story-date {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 11px 19px;
  color: var(--deep-red);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  box-shadow: 0 8px 25px rgba(30, 10, 15, 0.13);
}

.story-chapter-content {
  padding: 55px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-chapter-label {
  margin-bottom: 14px;
}

.story-chapter-content h3 {
  margin-bottom: 26px;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
}

.story-chapter-content h3 span {
  display: block;
  color: var(--deep-red);
}

.story-chapter-content > p:not(.story-chapter-label) {
  margin-bottom: 17px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}

.chapter-thought {
  margin-top: 13px;
  padding: 18px 20px;
  color: var(--deep-red);
  background: linear-gradient(90deg, #fff0f3, transparent);
  border-left: 3px solid var(--red);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.7;
}

.story-body {
  max-width: 850px;
  margin: 80px auto;
  text-align: center;
}

.story-body p {
  margin: 25px 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.9;
}

.story-body h3 {
  margin: 38px 0;
  color: var(--deep-red);
  font-size: clamp(25px, 4vw, 40px);
  line-height: 1.45;
}

.story-closing {
  max-width: 900px;
  margin: 0 auto;
  padding: 65px 30px 20px;
  text-align: center;
}

.story-logo {
  width: 105px;
  margin: 0 auto 25px;
}

.story-closing > p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.story-closing h2 {
  margin-top: 20px;
  color: var(--deep-red);
  font-size: clamp(30px, 5vw, 52px);
  font-style: italic;
}

.story-signature img {
  width: min(430px, 80vw);
  margin: 50px auto 20px;
}

.story-final-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.story-final-lines strong {
  color: var(--dark);
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* =====================================================
   07. SIGNATURE MENU
===================================================== */

.signature-menu-section {
  padding: 115px 7%;
  background:
    radial-gradient(circle at 10% 15%, rgba(200, 0, 50, 0.08), transparent 24%),
    linear-gradient(135deg, #fff6f3, #fffdf9);
}

.thali-feature {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(80, 20, 35, 0.10);
}

.thali-image {
  min-height: 470px;
  overflow: hidden;
}

.thali-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.thali-feature:hover .thali-image img {
  transform: scale(1.035);
}

.thali-content {
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-label {
  margin-bottom: 12px;
}

.thali-content h3 {
  color: var(--dark);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.thali-content h3 span {
  display: block;
  color: var(--red);
}

.thali-content > p:not(.menu-label) {
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.thali-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.thali-tags span {
  padding: 9px 15px;
  color: var(--deep-red);
  background: var(--pink);
  border-radius: 30px;
  font-size: 12px;
}

.menu-highlight-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 38px;
}

.menu-highlight-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 45px rgba(80, 20, 35, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(80, 20, 35, 0.10);
}

.menu-highlight-image {
  width: 100%;
  height: 250px;
  padding: 16px 16px 0;
  overflow: hidden;
  background: #fff;
}

.menu-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.menu-highlight-card:hover .menu-highlight-image img {
  transform: scale(1.05);
}

.menu-highlight-content {
  padding: 30px 28px 30px;
}

.menu-highlight-label {
  margin-bottom: 14px;
}

.menu-highlight-content h3 {
  margin-bottom: 18px;
  color: #92001f;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
}

.menu-highlight-content p:last-child {
  color: #5f6270;
  font-size: 16px;
  line-height: 1.8;
}

.signature-menu-card {
  position: relative;
  min-height: 280px;
  padding: 38px 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(80, 20, 35, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.signature-menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 0, 50, 0.25);
  box-shadow: 0 18px 45px rgba(200, 0, 50, 0.10);
}

.signature-menu-card h3 {
  margin-bottom: 16px;
  color: var(--deep-red);
  font-size: clamp(24px, 3vw, 31px);
}

.signature-menu-card > p:not(.menu-label) {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.beverages-card {
  margin-top: 38px;
}

.mini-items {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-items span {
  padding: 8px 13px;
  color: var(--deep-red);
  background: #fff0f2;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* =====================================================
   08. CATERING & PARTY HALL
===================================================== */

.celebration-section {
  padding: 115px 7%;
  background:
    radial-gradient(circle at 90% 15%, rgba(200, 0, 50, 0.08), transparent 25%),
    linear-gradient(135deg, #fffdf9, #fff4f2);
}

.celebration-feature {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(80, 20, 35, 0.10);
}

.celebration-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.celebration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.celebration-feature:hover .celebration-image img {
  transform: scale(1.025);
}

.celebration-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 10, 15, 0.72), transparent 45%);
}

.celebration-photo-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}

.celebration-photo-label span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  opacity: 0.8;
}

.celebration-photo-label strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.celebration-content {
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.celebration-content h3 {
  color: var(--dark);
  font-size: clamp(32px, 4vw, 51px);
  line-height: 1.15;
}

.celebration-content h3 span {
  display: block;
  color: var(--red);
}

.celebration-content > p:not(.menu-label) {
  margin-top: 20px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.celebration-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.celebration-highlights > div {
  padding: 16px;
  background: linear-gradient(135deg, #fff0f3, #fffaf7);
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 15px;
}

.celebration-highlights strong {
  display: block;
  color: var(--deep-red);
  font-size: 15px;
}

.celebration-highlights span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 12px;
}

.celebration-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-service-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.event-service-card {
  min-height: 265px;
  padding: 32px 25px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 21px;
  box-shadow: 0 10px 30px rgba(80, 20, 35, 0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.event-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 0, 50, 0.25);
  box-shadow: 0 17px 40px rgba(200, 0, 50, 0.09);
}

.event-service-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--pink);
  border-radius: 50%;
  font-size: 23px;
}

.event-service-card h3 {
  margin-bottom: 13px;
  color: var(--deep-red);
  font-size: 20px;
  line-height: 1.3;
}

.event-service-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.celebration-closing {
  max-width: 750px;
  margin: 65px auto 0;
  text-align: center;
}

.celebration-closing p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.celebration-closing h3 {
  margin-top: 10px;
  color: var(--deep-red);
  font-size: clamp(27px, 4vw, 42px);
  font-style: italic;
}

/* =====================================================
   09. BRAND BANNER
===================================================== */

.brand-banner {
  padding: 55px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #fff;
  background: linear-gradient(120deg, var(--deep-red), var(--red));
}

.brand-banner img {
  width: 95px;
}

.brand-banner p {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  opacity: 0.75;
}

.brand-banner h2 {
  font-size: clamp(30px, 5vw, 55px);
  font-style: italic;
}

/* =====================================================
   10. CONTACT
===================================================== */

.visit-section {
  padding: 115px 7%;
  background:
    radial-gradient(circle at 5% 15%, rgba(200, 0, 50, 0.07), transparent 23%),
    linear-gradient(135deg, #fffdf9, #fff5f3);
}

.visit-layout {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visit-info-card {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 21px;
  box-shadow: 0 10px 30px rgba(80, 20, 35, 0.05);
}

.visit-info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--pink);
  border-radius: 50%;
  font-size: 22px;
}

.visit-label {
  margin-bottom: 7px;
  font-size: 10px;
  letter-spacing: 3px;
}

.visit-info-card h3 {
  margin-bottom: 8px;
  color: var(--deep-red);
  font-size: 22px;
}

.visit-info-card p {
  color: var(--text);
  line-height: 1.7;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone-list a {
  color: var(--dark);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}

.phone-list a:hover {
  color: var(--red);
}

.whatsapp-note {
  margin-top: 9px;
  font-size: 12px;
}

.meal-schedule {
  padding: 42px 36px;
  color: #fff;
  background: linear-gradient(145deg, var(--deep-red), var(--red));
  border-radius: 25px;
  box-shadow: 0 18px 50px rgba(140, 0, 31, 0.18);
}

.meal-schedule .visit-label {
  color: rgba(255, 255, 255, 0.75);
}

.meal-schedule > h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.15;
}

.meal-schedule > h3 span {
  display: block;
  color: #ffd7df;
}

.meal-intro {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.meal-period {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.meal-period-icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-red);
  background: #fff;
  border-radius: 50%;
}

.meal-period strong {
  display: block;
  margin-bottom: 3px;
}

.meal-period span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.visit-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meal-schedule .btn-primary {
  color: var(--deep-red);
  background: #fff;
}

.meal-schedule .whatsapp-button {
  color: #13763e;
  background: #ddf7e7;
}

.hotel-map {
  width: 100%;
  height: 420px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(200, 0, 50, 0.08);
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(80, 20, 35, 0.08);
}

.hotel-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-bottom {
  max-width: 850px;
  margin: 35px auto 0;
  text-align: center;
}

.contact-bottom > p {
  color: var(--text);
  line-height: 1.7;
}

.contact-bottom > div {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-bottom a {
  padding: 10px 17px;
  color: #13763e;
  background: #e7f8ed;
  border: 1px solid #b8e3c7;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

/* =====================================================
   11. FOOTER
===================================================== */

.site-footer {
  position: relative;
  padding: 75px 7% 25px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3f5, #fffaf7, #fff0f3);
  border-top: 1px solid rgba(200, 0, 50, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background: rgba(200, 0, 50, 0.06);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 0.9fr;
  gap: 55px;
}

.footer-brand {
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-icon {
  width: 95px;
  margin: 0 auto -25px;
}

.footer-logo-name {
  width: 270px;
  max-width: 100%;
  margin: -2px auto 0;
}

.footer-tagline {
  width: 100%;
  margin-top: -2px;
  color: var(--deep-red);
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.footer-description {
  width: 100%;
  margin-top: 16px;
  color: var(--text);
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h3 {
  margin-bottom: 22px;
  color: var(--deep-red);
  font-size: 17px;
  font-weight: 800;
}

.footer-column > a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column > a:hover {
  color: var(--red);
  transform: translateX(4px);
}

.footer-column p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-contact-column h3 {
  width: 100%;
  margin: 0 0 22px;
}

.footer-contact-column > a {
  width: 100%;
  margin: 0 0 3px;
  padding: 0;
  line-height: 1.35;
  text-align: left;
}

.footer-contact-column > a:hover {
  transform: none;
}

.footer-contact-column > p {
  width: 100%;
  margin: 14px 0 0;
  padding: 0;
  text-align: left;
}

.footer-hours {
  margin-bottom: 14px;
}

.footer-hours span {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.footer-hours strong {
  color: var(--deep-red);
  font-size: 17px;
}

.footer-whatsapp {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #13763e;
  background: #e7f8ed;
  border: 1px solid #b7e4c7;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-whatsapp a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(19, 118, 62, 0.12);
}

.footer-message {
  max-width: 900px;
  margin: 65px auto 35px;
  padding: 25px;
  text-align: center;
  border-top: 1px solid rgba(200, 0, 50, 0.10);
  border-bottom: 1px solid rgba(200, 0, 50, 0.10);
}

.footer-message span {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.footer-message strong {
  display: block;
  margin-top: 7px;
  color: var(--deep-red);
  font-size: clamp(20px, 3vw, 29px);
  font-style: italic;
}

.footer-bottom {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: var(--light-text);
  font-size: 12px;
}

.back-to-top {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 7px 20px rgba(200, 0, 50, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--deep-red);
}

/* =====================================================
   12. REVEAL ANIMATIONS
===================================================== */

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   13. RESPONSIVE STYLES
===================================================== */

@media (max-width: 1000px) {
  .celebration-feature {
    grid-template-columns: 1fr;
  }

  .celebration-image {
    min-height: 500px;
  }

  .event-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .story-chapter,
  .thali-feature,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .story-chapter-reverse .story-chapter-image {
    order: 1;
  }

  .story-chapter-reverse .story-chapter-content {
    order: 2;
  }

  .story-chapter-image {
    min-height: 420px;
  }

  .thali-image {
    min-height: 380px;
  }

  .menu-highlight-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    column-gap: 0;
  }
}

@media (max-width: 768px) {
  .header,
  .navbar {
    min-height: 82px;
  }

  .navbar {
    padding: 0 5%;
  }

  .brand-name {
    width: 165px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 5%;
    right: 5%;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 253, 249, 0.98);
    border-radius: 15px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 18px 65px;
  }

  .hero-logo-icon {
    width: min(165px, 44vw);
    margin-bottom: 12px;
  }

  .hero-logo-name {
    width: min(390px, 91vw);
  }

  .hero-tagline {
    margin-top: 14px;
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 230px;
  }

  .story-section {
    padding: 85px 6%;
  }

  .story-heading {
    margin-bottom: 35px;
  }

  .story-opening p {
    font-size: 16px;
  }

  .story-quote {
    margin: 45px 0;
    padding: 40px 25px;
  }

  .story-body {
    margin: 55px auto;
  }

  .story-closing {
    padding-left: 0;
    padding-right: 0;
  }

  .story-final-lines strong {
    font-size: 14px;
  }

  .brand-banner {
    flex-direction: column;
    text-align: center;
  }

  .brand-banner img {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .intro-skip {
    right: 18px;
    bottom: 20px;
    padding: 9px 17px;
  }

  .story-chapters {
    margin: 55px auto 65px;
    gap: 30px;
  }

  .story-chapter {
    min-height: auto;
    border-radius: 22px;
  }

  .story-chapter-image {
    min-height: 300px;
  }

  .story-chapter-content {
    padding: 34px 23px;
  }

  .story-chapter-content h3 {
    font-size: 30px;
  }

  .chapter-thought {
    padding: 15px 16px;
  }

  .signature-menu-section,
  .celebration-section,
  .visit-section {
    padding: 85px 6%;
  }

  .thali-feature,
  .celebration-feature {
    margin-top: 40px;
    border-radius: 20px;
  }

  .thali-image {
    min-height: 260px;
  }

  .thali-content {
    padding: 35px 24px;
  }

  .menu-highlight-image {
    height: 210px;
    padding: 14px 14px 0;
  }

  .menu-highlight-image img {
    border-radius: 18px;
  }

  .menu-highlight-content {
    padding: 24px 22px 26px;
  }

  .menu-highlight-content h3 {
    font-size: 24px;
  }

  .signature-menu-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .celebration-image {
    min-height: 390px;
  }

  .celebration-content {
    padding: 35px 23px;
  }

  .celebration-highlights,
  .event-service-grid {
    grid-template-columns: 1fr;
  }

  .celebration-buttons,
  .visit-buttons {
    flex-direction: column;
  }

  .celebration-buttons .btn,
  .visit-buttons .btn {
    width: 100%;
  }

  .event-service-card {
    min-height: auto;
  }

  .visit-info-card {
    padding: 23px 18px;
  }

  .visit-info-icon {
    width: 46px;
    height: 46px;
  }

  .meal-schedule {
    padding: 35px 23px;
  }

  .hotel-map {
    height: 350px;
  }

  .contact-bottom > div {
    flex-direction: column;
  }

  .site-footer {
    padding: 65px 6% 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo-icon {
    width: 78px;
  }

  .footer-logo-name {
    width: 200px;
  }

  .footer-message {
    margin-top: 50px;
    padding: 22px 5px;
  }

  .footer-bottom {
    align-items: flex-end;
  }
}

@media (max-width: 450px) {
  .brand-name {
    width: 145px;
  }

  .hero-logo-icon {
    width: 135px;
  }

  .hero-logo-name {
    width: 320px;
  }

  .hero-tagline {
    letter-spacing: 2px;
  }

  .small-heading {
    letter-spacing: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
