/* 
 * Cafe Florista Salt Lake - Luxury Website Stylesheet
 * Tone: Premium Ivory, Pearl White, Champagne Gold, with Blush Accents
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Poppins:wght@200;300;400;500;600&display=swap');

:root {
  /* Luxuriously balanced palette: Neutral base with sophisticated pink accents */
  --primary-blush: #F7D6E0; /* Accent Pink */
  --soft-rose: #E8B4C7;    /* Accent Pink */
  --warm-ivory: #FAF6F0;   /* Premium Champagne Cream */
  --rose-gold: #D6A77A;    /* Luxury Gold Highlight */
  --deep-mauve: #704E5E;   /* Muted dark contrast */
  --rich-charcoal: #1C191A;/* High readability dark neutral */
  --muted-text: #665F61;
  --luxury-border: rgba(112, 78, 94, 0.12);
  --soft-white: #FFFFFF;   /* Pure White base */
  
  --font-serif-lux: 'Cormorant Garamond', serif;
  --font-serif-display: 'Playfair Display', serif;
  --font-sans-body: 'Inter', sans-serif;
  --font-sans-alt: 'Poppins', sans-serif;
  
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* General Resets & Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--soft-white);
  color: var(--rich-charcoal);
  font-family: var(--font-sans-body);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif-lux);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--deep-mauve);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--warm-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--soft-rose);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--deep-mauve);
}

/* Premium Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--soft-white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  animation: pulseLogo 2s infinite ease-in-out;
}

.loader-bar-bg {
  width: 120px;
  height: 1px;
  background: var(--primary-blush);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--deep-mauve);
  position: absolute;
  top: 0;
  left: 0;
  animation: loadProgress 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Floating Canvas particles */
#floral-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
}

/* Custom Cursor */
.custom-cursor {
  width: 16px;
  height: 16px;
  border: 1px solid var(--soft-rose);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
  display: none;
}

.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--rose-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor, .custom-cursor-dot {
    display: block;
  }
}

/* Header & Elegant Transparent Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: var(--transition);
  padding: 2.2rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Default links on transparent dark header are crisp white */
header .logo-text {
  color: var(--soft-white);
}

header .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

header .btn-header-reserve {
  background-color: transparent;
  color: var(--soft-white);
  border-color: rgba(255, 255, 255, 0.4);
}

header .btn-header-reserve:hover {
  background-color: var(--soft-white);
  color: var(--deep-mauve);
}

header .menu-toggle span {
  background-color: var(--soft-white);
}

/* Scrolled Header Style */
header.scrolled {
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 30px rgba(26, 26, 26, 0.02);
  border-bottom: 1px solid var(--luxury-border);
}

header.scrolled .logo-text {
  color: var(--deep-mauve);
}

header.scrolled .nav-link {
  color: var(--rich-charcoal);
}

header.scrolled .nav-link:hover {
  color: var(--deep-mauve);
}

header.scrolled .btn-header-reserve {
  background-color: var(--deep-mauve);
  color: var(--soft-white);
  border-color: var(--deep-mauve);
}

header.scrolled .btn-header-reserve:hover {
  background-color: transparent;
  color: var(--deep-mauve);
}

header.scrolled .menu-toggle span {
  background-color: var(--deep-mauve);
}

.nav-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled .logo-img {
  width: 40px;
  height: 40px;
  border-color: var(--luxury-border);
}

.logo-text {
  font-family: var(--font-serif-lux);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 3.2rem;
}

.nav-link {
  font-family: var(--font-sans-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--rose-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Premium Button Architecture */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border-radius: 0; 
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--deep-mauve);
  color: var(--soft-white);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--deep-mauve);
  border-color: var(--deep-mauve);
}

.btn-outline {
  background-color: transparent;
  color: var(--deep-mauve);
  border: 1px solid var(--deep-mauve);
}

.btn-outline:hover {
  background-color: var(--deep-mauve);
  color: var(--soft-white);
}

.btn-gold {
  background-color: var(--rose-gold);
  color: var(--soft-white);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}

