/* ---------------------------------------------------------
   GENERAL STYLES
---------------------------------------------------------- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* More Conspicuous Advanced Particle Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  z-index: -3;
  pointer-events: none;
  background-image: 
    radial-gradient(circle, rgba(184,156,86,0.4) 1px, transparent 1px),
    radial-gradient(circle, rgba(166,124,82,0.4) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.8;
  animation: particleMove 80s linear infinite;
}

@keyframes particleMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-70px, -70px); }
  100% { transform: translate(0, 0); }
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  z-index: -4;
  pointer-events: none;
  background-image: 
    radial-gradient(circle, rgba(250,248,242,0.4) 1px, transparent 1px);
  background-size: 35px 35px;
  opacity: 0.6;
  animation: particleMove2 100s linear infinite;
}

@keyframes particleMove2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(40px, 40px); }
  100% { transform: translate(0, 0); }
}

/* More Conspicuous Gradient Background for Chef Box (.head-chef) */
.head-chef {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 100px auto;
  padding: 50px 30px;
  border-radius: 16px;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(250,248,242,1), rgba(184,156,86,0.6)),
    radial-gradient(circle at top left, rgba(184,156,86,0.5), transparent 70%),
    radial-gradient(circle at bottom right, rgba(166,124,82,0.5), transparent 70%);
  background-blend-mode: overlay, screen, normal;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.head-chef:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.manager-info {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 100px auto;
  padding: 50px 30px;
  border-radius: 16px;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(250,248,242,1), rgba(184,156,86,0.6)),
    radial-gradient(circle at top left, rgba(184,156,86,0.5), transparent 70%),
    radial-gradient(circle at bottom right, rgba(166,124,82,0.5), transparent 70%);
  background-blend-mode: overlay, screen, normal;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* =============================
   HEADER
============================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

#main-header {
    transition: transform 0.3s ease-in-out; /* For hide-on-scroll, if used */
}

/* NAV MENU (left) */
.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    order: 1;
}

/* Logo container (center) */
.logo-container {
    order: 2;     
    flex: 1;      
    text-align: center;
}

/* Book btn container (right) */
.book-btn-container {
    order: 3;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px; 
}

/* The actual logo */
.logo {
    width: 75px;
    height: auto;
}

/* MENU BUTTON (☰) */
.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* DROPDOWN MENU (vertical list) */
.dropdown-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 50px; /* just below nav-menu button */
    left: 120%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    flex-direction: column;
    gap: 10px;             
    z-index: 9999;
}

.dropdown-menu.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Each list item spans 100% of the menu width */
.dropdown-menu li {
    list-style: none;
    padding: 5px 0;
    transition: transform 0.2s ease-in-out;
}
.dropdown-menu li:hover {
    transform: scale(1.05);
}

/* Menu links style */
.dropdown-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: block; 
    transition: color 0.3s ease-in-out;
}

.dropdown-menu li a:hover {
    color: #b89c56;
}

/* NAV MENU LINKS (desktop) */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    font-size: 18px;
}
.nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}
.nav-menu a:hover {
    color: #b89c56;
}

/* BOOK BUTTON */
.book-btn {
    background: #b89c56;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.book-btn:hover {
    background: #a67c52;
}

/* =========================
   HEADER RESPONSIVE
========================= */
@media (max-width: 768px) {
  .header {
    padding: 10px; 
  }

  .nav-menu ul {
    display: none; 
  }

  /* We can reduce logo size on mobile */
  .logo {
    width: 60px; /* a bit smaller */
  }

  /* The seat button can reduce padding/font if desired */
  .book-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/*************************************************************
  3) HERO SECTION (Slider inside)
*************************************************************/
.hero {
  padding-top: 100px; 
  position: relative;
  width: 100%;
}

.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

/* slides hidden by default */
.slides {
  display: none; 
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade {
  animation-name: fadeEffect;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@keyframes fadeEffect {
  from { opacity: 0.2; }
  to   { opacity: 1; }
}

/* Dots/indicators */
.dots-container {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}
.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s;
}
.dot:hover,
.dot.active {
  background-color: #b89c56; 
}

.slider .slides:first-of-type {
  display: block;
}

/*************************************************************
  4) INTRO SECTION
*************************************************************/
.intro {
  max-width: 750px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
  transition: transform 0.4s, opacity 0.4s, border-image 0.4s;
  position: relative;
  z-index: 2;
}

.intro p,
.intro p2,
.intro p3,
.intro p4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 15px;
  display: block;
  padding: 0 15px;
}
.intro p:first-of-type {
  font-size: 19px;
  font-weight: 600;
  color: #5a4a3a;
  letter-spacing: 0.3px;
}
/* Underlines for p2, p3 */
.intro p2,
.intro p3 {
  position: relative;
}
.intro p2::after,
.intro p3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #c9a060;
  margin: 12px auto;
  opacity: 0.6;
}
/* Last paragraph with italic style */
.intro p4 {
  font-style: italic;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .intro {
    max-width: 85%;
    margin: 20px auto;
    padding: 20px;
  }
  .intro p,
  .intro p2,
  .intro p3,
  .intro p4 {
    font-size: 16px;
    line-height: 1.7;
  }
}

