/* =====================
   GLOBAL STYLES
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* BRAND COLORS (FROM LOGO) */
:root {
  --primary-orange: #f15a29;
  --primary-green: #4a8f2c;
  --dark-green: #2f5e1a;
  --gold: #c9a24d;
  --dark: #111;
  
  --primary:#f05a28;
  --green:#2e7d32;
  --gold:#caa24d;
  --bg:#f9f6f2;
}

/* COMMON */
a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* =====================
   TOP CONTACT BAR
===================== */

.top-bar {
  background-color: var(--primary-orange);
  color: #ffffff;
  font-size: 14px;
  padding: 6px 0;
  min-height: 6vh;
}

.top-bar .top-link {
  color: #ffffff;
  font-weight: 500;
}

.top-bar .top-link:hover {
  color: #ffefc2;
}

.top-bar .top-text {
  font-weight: 400;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .top-bar {
    font-size: 13px;
  }
}
/* =====================
   NAVBAR
===================== */

.custom-navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.navbar-logo {
  height: 55px;
}

/* MENU LINKS */
.navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  margin-left: 20px;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange);
}

/* ACTIVE LINK */
.navbar-nav .nav-link.active {
  color: var(--primary-green);
}

/* ORDER BUTTON STYLE */
.order-btn {
  background-color: var(--primary-orange);
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 30px;
  margin-left: 25px;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: var(--dark-green);
}

/* MOBILE */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* MOBILE MENU SPACING */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }

  .order-btn {
    margin-top: 10px;
    display: inline-block;
    text-align: center;
  }
}
/* =====================
   ROYAL HERO SECTION
===================== */