/* Mobile Drawer Styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  z-index: 1500;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: var(--soft-white);
  border-left: 1px solid var(--luxury-border);
  box-shadow: -15px 0 45px rgba(141, 97, 117, 0.04);
  transition: var(--transition);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--luxury-border);
}

.drawer-close {
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--deep-mauve);
  font-weight: 200;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drawer-link {
  font-family: var(--font-serif-lux);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--deep-mauve);
  transition: var(--transition-fast);
}

.drawer-link:hover {
  color: var(--rose-gold);
  padding-left: 10px;
}

/* Mobile Hamburger Trigger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 1.5px;
  transition: var(--transition-fast);
}

/* Hero Section (Cinematic Luxury) */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 1.5rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--soft-white);
  max-width: 900px;
}

.hero-title-sub {
  font-family: var(--font-sans-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--primary-blush);
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-title {
  font-family: var(--font-serif-lux);
  font-size: 6.5rem;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--soft-white);
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: fadeInUp 1.2s forwards 0.8s;
}

.hero-tagline {
  font-family: var(--font-serif-lux);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--warm-ivory);
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.25);
  opacity: 0;
  animation: fadeInUp 1.2s forwards 1.1s;
}

.hero-desc {
  font-family: var(--font-sans-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeInUp 1.2s forwards 1.4s;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1.2s forwards 1.7s;
}

.hero-btns .btn-outline {
  color: var(--soft-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-btns .btn-outline:hover {
  background-color: var(--soft-white);
  color: var(--deep-mauve);
  border-color: var(--soft-white);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--soft-white);
}

.scroll-text {
  font-family: var(--font-sans-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--rose-gold);
  animation: scrollDown 2s infinite ease-in-out;
}

/* Inner Page Hero header */
.hero-inner {
  position: relative;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-inner h1 {
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

/* General Section Rules */
section {
  padding: 10rem 0;
}

.container {
  width: 88%;
  max-width: 1250px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 6rem auto;
}

.section-subtitle {
  font-family: var(--font-sans-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif-lux);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.section-desc {
  font-family: var(--font-serif-lux);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted-text);
  font-weight: 300;
}

/* Experience Section (Split Layout) */
.experience {
  background-color: var(--warm-ivory); 
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6rem;
  align-items: center;
}

.exp-img-wrapper {
  position: relative;
}

.exp-img-decor {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--luxury-border);
  z-index: 1;
}

.exp-img {
  position: relative;
  z-index: 2;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.03);
}

.exp-content h3 {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.exp-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif-lux);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  border-bottom: 1px solid var(--luxury-border);
  padding-bottom: 0.8rem;
}

.feature-item i {
  color: var(--rose-gold);
  font-size: 1.1rem;
}

/* Menu Redesign (Clean Luxury Print layout) */
.menu-preview {
  background-color: var(--soft-white); 
}

.menu-preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.menu-list-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu-item-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
}

.menu-item-name {
  font-family: var(--font-serif-lux);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rich-charcoal); 
  background: var(--soft-white);
  padding-right: 15px;
  z-index: 2;
}

.menu-item-price {
  font-family: var(--font-serif-lux);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rose-gold);
  background: var(--soft-white);
  padding-left: 15px;
  z-index: 2;
}

/* Dotted leader connector line */
.menu-item-top::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted rgba(112, 78, 94, 0.2);
  z-index: 1;
}

.menu-item-desc {
  font-family: var(--font-sans-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted-text);
  line-height: 1.6;
}

.menu-category-block h3 {
  font-family: var(--font-serif-lux);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--deep-mauve);
  position: relative;
}

.menu-category-block h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--rose-gold);
  margin: 1rem auto 0 auto;
}

/* Ambience Gallery (Premium Uniform Aspect Grid) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 30px rgba(112, 78, 94, 0.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.55); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--soft-white);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay span {
  font-family: var(--font-serif-lux);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

/* Testimonials Redesign (Editorial Quote Format) */
.testimonials {
  background-color: var(--warm-ivory);
  padding: 12rem 0;
}

.testimonial-slider {
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: var(--transition);
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 2rem;
}

.test-text {
  font-family: var(--font-serif-lux);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--deep-mauve);
  margin-bottom: 2.5rem;
}

