:root {
  --bg: #DDD5CC;         /* Beige Background */
  --bgold: #C08E72;         /* Beige Background */
  --accent:#46474C;     /* Gold Accent */
  --text: #9b644c;       /* Deep Rich Text Color */
  --highlight:#aa806b;  /* Darker Gold/Bronze Headings */
  --alt: #3b5e7d;        /* Emerald Green Alternative Color */
  --primary: #46474C;    /* Use for hover, links, etc. */
  --subtle-bg: #f9f3ea;  /* Light beige background for quotes, etc. */
  --secondary-text: #3b5e7d; /* For subtitles and soft text */
  --section-bg: #BE917B; /* Light section background */
  --gold-text: #3b5e7d;  /* Used for prices or gold highlights */
  --divider: #c2a97c;    /* For section dividers */
  --hover-btn: #a86f3b;  /* Hover state for buttons */
  --success: #4a7a3b;    /* Success message color */
  --form-focus-bg: #3b5e7d; /* Light focus background */
  --lightbox-backdrop: rgba(0, 0, 0, 0.8);
   --white:#fff;     /* white Accent */
  --beige: #f5efe6;
  --sand: #e7dccb;
  --gold: #c9a66b;
  --btn: #9b644c;
  --btnhover: #46474C;
  --gold-light: #e6c985;
}


@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/static/CormorantGaramond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
  
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
}

h1, h2, h3 {
  font-weight: 600;
  color: var(--highlight);
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
}

header {
  background: var(--bg);
  
   
  position: sticky;
  top: 0;

  z-index: 1000;
    
  

}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 48px);
  color: white;
 // text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;   /* keeps everything on one line */
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

/* Logo slightly bigger than text */
.hero-logo {
  width: clamp(60px, 12vw, 130px);   /* text ~48px max, logo bigger */
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}


/* Base navbar */
/* Base Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  background: #46474C;
  position: relative;
  z-index: 100;
}

/* Logo */
.logo img {
  height: 50px;
}
 .full-iframe {
  width: 100%;
  border: none;
  overflow: hidden;  /* prevents iframe inner scrollbar */
  display: block;

    }
	
/* Mobile only: max-width 768px */
@media (max-width: 768px) {
  nav .hamburger {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 2px solid var(--bgold) !important;
    background: transparent !important;
    color: var(--bgold) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-family: 'Cormorant Garamond', serif;
  }
}

/* Hide on desktop (optional, for safety) */
@media (min-width: 769px) {
  nav .hamburger {
    display: none !important;
  }
}


/* Visual test – remove later */
nav .hamburger {
/*background: rgba(255, 215, 0, 0.05) !important;*/
}

/* Hover */
nav .hamburger:hover {
 /* background: #c19b5c !important;*/
  color: white !important;
  transform: translateY(-2px);
}

/* Make sure icon is visible */
nav .hamburger .burger-icon {
  font-size: 18px;
}
 


/* Burger icon look */
.burger-icon {
  font-size: 20px;
  line-height: 0;
  padding:6px 0px;
}

/* Mobile Styles */
@media (max-width: 768px) {

  /* Stack navbar vertically */
  .navbar {
    flex-direction: column;
    align-items: center; /* Center all items */
  }

  /* Logo takes full width and centered */
  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  /* Hamburger appears below logo */
  .hamburger {
    display: block;
    
  }
  .hamburger .seite-text {
    display: inline;
  }

  /* Nav links hidden initially */
  .nav-links {
    display: none;
	 font-family: 'Cormorant Garamond', serif;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* Show nav links when active */
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 0.8rem;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }
}


/* Optional: hover effect */
.logo:hover {
    transform: scale(1.05); /* slight zoom on hover */
}


/* Desktop nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #cc9d89;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.3s ease;
  font-weight: 800;
}

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

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  color: #e8d8c3;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  /* Mobile nav hidden by default */
.nav-links {
  position: absolute;
  top: 70px;
  right: 1rem;
  flex-direction: column;
  background: var(--primary);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  min-width: 200px;
  transition: all 0.3s ease;
  
}


  .nav-links.active {
    display: flex;
    animation: slide-down 0.3s ease forwards;
  }

  .hamburger {
    display: block;
  }

  .nav-links a {
  text-decoration: none;
  color: #cc9d89;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.3s ease;
  font-weight: 800;
  }

  .nav-links a:hover {
    background: var(--accent);
    color: var(--primary);
  }
}