/*************************************************************
  5) HEAD CHEF SECTION
*************************************************************/
.head-chef {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 100px auto;
  padding: 50px 30px;
  border-radius: 16px;
  overflow: hidden;
  /* Layered, semi-transparent gradients that blend with the background */
  background: 
    linear-gradient(135deg, rgba(250,248,242,0.85), rgba(184,156,86,0.3)),
    linear-gradient(45deg, rgba(250,248,242,0.5), rgba(184,156,86,0.5));
  background-blend-mode: overlay;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Overlay for a subtle color shift effect */
/* Blended, Advanced Chef Box */
.head-chef {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 100px auto;
  padding: 50px 30px;
  border-radius: 16px;
  overflow: hidden;
  /* A warm, subtle gradient that blends with the background */
  background: linear-gradient(135deg, rgba(250,248,242,0.25), rgba(184,156,86,0.15));
  /* Apply a backdrop blur so underlying particles softly show through */
  backdrop-filter: blur(12px);
  /* A delicate border for extra definition */
  border: 1px solid rgba(184,156,86,0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.head-chef:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.chef-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: bold;
  color: #3a2e20;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.chef-intro {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #4a3b2f;
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}
.chef-image-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.chef-image {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.chef-description {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #4a3b2f;
  line-height: 1.8;
  max-width: 600px;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .head-chef {
    max-width: 90%;
    padding: 30px;
    margin: 60px auto;
  }
  .chef-title {
    font-size: 24px;
  }
  .chef-intro,
  .chef-description {
    font-size: 16px;
  }
  .chef-image {
    width: 250px;
  }
}

/*************************************************************
  SLIDER FOR MENU (slider2)
*************************************************************/

.slider2 {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.slider2-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slide2 {
  flex: 0 0 100%; /* Ključna promena za pravilno funkcionisanje */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  background: transparent;
}

.slide2-left {
  width: 40%;
  text-align: center;
}

.slide2-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.slide2-left img:hover {
  transform: scale(1.05);
}

.slide2-right {
  width: 50%;
  text-align: center;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide2-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #b89c56;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide2-right p {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: black;
  max-width: 80%;
}

/* ==========================
   MODERN BUTTON FOR SLIDER2
========================== */

.btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  background: rgba(255, 255, 255, 0.2);
  color: black;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.btn2:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.arrow-icon {
  width: 24px;
  height: auto;
  color: #b89c56;
  filter: invert(0.2);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn2:hover .arrow-icon {
  transform: scale(1.1);
  opacity: 0.8;
}

.prev2 {
  left: 20px;
}

.next2 {
  right: 20px;
}

.prev2-banquete {
  left: 20px;
}

.next2-banquete {
  right: 20px;
}


.slider-banquete {
  overflow: hidden;
  position: relative;
}

.slider-banquete .slider2-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slider-banquete .slide2 {
  flex: 0 0 100%; /* važno! */
}



/* ==========================
   RESPONSIVE (ZA MOBILNE UREĐAJE)
========================== */
@media (max-width: 768px) {
  .slide2 {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .slide2-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .slide2-right {
    width: 100%;
    padding-left: 0;
  }

  .slide2-right h2 {
    font-size: 24px;
  }

  .slide2-right p {
    font-size: 16px;
  }

  .btn2 {
    font-size: 20px;
    padding: 10px 14px;
  }
}


/*************************************************************
  AMBIENT SECTION (Image Gallery)
*************************************************************/
/* =====================================================
   Ambient Section with Fast, Light-Gradient Background
===================================================== */
.ambient {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  /* Fast animated gradient moving toward lighter hues */
  background: linear-gradient(45deg, rgba(250,248,242,0.9), rgba(255,255,255,0.85), rgba(250,248,242,0.8));
  background-size: 300% 300%;
  animation: fastLightGradient 5s ease infinite;
}

/* Keyframes for the fast light-gradient animation */
@keyframes fastLightGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Optional Background Image Overlay for added texture that blends with the gradient */
.ambient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/ambient-bg.jpg') center/cover no-repeat; /* Replace with your background image */
  opacity: 0.2;
  z-index: -3;
}

/* Decorative Wave Divider at the Bottom */
.ambient .wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('./images/wave.svg') bottom/cover no-repeat; /* Replace with your SVG divider */
  pointer-events: none;
  z-index: -1;
}

/* Modern Typography for Section Titles */
.ambient h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Ambient Section Description */
.ambient p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeIn 1s ease-in-out;
}

/* UNIFORM GRID FOR .image-gallery */
.image-gallery {
  /* Keep your original grid settings or adjust columns as needed */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns, adjust if desired */
  grid-gap: 20px;
  max-width: 800px;  /* or whichever width you prefer */
  margin: 0 auto;
  position: relative;
}

/* SQUARE IMAGES WITH NO CROPPING BEYOND WHAT 'cover' DOES */
.gallery-img {
  width: 100%;
  /* Remove any fixed height (e.g., height: 150px) 
     and use aspect-ratio for uniform squares */
  aspect-ratio: 1 / 1; 
  object-fit: cover;  
  cursor: pointer;
  transition: transform 0.3s;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}


.ambient .gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Elegant Ghost Button for Calls-to-Action */
.ambient .ghost-btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #b89c56;
  border: 2px solid #b89c56;
  border-radius: 30px;
  background: transparent;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.ambient .ghost-btn:hover {
  background: #b89c56;
  color: #fff;
}

/* Smooth Fade-In Animation for Text Elements */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ambient {
    padding: 60px 10px;
  }
  .ambient h2 {
    font-size: 28px;
  }
  .ambient p {
    font-size: 16px;
  }
}

/*************************************************************
  FULLSCREEN GALLERY
*************************************************************/
.fullscreen-container {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.fullscreen-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.hidden {
  display: none !important;
}

/*************************************************************
  OPERATING HOURS SECTION
*************************************************************/
.operating-hours {
  text-align: center;
  padding: 60px 20px;
  background: #f8f7f4;
  font-family: "Playfair Display", serif;
}
.divider-top,
.divider-bottom {
  width: 90%;
  max-width: 800px;
  height: 1px;
  background: #ccc;
  margin: 0 auto 20px auto;
}
.hours-content {
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}
.hours-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}
.hours-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 5px 0;
}
.hours-content p strong {
  font-weight: 600;
}
/* Decorative line inside .hours-content */
.decor-line {
  display: block;
  width: 80px;
  height: 2px;
  background: #000;
  margin: 10px auto;
  position: relative;
}
.decor-line::after {
  content: "";
  width: 15px;
  height: 5px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2px;
}
@media (max-width: 768px) {
  .operating-hours {
    padding: 50px 15px;
  }
  .hours-content h3 {
    font-size: 22px;
  }
  .hours-content p {
    font-size: 16px;
  }
  .divider-top,
  .divider-bottom {
    width: 80%;
  }
  .decor-line {
    width: 60px;
  }
}

/*************************************************************
  RESERVATION SECTION
*************************************************************/
/* ======= Smaller & Refined Reservation Form ======= */

/* Reservation Section overall container */
.reservation {
  background: #fff;  /* White background for the section */
  padding: 60px 15px;  /* Reduced vertical and horizontal padding */
  text-align: center;
  font-family: "Playfair Display", serif;  /* Elegant heading font */
  color: #333;  /* Neutral text color */
}

/* Section Title (e.g., "Make a reservation") */
.reservation h2 {
  font-size: 28px;          /* Smaller title font size */
  font-weight: 700;
  color: #b89c56;           /* Gold color for the title */
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Form container */
#reservation-form {
  max-width: 600px;         /* Smaller overall form width */
  margin: 0 auto;
  background: #fff;         /* Solid white background for the form */
  border-radius: 6px;
  padding: 20px;            /* Reduced padding inside the form */
}

/* Each row in the form for grouping inputs/selects */
.form-row {
  display: flex;
  gap: 15px;                /* Space between input boxes */
  margin-bottom: 15px;
  padding: 0 15px;          /* Horizontal padding inside rows */
}

/* 
  Input & select styling 
  ---------------------------------
  Change background color of boxes here (visible background for "Name", etc.)
*/
.form-row input,
.form-row select {
  flex: 1;
  padding: 10px;
  border: 1px solid #f8f7f4;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: black;
  background: #f8f7f4; /* Visible, slightly transparent white background */
  outline: none;
  transition: border 0.2s, background 0.2s;
}

/* 
  When an input is hovered or focused, change its border color here.
  This "chains" the color to the gold from your design (#b89c56).
*/
.form-row input:hover,
.form-row select:hover,
.form-row input:focus,
.form-row select:focus {
  border-color: #b89c56; /* Gold border on focus/hover */
  background: rgba(255, 255, 255, 1);  /* Fully opaque when focused */
}

/* Placeholder styling for inputs */
.form-row input::placeholder,
.form-row select::placeholder {
  color: black;
}

/* Special Requests Textarea styling */
#special-requests {
  width: calc(100% - 30px);   /* Full width minus the horizontal padding */
  margin: 0 15px 15px;
  padding: 10px;
  border: 1px solid #f8f7f4;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #333;
  background: #f8f7f4;  /* Visible background for textarea */
  resize: none;
  transition: border 0.2s, background 0.2s;
}
#special-requests::placeholder {
  color: black;
}
#special-requests:hover,
#special-requests:focus {
  border-color: #b89c56;
  background: rgba(255, 255, 255, 1);
}