.test-author {
  font-family: var(--font-sans-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
}

.test-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 4rem;
}

.test-btn {
  background: transparent;
  border: 1px solid var(--luxury-border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--deep-mauve);
  transition: var(--transition-fast);
}

.test-btn:hover {
  background-color: var(--deep-mauve);
  color: var(--soft-white);
  border-color: var(--deep-mauve);
}

/* Celebrations Section */
.celebrations {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 14rem 0;
  text-align: center;
  color: var(--soft-white);
}

.celebrations-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26,26,26,0.65), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.cel-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cel-content h2 {
  font-size: 4.5rem;
  font-weight: 200;
  color: var(--soft-white);
  margin-bottom: 2rem;
}

.cel-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4.5rem;
  list-style: none;
  font-family: var(--font-serif-lux);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
}

.cel-list li::after {
  content: '•';
  margin-left: 2rem;
  color: var(--rose-gold);
}

.cel-list li:last-child::after {
  content: '';
}

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.insta-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--soft-white);
  font-size: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-card:hover .insta-img {
  transform: scale(1.05);
}

/* Location Grid Layout */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.loc-info {
  padding: 10rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--warm-ivory);
}

.loc-info h2 {
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-bottom: 4rem;
}

.loc-item {
  display: flex;
  gap: 1.2rem;
}

.loc-item i {
  color: var(--rose-gold);
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.loc-item-text h4 {
  font-family: var(--font-serif-lux);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.loc-item-text p {
  font-family: var(--font-sans-body);
  font-size: 0.9rem;
  color: var(--muted-text);
}

.loc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.loc-map {
  position: relative;
  min-height: 600px;
}

.loc-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 
 * 50 Lakh Luxury Hotel-Style Minimalist Light Footer
 */
footer {
  background-color: var(--warm-ivory); /* Light Warm Champagne Cream background */
  color: var(--rich-charcoal);
  padding: 8rem 0 4rem 0;
  border-top: 1px solid var(--luxury-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 380px;
}

.footer-brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--luxury-border);
}

.footer-brand-title {
  font-family: var(--font-serif-lux);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--deep-mauve);
}

.footer-brand-tagline {
  font-family: var(--font-serif-lux);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted-text);
}

.footer-newsletter {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-newsletter h4 {
  font-family: var(--font-serif-lux);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep-mauve);
  letter-spacing: 0.05em;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rose-gold);
  padding: 0.6rem 0.2rem;
  font-family: var(--font-sans-body);
  font-size: 0.9rem;
  color: var(--rich-charcoal);
  transition: var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(112, 78, 94, 0.4);
}

.newsletter-form input:focus {
  border-bottom-color: var(--deep-mauve);
}

.newsletter-form button {
  background: transparent;
  border: none;
  font-family: var(--font-sans-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-mauve);
  cursor: pointer;
  border-bottom: 1.5px solid var(--deep-mauve);
  padding: 0.6rem 0.2rem;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  color: var(--rose-gold);
  border-bottom-color: var(--rose-gold);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--luxury-border);
  margin-bottom: 4rem;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-nav-block h4,
.footer-social-block h4 {
  font-family: var(--font-serif-lux);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--deep-mauve);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-nav-links a:hover {
  color: var(--deep-mauve);
  padding-left: 5px;
}

.footer-nav-block p {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 0.8rem;
}

.footer-nav-block p a {
  color: var(--muted-text);
  transition: var(--transition-fast);
}

.footer-nav-block p a:hover {
  color: var(--deep-mauve);
}

.footer-social-icons {
  display: flex;
  gap: 1.5rem;
}

.footer-social-icons a {
  font-size: 1.1rem;
  color: var(--muted-text);
  transition: var(--transition-fast);
}

.footer-social-icons a:hover {
  color: var(--deep-mauve);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--luxury-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted-text);
  opacity: 0.8;
}

/* Modals & Forms */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 90%;
  max-width: 600px;
  margin: auto 0;
  background: var(--soft-white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(40px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.modal.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 2rem 3rem 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--luxury-border);
}