/* Slide-down animation */
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100vw;
  aspect-ratio: 16.5 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpeg'); /* âœ… Replace with your path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}

/* Optional overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Gold overlay */
  background-color:#000; /* gold with transparency */
opacity:0.6;
}

@keyframes fadeIn_ {
  0% { opacity: 0; }
  40% { opacity: 0.2; }
  70% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Hero Text Content */
.hero-content {
  opacity: 0;
  animation: fadeIn_ 1s 5.5s ease-out forwards;
  animation-delay: 1.8s;
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 90%;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color:#fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* Button */
.btn-reserve {
  background: var(--btn);
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-reserve:hover {
  background: var(--btnhover);
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h2.refined-cuisine {
    display: none;
  }
}




section {
 
}
 
 

#gallery {
  padding: 60px 20px;
  background: var(--bg);
    
 font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  margin: 0 auto;
  
  /* Beautiful visual enhancements */
    position: relative;
    border-radius: 16px;
    overflow: hidden;

    /* Depth shadow */
    box-shadow: 0 8px 30px rgba(192,142,114,0.35);
}

#gallery h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--highlight); /* Gold highlight */
}

/* Gallery row wrapper */
.gallery-row {
  margin-bottom: 50px;
}

/* Scroll container */
.gallery-images {
  overflow-x: auto;
 /* scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;*/
  padding-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  background: var(--bg);
  border: 1px solid var(--text); /* Gold accent border */
}

/* Inner scroll content */
.scroll-content {
  display: flex;
  gap: 18px;
  padding: 20px;
}

/* Images */
.scroll-content img {
  flex-shrink: 0;
  width: 420px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.scroll-content img:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Gallery scrolling still works */
.gallery-images {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* smooth iOS / Safari */
}

/* Chrome, Edge, Safari */
.gallery-images::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.gallery-images {
  scrollbar-width: none;
}


/* Firefox scrollbar */
.gallery-images {
  /*scrollbar-width: thin; 
  scrollbar-color: var(--text) var(--bg);*/
}

/* Scroll animation */
.scroll-content {
  display: flex;
  gap: 20px;
  animation: scroll-left 30s linear infinite;
}

#food-scroll .scroll-content {
  animation-duration: 45s;
}

.scroll-content img {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  animation-play-state: paused;
}

/* Scroll left keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close {
  position: fixed;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: var(--accent); /* Gold for close button */
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary); /* Emerald on hover */
}

/* Responsive styles */
@media (max-width: 600px) {
  .gallery-images {
    overflow: hidden;
  }

  .scroll-content {
    display: flex;
    width: calc(100vw * 14);
    animation: scroll-left 28s linear infinite;
  }

  .scroll-content img {
    width: 100vw !important;
    height: auto !important;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    user-select: none;
    transform-origin: center;
    position: relative;
    z-index: 0;
    animation: highlight-scale 28s linear infinite;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100vw * 7)); }
  }

  @keyframes highlight-scale {
    0%, 14.28%, 100% {
      transform: scale(1);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      z-index: 0;
    }
    7.14% {
      transform: scale(1.1);
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
      z-index: 10;
    }
  }

  .scroll-content img:nth-child(1)  { animation-delay: 0s; }
  .scroll-content img:nth-child(2)  { animation-delay: 4s; }
  .scroll-content img:nth-child(3)  { animation-delay: 8s; }
  .scroll-content img:nth-child(4)  { animation-delay: 12s; }
  .scroll-content img:nth-child(5)  { animation-delay: 16s; }
  .scroll-content img:nth-child(6)  { animation-delay: 20s; }
  .scroll-content img:nth-child(7)  { animation-delay: 24s; }
  .scroll-content img:nth-child(n+8) {
    animation-delay: calc((var(--i) - 7) * 4s);
  }
}

/* Button */
.read-more-text {
  font-size: 16px;
  color: #BE917B;
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
  transition: 0.3s;
}

.read-more-text:hover {
  color: #9c715c;
}

//* Popup overlay */
/* Popup overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem; /* space around popup */
  overflow-y: auto; /* enables vertical scroll */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

