/* 
  HAZE Café & Bistro, Kolkata - Custom Premium Luxury Stylesheet
  Inspired by kocaofficial.com, Soho House, and Aesop
  Color Palette: Deep Teal Green (#234F4A), Champagne Gold (#D2B08A), Warm Ivory (#F6F1E8), Deep Forest (#0F2422), Charcoal Black (#181818)
*/

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

:root {
  --color-teal: #234F4A;
  --color-gold: #D2B08A;
  --color-ivory: #F6F1E8;
  --color-forest: #0F2422;
  --color-charcoal: #181818;
  --color-white: #ffffff;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s ease;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-forest);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

/* --- Custom Cursor --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease;
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
}

/* --- Reveal Transitions --- */
.reveal-init {
  opacity: 0 !important;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-init.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --- Loader Wrap --- */
.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-forest);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.76, 0, 0.24, 1), visibility 1s;
}

.loader-wrap.fade-out {
  opacity: 0;
  visibility: hidden;
}

.inner-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  height: 80px;
  width: auto;
  opacity: 0;
  transform: scale(0.9);
  animation: logoFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.loader-line {
  width: 120px;
  height: 1px;
  background-color: rgba(210, 176, 138, 0.2);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  animation: lineLoading 1.5s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineLoading {
  to {
    left: 100%;
  }
}

/* --- Structure Containers --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 {
  font-size: 5.5rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2.2rem;
}

p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(24, 24, 24, 0.8);
}

.italic-highlight {
  font-style: italic;
  font-family: var(--font-serif);
}

.subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 15px;
  display: block;
}

/* --- Header / Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-medium);
}

/* Header Scrolled State */
.main-header.scrolled {
  background-color: rgba(15, 36, 34, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(210, 176, 138, 0.15);
}

.main-header.scrolled .navigation a {
  color: var(--color-ivory);
}

.header-top {
  display: none; /* Removed for modern clean aesthetic */
}

.main-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  transition: padding 0.3s ease;
}

.main-header.scrolled .main-box {
  padding: 15px 0;
}

.logo-box .logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-medium);
}

.nav-box {
  display: flex;
  align-items: center;
}

.main-menu .navigation {
  list-style: none;
  display: flex;
  gap: 40px;
}

.main-menu .navigation a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--color-ivory);
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.main-menu .navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.main-menu .navigation a:hover {
  color: var(--color-gold);
}

.main-menu .navigation a:hover::after,
.main-menu .navigation li.current a::after {
  width: 100%;
}

.main-menu .navigation li.current a {
  color: var(--color-gold);
}

/* Header CTA Button */
.link-btn .theme-btn {
  padding: 10px 24px;
  font-size: 11px;
  border-radius: 0;
}

/* Mobile Toggler */
.nav-toggler {
  display: none;
}

.hidden-bar-opener {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 25px;
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--color-ivory);
  transition: var(--transition-medium);
}

@media (max-width: 1024px) {
  .nav-box, .link-btn {
    display: none;
  }
  .nav-toggler {
    display: block;
  }
}

/* --- Mobile Side Navigation Overlay --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-forest);
  z-index: 1001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  transition: right 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-ivory);
  cursor: pointer;
  margin-bottom: 50px;
  font-family: var(--font-serif);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--color-ivory);
  transition: var(--transition-medium);
}

.mobile-nav-links a:hover {
  color: var(--color-gold);
  padding-left: 10px;
}

/* --- Theme Buttons --- */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  border: 1px solid var(--color-gold);
  background-color: transparent;
  color: var(--color-gold);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-forest) !important;
  transform: translateY(-2px);
}

.theme-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-style-two {
  background-color: var(--color-gold);
  color: var(--color-forest) !important;
}

.btn-style-two::before {
  background-color: var(--color-ivory);
}

.btn-style-two:hover {
  color: var(--color-forest) !important;
  border-color: var(--color-gold);
}

/* --- Hero Section --- */
.video-banner {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(15,36,34,0.3) 0%, rgba(15,36,34,0.7) 100%);
  z-index: 2;
}

.video-banner .content-box {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  color: var(--color-ivory);
  margin: 0 auto;
}

.video-banner .hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 40px;
}

.video-banner h1 {
  font-size: 6rem;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-ivory);
}

.video-banner .subheadline {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(246, 241, 232, 0.8);
  margin-bottom: 45px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .video-banner h1 {
    font-size: 3.5rem;
  }
  .video-banner .subheadline {
    font-size: 1.1rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* --- About Section --- */
.about-section .about-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-text-column {
  padding-right: 40px;
}

.about-title {
  font-size: 4rem;
  margin-bottom: 30px;
  line-height: 1.1;
}

.about-desc {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-image-column {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  overflow: hidden;
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .about-section .about-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-text-column {
    padding-right: 0;
  }
  .about-title {
    font-size: 3rem;
  }
}

/* --- Press Wall Section --- */
.press-wall-section {
  background-color: var(--color-ivory);
  padding: 60px 0;
  border-bottom: 1px solid rgba(35, 79, 74, 0.08);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.press-item {
  text-align: center;
  padding: 10px 20px;
}

.press-logo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-teal);
  margin-bottom: 15px;
  opacity: 0.9;
}

.press-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-charcoal);
  font-weight: 400;
}

@media (max-width: 991px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .press-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* --- Chapters (Experiences) Section --- */
.chapters-section {
  background-color: var(--color-forest);
  color: var(--color-ivory);
}

.chapters-section h2 {
  color: var(--color-ivory);
  font-size: 4rem;
  margin-bottom: 80px;
  text-align: center;
}

.chapter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: center;
}

.chapter-row:last-child {
  margin-bottom: 0;
}

.chapter-row.reverse .chapter-image-column {
  order: 2;
}