/* Confirmation Button styling */
.confirm-btn {
  display: block;
  width: fit-content;
  margin: 15px auto 20px;
  background: #b89c56;  /* Gold background for the button */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 18px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.confirm-btn:hover {
  background: #a67c52;  /* Darker gold on hover */
  transform: translateY(-2px);
}
.confirm-btn:active {
  background: #956a45;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #reservation-form {
    max-width: 95%;
    margin: 0 auto;
  }
  
  .form-row {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }
  
  #special-requests {
    width: auto;
    margin: 0 10px 15px;
  }
}


/*************************************************************
  FOOTER & FOOTER IMAGE
*************************************************************/
.footer-image-container {
  width: 100%;
  height: 80vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 
   NARROW FOOTER 
   LOGO ON LEFT, CONTACT IN CENTER, 
   IG + MAP ICON W/ TEXT ON RIGHT
*/
.footer-salon {
  background: #fff; 
  padding: 20px;
  font-family: "Playfair Display", serif;
  color: #333;
  position: relative;
}
.footer-divider {
  width: 80%;
  height: 1px;
  background: #ccc;
  margin: 0 auto 20px auto;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px; 
}

/* Left: Logo only */
.footer-left {
  flex: 0 0 auto;
}
.footer-logo {
  width: 100px;
  height: auto;
  transition: transform 0.3s;
}
.footer-logo:hover {
  transform: scale(1.05);
}

/* Center: Contact Info */
.footer-center {
  flex: 1;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-center span {
  font-size: 14px;
  color: #444;
}
.footer-center a {
  color: #b89c56; 
  text-decoration: none;
  transition: color 0.3s;
}
.footer-center a:hover {
  color: #a67c52;
}

/* Right: IG + Map icon (with text) */
.footer-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  margin: 0 4px; 
}
.social-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.1);
}
.map-link {}
.map-text {
  font-size: 14px;
  color: #444;
  margin-left: 4px;
  transition: color 0.3s;
}
.map-link:hover .map-text {
  color: #a67c52;
}

/* Responsive adjustments for small screens (footer) */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 15px;
  }
  .footer-center {
    justify-content: center;
  }
  .footer-logo {
    width: 80px;
  }
}

/*************************************************************
  LANGUAGE PICKER 
*************************************************************/
.lang-picker {
  display: flex;
  align-items: center;
  margin-right: 15px; 
}
.flag-icon {
  width: 24px;
  height: auto;
  margin: 0 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.flag-icon:hover {
  transform: scale(1.1);
}
.lang-picker a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 4px;
  transition: color 0.3s, transform 0.2s;
}
.lang-picker a:hover {
  color: #b89c56; 
  transform: scale(1.05);
}

/* ===========================
   SCROLL REVEAL (POP-UP)
=========================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