/* Show overlay */
.popup-overlay.active {
  display: flex;
}

/* Popup box */
.popup-box {
  background: white;
  padding: 1.5rem;
  width: 100%;
  max-width: 500px; /* desktop width */
  border-radius: 12px;
  position: relative;
 font-family: 'Cormorant Garamond', serif;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #333;
  max-height: 90vh; /* ensures popup doesnâ€™t exceed viewport height */
  overflow-y: auto; /* allows internal scrolling if content is tall */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
  font-size: 22px;
  color: #333;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .popup-box {
    max-width: 100%;
    padding: 1rem;
    border-radius: 8px;
  }
}












.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form number,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--accent);
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  background: var(--accent);
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 1rem;
  background:   var(--bg);
   /* Subtle pattern */
  background-image:
     linear-gradient(135deg, rgba(192,142,114,0.08) 25%, transparent 25%),
     linear-gradient(225deg, rgba(192,142,114,0.08) 25%, transparent 25%),
     linear-gradient(45deg, rgba(192,142,114,0.08) 25%, transparent 25%),
     linear-gradient(315deg, rgba(192,142,114,0.08) 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.drinks-section {
  position: relative;
  padding: 60px 20px;
  background: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  text-align: center;
  overflow: hidden;

 
  /* Slight diagonal tilt */
  transform: rotate(-2deg); /* NW â†’ SE tilt */
  border-radius: 20px;
  box-shadow:
    0 15px 35px rgba(0,0,0,0.1),
    inset 0 0 50px rgba(208,172,147,0.05);
}

/* Title stays upright */
.drinks-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #6b4e33;
  transform: rotate(2deg); /* counter-rotate to stay straight */
  display: inline-block;
}

/* Drinks Grid */
.drinks-items {
  display: grid;
  gap: 25px;
  max-width: 700px;
  margin: auto;
  transform: rotate(2deg); /* counter-rotate so grid looks aligned */
}

/* Each drink item box */
.drink-box {
 /*  background: rgba(255,255,255,0.85);*/
  border-radius: 12px;
  padding: 20px;
  position: relative;
 /* box-shadow:
    4px 4px 12px rgba(0,0,0,0.08),
    inset 0 0 10px rgba(0,0,0,0.15),
    inset 0 0 12px rgba(208,172,147,0.2);
  border: 1px solid rgba(208,172,147,0.3);*/
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /*transform: rotate(1deg);*/
}


/* Hover effect: flip slightly NWâ†’SE */
.drink-box:hover {
  transform: rotate(-1deg) translateY(-4px);
  box-shadow:
    6px 6px 16px rgba(0,0,0,0.12),
    inset 0 0 15px rgba(208,172,147,0.25);
}
.drink-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(208,172,147,0.8); /* gold-beige accent */
  box-shadow:
    0 4px 12px rgba(0,0,0,0.15),
    0 0 10px rgba(208,172,147,0.45);
  margin: auto;
  transition: 0.3s ease;
}

/* Image itself */
.drink-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover effect */
.drink-icon:hover {
  transform: scale(1.05);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.2),
    0 0 12px rgba(208,172,147,0.6);
}

/* Folded corner effect */
.drink-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(208,172,147,0.3) 0%, transparent 100%);
  border-top-right-radius: 12px;
  pointer-events: none;
}

/* Typography */
.drink-box h3 {
  margin-bottom: 8px;
  color: #8a684a;
  font-weight: 600;
}

.drink-box p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}


/* Menu grid */
#menu {
  padding: 80px 20px;
  background:var(--bg);
  color: #CC9D89;
  text-align: center;
  box-shadow: 0 6px 20px var(--bg);
 font-family: 'Cormorant Garamond', serif;
    
	/* Beautiful visual enhancements */
    position: relative;
    border-radius: 16px;
    overflow: hidden;

    /* Depth shadow */
    box-shadow: 0 8px 30px rgba(192,142,114,0.35);

    
}
/* Decorative top and bottom separator lines */
#menu::before,
#menu::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 80%;
    height: 2px;
    background: rgba(192,142,114,0.18);
    transform: translateX(-50%);
}

#menu::before {
    top: 15px;
}

#menu::after {
    bottom: 15px;
}