.hero-royal {
  position: relative;
  min-height: 80vh;
  background: url("../images/atithi-hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 80px 15px;
}

/* DARK LUXURY OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}
/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 1.3s ease forwards;
}

/* TAGLINE */
.hero-tagline {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* TITLE */
.hero-title {
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-title span {
  color: #ffffff;
}

/* DESCRIPTION */
.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 40px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-reserve {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-reserve:hover {
  background-color: #3c7b24;
  color: #fff;
}

.btn-home {
  background-color: #d9b36c;
  color: #1b1b1b;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-home:hover {
  background-color: #c8a154;
}

/* ANIMATION */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }
}


/* =====================
   ABOUT SECTION
===================== */

.about-section {
  padding: 50px 0;
  background-color: #f8f8f6;
}

/* CONTENT */
.about-content {
  max-width: 820px;
}

/* TAGLINE */
.about-tagline {
  display: inline-block;
  font-size: 16x;
  letter-spacing: 2px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

/* TITLE */
.about-title {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-title span {
  color: var(--primary-orange);
  font-style: italic;
}

/* TEXT */
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* IMAGE */
.about-image img {
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
    text-align: center;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-content {
    max-width: 100%;
  }
}


/* =====================
   WHY CHOOSE ATITHI
===================== */

.why-atithi {
  padding: 50px 0;
  background-color: #ffffff;
}

/* SECTION HEADING */
.section-tagline {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary-green);
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 600;
}

.section-title span {
  color: var(--primary-orange);
  font-style: italic;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* ICON */
.why-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

/* TITLE */
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TEXT */
.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}
/* =====================
   ROYAL FOOTER
===================== */

.footer-royal {
  background-color: #000501;
  color: #dcdcdc;
  padding: 80px 0 30px;
  font-size: 0.95rem;
}

/* LOGO */
.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

/* TAGLINE */
.footer-tagline {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.7;
}

/* TITLES */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

/* CONTACT */
.footer-royal a {
  color: #cfcfcf;
}

.footer-royal a:hover {
  color: var(--primary-orange);
}

/* CTA */
.footer-cta-text {
  margin-bottom: 15px;
  color: #bfbfbf;
}

.footer-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* CTA PRIMARY */
.footer-btn-primary {
  background-color: var(--primary-green);
  color: #ffffff;
}

.footer-btn-primary:hover {
  background-color: var(--primary-orange);
  color: #ffffff;
}

/* CTA OUTLINE */
.footer-btn-outline {
  border: 1px solid #d9b36c;
  color: #d9b36c;
}

.footer-btn-outline:hover {
  background-color: #d9b36c;
  color: #1b1b1b;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #9f9f9f;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-royal {
    text-align: center;
  }

  .footer-btn {
    margin-right: 0;
  }
}


/* =====================
   MOBILE STICKY CTA
===================== */

.mobile-sticky-cta {
  position: fixed;
  bottom: 2px;
  left: 0px;
  right: 0px;
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  z-index: 999;
}

/* BUTTON */
.sticky-btn {
  background-color: #1c1c1c;
  color: #ffffff;
  border-radius: 12px;
  padding: 3px 5px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.25s ease;
}

/* ICON */
.sticky-btn .icon {
  font-size: 1rem;
}

/* HOVER / TAP */
.sticky-btn:hover {
  background-color: var(--primary-green);
  color: #ffffff;
}

/* SAFE AREA (iPhone notch support) */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-sticky-cta {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

/* =====================
   STICKY SOCIAL ICONS
===================== */

.sticky-social {
  position: fixed;
  top: 75%;
  right: 8px; /* Change to left: 15px; if needed */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

/* BUTTON */
.social-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* BRAND COLORS */
.social-btn.instagram { background: #e4405f; }
.social-btn.facebook { background: #1877f2; }
.social-btn.whatsapp { background: #25d366; }

/* HOVER EFFECT */
.social-btn:hover {
  transform: translateX(-6px);
  opacity: 0.9;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .sticky-social {
    right: 8px;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}



/* =====================
   CONTACT US – PREMIUM
===================== */

.contact-section {
  background: #f4f4f2;
}

.contact-left {
  background: #ffffff;
  padding: 90px 70px;
}

.contact-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #d6452d;
  margin-bottom: 25px;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 45px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 17px;
}

.contact-details i {
  font-size: 22px;
  color: #d6452d;
  margin-top: 3px;
}

.contact-details a {
  color: #111;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--primary-green);
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
}

/* =====================
   MOBILE RESPONSIVE
===================== */

@media (max-width: 991px) {
  .contact-left {
    padding: 60px 30px;
    text-align: center;
  }

  .contact-details li {
    justify-content: center;
  }

  .contact-map iframe {
    min-height: 400px;
  }
}

/* Menu Page */
/* ================= CATEGORY BAR ================= */
.category-bar{
  background:#fff;
  position:sticky;
  top:56px;
  z-index:99;
  display:flex;
  overflow-x:auto;
  border-bottom:1px solid #eee;
}
.category-bar button{
  border:none;
  background:none;
  padding:14px 18px;
  font-weight:600;
  color:var(--dark);
  white-space:nowrap;
}
.category-bar button:hover{
  color:var(--primary);
}

/* ================= MENU GRID ================= */
.menu-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

/* ================= MENU CARD (HORIZONTAL) ================= */
.menu-card{
  background:#fff;
  border-radius:16px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition:.25s;
}
.menu-card:hover{
  transform:translateY(-2px);
}

/* Image */
.menu-card img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:12px;
  flex-shrink:0;
}

/* Center content */
.menu-info{
  flex:1;
}
.menu-info h6{
  font-size:15px;
  font-weight:600;
  margin-bottom:4px;
}
.menu-info .price{
  font-size:14px;
  font-weight:700;
  color:var(--green);
}

/* Add button */
.add-btn{
  width:38px;
  height:38px;
  border-radius:50%;
  border:2px solid var(--green);
  background:#fff;
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:.25s;
  flex-shrink:0;
}
.add-btn:hover{
  background:var(--green);
  color:#fff;
}

/* ================= FLOATING CART ================= */
.floating-cart{
  position:fixed;
  bottom:50px;
  right:20px;
  background:var(--green);
  color:#fff;
  padding:12px 20px;
  border-radius:30px;
  font-weight:600;
  box-shadow:0 8px 22px rgba(0,0,0,.25);
  z-index:999;
  text-decoration:none;
}
.floating-cart i{
  margin-right:6px;
}

/* Mobile tweaks */
@media(max-width:576px){
  .menu-card img{
    width:70px;
    height:70px;
  }
  .floating-cart{
  position:fixed;
  bottom:90px;
  left:20px;
  right:200px;
}
}

/* Cart Card */
.cart-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  margin-bottom:16px;
}
.cart-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}
.cart-item h6{
  margin:0;
  font-size:15px;
}
.qty-btn{
  border:1px solid #ccc;
  border-radius:6px;
  padding:2px 10px;
  cursor:pointer;
  font-weight:600;
}

/* Summary */
.summary{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.btn-whatsapp{
  background:var(--green);
  color:#fff;
  font-weight:600;
}

/* Mobile Sticky */
.mobile-checkout{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#fff;
  padding:12px 16px;
  box-shadow:0 -4px 12px rgba(0,0,0,.15);
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
}
.mobile-checkout button{
  background:var(--green);
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:24px;
  font-weight:600;
}