.chapter-row.reverse .chapter-content-column {
  order: 1;
}

.chapter-image-column {
  position: relative;
  overflow: hidden;
  height: 520px;
  border: 1px solid rgba(210, 176, 138, 0.1);
}

.chapter-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.chapter-row:hover .chapter-img {
  transform: scale(1.04);
}

.chapter-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}

.chapter-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.chapter-title {
  font-size: 2.8rem;
  color: var(--color-ivory);
  margin-bottom: 20px;
  font-weight: 300;
}

.chapter-desc {
  color: rgba(246, 241, 232, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 991px) {
  .chapter-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .chapter-row.reverse .chapter-image-column {
    order: 0;
  }
  .chapter-row.reverse .chapter-content-column {
    order: 0;
  }
  .chapter-image-column {
    height: 380px;
  }
  .chapter-content-column {
    padding: 0;
  }
  .chapter-title {
    font-size: 2.2rem;
  }
}

/* --- Full Width Statement Section --- */
.statement-section {
  position: relative;
  background-color: var(--color-forest);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.statement-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.statement-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.statement-text {
  font-size: 4.8rem;
  line-height: 1.1;
  color: var(--color-ivory);
  font-weight: 300;
}

@media (max-width: 768px) {
  .statement-text {
    font-size: 2.8rem;
  }
}

/* --- Featured Menu Section --- */
.featured-menu-section {
  background-color: var(--color-ivory);
}

.menu-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.menu-title-area h2 {
  font-size: 4rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.menu-item-name {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-teal);
  position: relative;
}

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(35, 79, 74, 0.2);
  margin: 0 15px;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-teal);
}

.menu-item-desc {
  font-size: 1rem;
  color: rgba(24, 24, 24, 0.7);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- Gallery Section --- */
.gallery-section h2 {
  font-size: 4rem;
  margin-bottom: 50px;
  text-align: center;
}

/* Masonry Grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 36, 34, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-tag {
  color: var(--color-ivory);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 5px;
}

/* Masonry variations */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}

/* --- Brand Statement Section --- */
.brand-statement-section {
  background-color: var(--color-forest);
  color: var(--color-ivory);
  text-align: center;
}

.brand-statement-section h2 {
  font-size: 5rem;
  color: var(--color-ivory);
  margin-bottom: 20px;
}

.brand-statement-section p {
  color: rgba(246, 241, 232, 0.7);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .brand-statement-section h2 {
    font-size: 3rem;
  }
}

/* --- Location & Opening Hours Section --- */
.location-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: stretch;
}

.map-column {
  position: relative;
  min-height: 450px;
  background-color: #eee;
  overflow: hidden;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-column h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.info-card {
  border-left: 2px solid var(--color-gold);
  padding-left: 25px;
}

.info-card h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 1.1rem;
  color: rgba(24, 24, 24, 0.9);
}

.location-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .location-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .map-column {
    min-height: 350px;
  }
}

/* --- Footer --- */
.main-footer {
  background-color: var(--color-forest);
  color: var(--color-ivory);
  padding: 100px 0 40px 0;
  border-top: 1px solid rgba(210, 176, 138, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.brand-column .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 25px;
}

.brand-column .footer-desc {
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-hours span {
  display: block;
  font-size: 0.9rem;
  color: rgba(246, 241, 232, 0.8);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: rgba(246, 241, 232, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact li {
  font-size: 0.95rem;
  color: rgba(246, 241, 232, 0.7);
}

.footer-contact i {
  color: var(--color-gold);
  margin-right: 10px;
}

.footer-contact a {
  color: rgba(246, 241, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-social-icons {
  display: flex;
  gap: 20px;
}

.footer-social-icons a {
  color: rgba(246, 241, 232, 0.7);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text, .powered-by {
  font-size: 0.85rem;
  color: rgba(246, 241, 232, 0.4);
}

.powered-by a {
  color: rgba(246, 241, 232, 0.4);
  text-decoration: none;
}

.powered-by a:hover {
  color: var(--color-gold);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Floating WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background-color: #234F4A;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 14px 24px;
  border-radius: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 30px rgba(15, 36, 34, 0.3);
  transition: var(--transition-medium);
}

.whatsapp-sticky:hover {
  transform: translateY(-5px);
  background-color: var(--color-gold);
  color: var(--color-forest) !important;
}

.scroll-to-top {
  display: none; /* Removed for modern clutter-free layout */
}

/* --- Subpage Banner --- */
.subpage-banner {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--color-ivory);
}

.subpage-banner .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.subpage-banner .content-box {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.subpage-banner h1 {
  font-size: 5rem;
  color: var(--color-ivory);
}

@media (max-width: 768px) {
  .subpage-banner h1 {
    font-size: 3rem;
  }
}

/* --- Custom Booking Form (Soho House application layout) --- */
.booking-section {
  background-color: var(--color-ivory);
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background-color: var(--color-white);
  border: 1px solid rgba(35, 79, 74, 0.1);
  padding: 60px;
  box-shadow: 0 20px 50px rgba(15, 36, 34, 0.03);
}

@media (max-width: 768px) {
  .booking-form {
    padding: 30px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 15px;
  background-color: var(--color-ivory);
  border: 1px solid rgba(35, 79, 74, 0.1);
  color: var(--color-charcoal);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* --- Events Showcase --- */
.event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.event-row:nth-child(even) {
  direction: rtl;
}

.event-row:nth-child(even) .event-content {
  direction: ltr;
}

.event-image {
  overflow: hidden;
  height: 400px;
}

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

.event-row:hover .event-image img {
  transform: scale(1.03);
}

.event-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-content h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.event-content p {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .event-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
  .event-row:nth-child(even) {
    direction: ltr;
  }
  .event-image {
    height: 300px;
  }
}