/* Optional hover lift and glow */
#menu:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(192,142,114,0.45);
    transition: 0.3s;
}
.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
  color: var(--highlight);
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--text);
  margin: 10px auto 15px;
}

.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--secondary-text);
  font-style: italic;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-text h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.menu-text .price {
  font-weight: bold;
  color: var(--gold-text);
  margin-bottom: 10px;
}

.menu-text p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.menu-links {
  text-align: center;
  margin-top: 20px;
}

.menu-links .btn-reserve {
  display: inline-block;
  margin: 10px;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.menu-links .btn-reserve:hover {
  background: var(--hover-btn);
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--lightbox-backdrop);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

.about-section {
  background: var(--bg);
}


.about-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 {
	text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--highlight); /* Gold highlight */

}
.about-text {
  padding: 1rem;
  background:var(--bg);
}

.about-image.decorated {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  position: relative;
  border: 6px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.image-caption {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--highlight);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border-top: 2px solid var(--accent);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    padding: 0;
  }

  .about-image img {
    max-height: 300px;
  }
}

blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  background: var(--subtle-bg);
  border-left: 5px solid var(--accent);
  color: var(--text);
}

.quote-author {
  margin-top: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  display: block;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}

#contactsec {
   /* Subtle pattern */


}
  

#contact {
  max-width: 600px;
  margin: 60px auto 100px;
  padding: 40px 30px;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
}

#contact h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--highlight);
  letter-spacing: 1px;
}

.n m-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

input[type="text"], input[type="time"], input[type="date"],
input[type="email"], textarea {
  width: 100%;
  padding: 15px 20px;
   
  border-radius: 12px;
  font-size: 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  background: var(--bg);
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus, input[type="date"],
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(196, 143, 101, 0.5);
   
}

textarea {
  min-height: 140px;
 font-family: 'Cormorant Garamond', serif;
}

button[type="submit"] {
  padding: 18px 0;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(196, 143, 101, 0.5);
}

button[type="submit"]:hover {
  background: var(--hover-btn);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(168, 111, 59, 0.7);
}

button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(196, 143, 101, 0.5);
}

#form-response {
  margin-top: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--success);
}

#time-row {
  margin-bottom: 20px;
}

select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--divider);
  border-radius: 12px;
  font-size: 1.1rem;
 font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(196, 143, 101, 0.5);
  background: var(--form-focus-bg);
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.section-divider-royal {
  height: 2px;
  width: 100%;
  background-color:#cc9d89;
}
  
  
#staffs {
  background: var(--bg);
font-family: 'Cormorant Garamond', serif;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;

  /* Elegant metallic gold border */
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
      to right,
      #c4a576,
      #e8d3a9,
      #b99865,
      #d5b783,
      #e8d3a9,
      #c4a576
  ) 1;

   
}

/* Gold shimmer sweep across the section */
#staffs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(255,255,200,0.18) 0%,
      rgba(255,255,255,0.03) 40%,
      rgba(0,0,0,0) 100%
  );
  animation: goldSweep 9s linear infinite;
  pointer-events: none;
}

/* Gold foil corner decorative elements */
#staffs::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-image: linear-gradient(
      to bottom right,
      #d9bd8a,
      #e8d6a4,
      #b69364
  ) 1;
  mask:
    linear-gradient(#fff 0 0) top left,
    linear-gradient(#fff 0 0) top right,
    linear-gradient(#fff 0 0) bottom left,
    linear-gradient(#fff 0 0) bottom right;
  mask-size: 24px 24px;
  mask-repeat: no-repeat;
  pointer-events: none;
}
 

#staffs h2 {
  color: var(--highlight); /* Dark elegant text */
  text-align: center;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.staff-card {
  background: #f8f4eb; /* Light beige */
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Smooth shadow */
  box-shadow:
    0 6px 20px rgba(0,0,0,0.18),
    0 10px 28px rgba(197,164,109,0.35);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Lux Gold Corner Frame */
.staff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-image: linear-gradient(
    45deg,
    rgba(0,0,0,0.4),
    rgba(197,164,109,1),
    rgba(255,255,255,0.3)
  ) 1;
  pointer-events: none;
  border-radius: 18px;
}

/* Staff Image â€“ Elegant framed circle */
.staff-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;

  border: 5px solid rgba(197,164,109,0.8);
  background: #fff;

  box-shadow:
    0 0 12px rgba(197,164,109,0.65),
    inset 0 0 6px rgba(255,255,255,0.65);

  margin-bottom: 18px;
}

/* Name text */
.staff-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* Role */
.staff-card p.role {
  font-size: 0.95rem;
  color: #c5a46d;
  margin-bottom: 12px;
}

/* Bio text */
.staff-card p {
  color: #2c2c2c;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hover */
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.25),
    0 20px 45px rgba(197,164,109,0.4);
}


/* Responsive tweaks */
@media (max-width: 480px) {
  .staff-card img {
    width: 100px;
    height: 100px;
  }
}

  
  
 
 .accent-footer {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
 background:   var(--bg);
	
}



.footer-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--accent); /* Gold accent */
  margin-bottom: 10px;
}