.modal-header h3 {
  font-size: 2.4rem;
  font-weight: 300;
}

.modal-close {
  font-size: 1.8rem;
  color: var(--deep-mauve);
  cursor: pointer;
}

.modal-body {
  padding: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

label {
  display: block;
  font-family: var(--font-sans-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-mauve);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--luxury-border);
  background: var(--soft-white);
  font-family: var(--font-sans-body);
  font-size: 0.9rem;
  color: var(--rich-charcoal);
  border-radius: 0;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--deep-mauve);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 92%;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--soft-white);
  font-size: 2.2rem;
  cursor: pointer;
}

/* Toast Message */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1.2rem 2.5rem;
  background-color: var(--deep-mauve);
  color: var(--soft-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  z-index: 2500;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile Sticky Conversion Footer Bar */
.mobile-conversion-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--luxury-border);
  z-index: 850;
  grid-template-columns: 1fr 1fr;
  padding: 0.8rem 1.2rem;
  gap: 1.2rem;
  box-shadow: 0 -8px 25px rgba(26, 26, 26, 0.03);
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(232, 180, 199, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 25px 8px rgba(232, 180, 199, 0.15);
  }
}

@keyframes scrollDown {
  0% {
    top: -50%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 150%;
  }
}

/* Responsive Media Queries (Deep Mobile-First Adjustments) */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .split-layout {
    gap: 4rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-preview-layout {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 6rem 0;
  }
  
  /* Show hamburger navigation menu toggle */
  .menu-toggle {
    display: flex;
    z-index: 999;
  }
  
  .nav-menu {
    display: none; 
  }
  
  /* Layout Headers optimization for Mobile width */
  header {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--luxury-border);
  }
  
  header .logo-text {
    color: var(--deep-mauve);
  }
  
  header .logo-img {
    border-color: var(--luxury-border);
  }
  
  header .menu-toggle span {
    background-color: var(--deep-mauve);
  }
  
  header .btn-header-reserve {
    display: none !important;
  }
  
  /* Clean Hero margins on mobile screens */
  .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Stacking split pages elements */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .exp-img-wrapper {
    order: 2;
  }
  
  .exp-content {
    order: 1;
    text-align: center;
  }
  
  .exp-content h3 {
    font-size: 2.4rem;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  /* Menu Layout Columns on Mobile */
  .menu-preview-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .menu-item-name {
    font-size: 1.3rem;
  }
  
  .menu-item-price {
    font-size: 1.2rem;
  }
  
  /* Testimonials slider scaling on Mobile sizes */
  .test-text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  
  /* Gallery items adjustments on mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Instagram grid */
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .cel-content h2 {
    font-size: 2.8rem;
  }
  
  .cel-list {
    font-size: 1.2rem;
    gap: 1rem;
  }
  
  .loc-grid {
    grid-template-columns: 1fr;
  }
  
  .loc-info {
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .loc-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .loc-btns {
    justify-content: center;
  }
  
  .loc-map {
    min-height: 350px;
  }
  
  /* New light-weight footer responsive queries */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-newsletter {
    max-width: 100%;
    width: 100%;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  /* Show Mobile Bottom Bar Navigation Conversions */
  .mobile-conversion-bar {
    display: grid;
  }
  
  /* Modal inputs rows on mobile */
  .form-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
  }
  
  .form-row .form-group {
    flex: 1 !important;
    min-width: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .modal-container {
    width: 95%;
    margin: 2rem 0;
  }
  
  .modal-header {
    padding: 1.5rem 1.8rem;
  }
  
  .modal-header h3 {
    font-size: 1.7rem;
  }
  
  .modal-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
  }
  
  .form-group {
    margin-bottom: 0 !important;
  }

  .form-group label {
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
  }

  .form-control {
    padding: 0.95rem 1.2rem;
    font-size: 0.88rem;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #booking-form button[type="submit"] {
    padding: 1.05rem !important;
    font-size: 0.88rem;
    margin-top: 0.6rem;
  }

  #booking-form textarea {
    height: 90px !important;
    min-height: 90px !important;
    padding: 0.7rem 0.9rem !important;
  }
}