.icon-heading svg {
  margin-bottom: 5px;
}

.heading-text {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text);
   font-family: 'Cormorant Garamond', serif;
}

.footer-block a {
  color: var(--text);
  text-decoration: none;
}

.footer-block a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin: 5px 0 12px;
  display: flex;
  gap: 20px;
}

.footer-socials a svg {
  transition: transform 0.2s ease, fill 0.2s ease;
}

.footer-socials a:hover svg {
  transform: scale(1.2);
  fill: var(--highlight); /* Rich gold/bronze */
}

.footer-map {
  margin-top: 20px;
}
.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #cc9d89;
}

.footer-bottom a {
  color: #cc9d89;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

  
  
  
.offer-popup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: dropDown 1s ease;
}

.offer-hanger {
  width: 2px;
  height: 40px;
  background: var(--text); /* Deep neutral */
}

.offer-box {
  background: var(--bg);            /* Beige */
  color: var(--text);               /* Deep text */
  border: 2px solid var(--accent); /* Gold border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
font-family: 'Cormorant Garamond', serif;
  animation: swing 2s ease-in-out infinite;
}

.offer-box h2 {
  margin: 0;
  font-size: 24px;
  color: var(--accent); /* Gold title */
}

.offer-box p {
  font-size: 16px;
  margin: 10px 0;
  color: var(--text);
}

.offer-btn {
  background: var(--accent); /* Gold background */
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.offer-btn:hover {
  background: var(--highlight); /* Rich bronze on hover */
}

.close-offer {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--accent);
}

/* Animations */
@keyframes dropDown {
  from {
    transform: translate(-50%, -100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes swing {
  0% { transform: rotate(1deg); }
  50% { transform: rotate(-1deg); }
  100% { transform: rotate(1deg); }
}




.giftcard-section {
   
  background:   var(--bg);
   /* Subtle pattern */
  
}

.giftcard-container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

 

.giftcard-content {
  flex: 2 2 50%;
  background-color: var(--bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.giftcard-content h2 {
  font-size: 2rem;
  color: var(--highlight); /* Gold */
  margin-bottom: 20px;
}

.giftcard-content p {
  font-size: 1rem;
  color: var(--text); /* Replaces hardcoded brown */
  line-height: 1.6;
  margin-bottom: 30px;
}

.giftcard-btn {
  background-color: var(--btn); /* Gold */
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.giftcard-btn:hover {
  background-color: var(--btnhover); /* Bronze */
}

/* Responsive */
@media (max-width: 768px) {
  .giftcard-container {
    flex-direction: column;
  }

  .giftcard-image,
  .giftcard-content {
    flex: 1 1 100%;
  }
}

/* Button: You can apply emerald theme or keep it for contrast */
.btn {
  background: linear-gradient(135deg, var(--alt), var(--primary)); /* Emerald gradient */
  border: none;
  color: white;
  padding: 15px 35px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(46, 125, 110, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 0 15px 20px rgba(46, 125, 110, 0.5);
  transform: translateY(-3px);
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: var(--bg); /* Beige */
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  padding: 30px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent); /* Gold */
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--highlight); /* Bronze */
}


form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

select,
input[type="text"] {
  padding: 12px 15px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

select:focus,
input[type="text"]:focus {
  border-color: var(--alt); /* Emerald */
}

.qr-code {
  margin: 0 auto;
  width: 180px;
  height: 180px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(46, 125, 110, 0.2); /* Emerald glow */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.submit-btn {
  background: var(--primary); /* Emerald */
  color: white;
  border: none;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 6px 15px rgba(46, 125, 110, 0.4);
}

.submit-btn:hover {
  background: #195bcc; /* Optional: add a richer emerald or custom hover */
}


.testimonial {
  position: relative;
  overflow: hidden;
  padding-bottom:30px;
}
.testimonial h2 { 
text-align:center;
  font-size: 2.8rem;
  margin-bottom: 1.3rem;
  color: var(--highlight);
}
/* ---------- SLIDER AREA ---------- */
.testimonial-container{
  max-width:1150px;
  margin:0 auto;
  overflow:hidden;
  position:relative;
}

/* Track that scrolls */
.testimonial-track{
  display:flex;
  gap:40px;
  width:max-content;
  animation:scroll-left 40s linear infinite;
}

/* ---------- CARD ---------- */
.testimonial-card{
  width:350px;
  min-height:230px;
  flex-shrink:0;
  padding:25px;
  border-radius:18px;
  border:1px solid rgba(200,160,100,0.4);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.85), rgba(250,245,235,0.7));
  backdrop-filter:blur(8px);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.05),
    inset 0 0 0 2px rgba(255,255,255,0.5);
  transition:transform .4s ease;
  position:relative;
}

/* gold glow on hover */
.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 12px 26px rgba(195,150,70,0.22),
    inset 0 0 0 2px rgba(200,160,100,0.6);
}

/* ---------- IMAGE ---------- */
.testimonial-img{
  width:70px;
  height:70px;
  border-radius:50%;
  margin-bottom:15px;
  border:3px solid var(--gold);
  object-fit:cover;
  box-shadow:0 0 0 3px rgba(255,255,255,0.7);
}

/* ---------- TEXT ---------- */
.testimonial-text{
  color:var(--text);
  font-size:1.05rem;
  line-height:1.55;
  margin-bottom:15px;
}

.testimonial-name{
  color:var(--gold-dark);
  font-weight:bold;
  font-size:1.1rem;
}

/* ---------- ANIMATION ---------- */
@keyframes scroll-left{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}


/* Overlay */
.modal_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2147483647; /* highest possible z-index */
}

.modal-content_menu {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  height: 100%;
  background: #f5efe6;
  border: 2px solid #c9a66b;
  border-radius: 12px;
  padding: 20px;
  z-index: 2147483647; /* same as overlay or higher */
}


/* iframe inside popup */
.modal-content_menu iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Close button */
#close_menu {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--gold);
  cursor: pointer;
}

/* Animations */
@keyframes slideDown {
  from { top: -100%; opacity: 0; }
  to { top: 50px; opacity: 1; }
}

@keyframes fadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.5); }
}

/* --- Layout --- */
.contact-two-col {
  position: relative;
  min-height: 450px;
}

/* Full-width image */
.contact-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/table.jpeg') center/cover no-repeat;
}

/* Optional dark overlay */
.contact-img::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

/* Centered card */
.contact-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background: rgba(255,255,255,0.9);
  padding: 40px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  z-index: 2;
}
@media (max-width: 480px) {
  .contact-info {
    background-color: transparent !important;
  }
}

/* Styles */
.contact-info h2 {
  margin-bottom: 10px;
   font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.contact-info p {
  margin-bottom: 20px;
}

.reserve-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #9b644c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: 0.3s;
}

.reserve-btn:hover {
  background: var(--btnhover);
}

/* Mobile */
@media(max-width: 700px){
  .contact-info {
    width: 90%;
  }
}

/* menu Tabs */
.menu-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
    justify-content: center;   /* centers the buttons horizontally */
  align-items: center;        /* vertically aligned */
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background-color: var(--btn); /* Gold */
  color: #fff !important;
    
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
  color:#000;
}

.tab-btn.active {
  background-color: var(--accent); /* Gold */
  color: #fff;
}

 

.content-box {
  display: none;
}

.content-box.active {
  display: block;
}

.menu-frame {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Safari & iOS Safari only */
@supports (-webkit-touch-callout: none) {
  .gallery-images {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-images::-webkit-scrollbar {
    height: 0px;
  }
}
