/* Reset and Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
    max-width: 100%; 
    height: auto;    
    display: block;  
}


:root {
  --gold-primary: #d4af37;
  --gold-secondary: #b8941f;
  --gold-accent: #f4e4a6;
  --gold-light: #f7efca;
  --dark-charcoal: #1a1a1a;
  --warm-cream: #faf8f3;
  --soft-gray: #6b6b6b;
  --deep-black: #0a0a0a;
  --luxury-shadow: 0 10px 40px rgba(0,0,0,0.3);
  --transition-luxury: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Crimson Text', serif;
  background-color: var(--warm-cream);
  color: var(--dark-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.4) 0%, rgba(34, 34, 34, 0.37) 100%);
  position: absolute;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-luxury);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
  animation: shimmer 8s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.language-switcher {
  font-size: 12px;
  color: white;
  min-width: 80px;
}

.language-switcher a {
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.language-switcher a.active {
  color: var(--gold-primary);
  font-weight: 600;
}

.language-switcher a:hover {
  color: var(--gold-primary);
}

.language-switcher span {
  color: #666;
  margin: 0 5px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05) rotate(5deg);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition-luxury);
  padding: 10px 0;
  text-transform: uppercase;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
  transition: var(--transition-luxury);
  transform: translateX(-50%);
}

nav a:hover,
nav a.active {
  color: var(--gold-primary);
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}
/* Mobile Menu Toggle */
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1003; /* Povećan z-index */
  position: relative;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000; /* Ispod mobilnog menija ali iznad navbara */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Side Menu */
nav.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-charcoal) 100%);
  z-index: 1001; /* Iznad overlay-a i navbara */
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  padding: 80px 0 30px;
}

nav.mobile-menu.active {
  right: 0;
}

nav.mobile-menu ul {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

nav.mobile-menu li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav.mobile-menu a {
  display: block;
  padding: 20px 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

nav.mobile-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  padding-left: 40px;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Side Menu */
nav.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-charcoal) 100%);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  padding: 80px 0 30px;
}

nav.mobile-menu.active {
  right: 0;
}

nav.mobile-menu ul {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

nav.mobile-menu li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav.mobile-menu a {
  display: block;
  padding: 20px 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

nav.mobile-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  padding-left: 40px;
}
@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-container {
    order: 1;
  }

  .language-switcher {
    order: 2;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }

  nav:not(.mobile-menu) {
    display: none;
  }

  /* Ostali responsive stilovi ostaju isti... */
}
/* Hero Section */
.hero {
  height: 100vh !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding: 100px 0 0 0 !important; 
  display: flex !important;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('images/biser_sala.jpg');
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
  background: linear-gradient(45deg, #ffffff, var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--gold-accent);
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.5s forwards;
  text-transform: uppercase;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0;
  animation: fadeIn 1.5s ease 1s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 2s ease 2s forwards;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold-primary);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-10px) rotate(45deg); }
  60% { transform: translateY(-5px) rotate(45deg); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  color: var(--deep-black);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: var(--transition-luxury);
  box-shadow: var(--luxury-shadow);
  opacity: 0;
  animation: fadeInUp 1.5s ease 1.2s forwards;
  font-size: 14px;
  border: 2px solid transparent;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover .btn-shine {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--deep-black);
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold-accent);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0 auto;
}

/* About Section */
.about {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('images/restoran_biser.jpg');
  background-size: cover;
  background-position: center;
 
  color: white;
  position: relative;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-content p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.highlight-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-accent);
  border-left: 3px solid var(--gold-primary);
  padding-left: 30px;
  margin-top: 40px;
}

/* Weddings Section */
.weddings {
  background: var(--warm-cream);
  padding: 120px 0;
}

.weddings-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.weddings-text {
  padding-right: 20px;
}

.weddings-text .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.weddings-text p {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--soft-gray);
}

.luxury-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.feature-icon {
  color: var(--gold-primary);
  font-size: 20px;
  width: 30px;
  text-align: center;
}

.weddings-image {
  position: relative;
}

/* Carousel */
.wedding-carousel {
  position: relative;
  width: 100%;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--luxury-shadow);
  height: 500px;
}

.carousel-slides {
  display: flex;
  width: 600%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  width: calc(100% / 6);
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active .slide-overlay,
.carousel-slide:hover .slide-overlay {
  opacity: 1;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-luxury);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-btn:hover {
  background: var(--gold-primary);
  color: var(--deep-black);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.carousel-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.carousel-dot.active::before {
  transform: scale(1);
}

.carousel-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Menu Preview */
.menu-preview {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('images/restaurant.jpg');
  background-size: cover;
  background-position: center;
  
  color: white;
  text-align: center;
  position: relative;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.menu-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.menu-content p {
  font-size: 20px;
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Awards */
.awards {
  background: var(--deep-black);
  color: white;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 80px;
}

.award-item {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--dark-charcoal), rgba(212, 175, 55, 0.05));
  border-radius: 10px;
  transition: var(--transition-luxury);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--luxury-shadow);
  border-color: var(--gold-primary);
}

.award-icon {
  font-size: 48px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.award-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--gold-accent);
}

.award-item p {
  font-size: 22px;
  color: #cccccc;
  line-height: 1.6;
}

/* Reservation */
.reservation {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('images/biser_wedding.jpg');
  background-size: cover;
  background-position: center;
 
  color: white;
  position: relative;
  padding: 120px 0;
}

.reservation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.reservation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.reservation-content {
  text-align: center;
  margin-bottom: 60px;
}

.reservation-intro {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.6;
}

.reservation-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.reservation-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 30px;
}

.form-group label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold-accent);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-family: 'Crimson Text', serif;
  transition: var(--transition-luxury);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: var(--dark-charcoal);
  color: white;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.btn-reservation {
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  color: var(--deep-black);
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-luxury);
  box-shadow: var(--luxury-shadow);
  margin-bottom: 15px;
}

.btn-reservation:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.form-note {
  font-size: 14px;
  color: var(--gold-accent);
  font-style: italic;
  margin: 0;
}

.reservation-contact {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  height: fit-content;
}

.reservation-contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold-primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 14px;
  color: var(--gold-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 16px;
  color: black;
  font-weight: 400;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-charcoal) 100%);
  color: white;
  padding: 60px 20px 40px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

.footer-info .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

svg.contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--deep-black);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #cccccc;
  letter-spacing: 1px;
}
/* Menu Navigation - Sticky with Dropdowns */
/* Menu Navigation - Below Hero */
/* Menu Navigation - Below Hero */
/* Menu Navigation - DIREKTNO ispod hero */
.nav {
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-charcoal) 100%);
  position: relative;
  z-index: 997;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  margin: 0;
  width: 100%;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
padding: 0 20px;
  flex-wrap: wrap;
}

.menu-nav-item {
  position: relative;
}

.menu-nav-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 12px 25px;
  font-family: 'Crimson Text', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.menu-nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.menu-nav-btn:hover::before,
.menu-nav-btn.active::before {
  left: 0;
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
  color: var(--deep-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-accent);
}

.menu-nav-btn.active {
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  color: var(--deep-black);
  font-weight: 700;
}

/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--deep-black);
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(20px);
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--gold-primary);
  text-decoration: none;
  font-family: 'Crimson Text', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-accent);
  border-left-color: var(--gold-primary);
  transform: translateX(5px);
}

/* Responsive for Menu Nav */
@media (max-width: 968px) {
  .nav {
    top: 0;
    padding: 15px 0;
  }

  .nav-container {
    padding: 0 20px;
    gap: 12px;
  }

  .menu-nav-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .dropdown-menu {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 0;
    top: 0;
  }

  .nav-container {
    padding: 0 15px;
    gap: 8px;
  }

  .menu-nav-btn {
    padding: 8px 15px;
    font-size: 13px;
  }

  .dropdown-menu {
    min-width: 180px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .nav {
    top: 0;
    padding: 10px 0;
  }

  .nav-container {
    padding: 0 10px;
    gap: 6px;
  }

  .menu-nav-btn {
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
  }

  .dropdown-menu {
    min-width: 160px;
    border-radius: 8px;
  }

  .dropdown-menu a {
    padding: 10px 15px;
    font-size: 13px;
  }
}
/* Menu Page */
.menu-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('images/biser_fruits.jpg');
  background-size: cover;
  background-position: center;
 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.menu-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  max-width: 600px;
  padding: 0 20px;
}

.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
  background: linear-gradient(45deg, #ffffff, var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-content {
  
  padding: 80px 0;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.menu-category {
  margin-bottom: 80px;
}

.menu-category.hidden {
  display: none;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark-charcoal);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.category-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  color: var(--gold-primary);
  font-style: italic;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.menu-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition-luxury);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transition: left 0.6s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

.menu-item.featured {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.9));
}

.menu-item.featured::after {
  content: '★';
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--gold-primary);
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 15px;
}

.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-charcoal);
  letter-spacing: 1px;
  flex: 1;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-primary);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.menu-item .description {
  color: var(--soft-gray);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.menu-item small {
  color: var(--gold-secondary);
  font-style: italic;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

.beverages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.beverage-section {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-luxury);
}

.beverage-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.beverage-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark-charcoal);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
}

.beverage-section h3::after {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.beverage-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beverage-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
}

.beverage-item:last-child {
  border-bottom: none;
}

/* Gallery */
.gallery {
  background: var(--warm-cream);
  padding: 120px 0;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: var(--luxury-shadow);
  transition: var(--transition-luxury);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* About Story */
.about-story {
  background: var(--warm-cream);
  padding: 120px 0;
}

.about-story-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.story-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.story-text p {
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 30px;
  color: var(--dark-charcoal);
  text-align: justify;
  text-justify: inter-word;
  padding: 0 20px;
}

.story-text p:first-of-type {
  font-size: 21px;
  font-weight: 500;
  color: var(--gold-secondary);
  margin-bottom: 35px;
  text-align: center;
}

/* Contact Page */
.contact-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('images/biser_wedding.jpg');
  background-size: cover;
  background-position: center;
 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.contact-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  max-width: 600px;
  padding: 0 20px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
  background: linear-gradient(45deg, #ffffff, var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-main {
  background: var(--warm-cream);
  padding: 100px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--dark-charcoal);
  margin-bottom: 30px;
  letter-spacing: 1px;
}
/* Contact page with map beside info */
.contact-container-with-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.contact-map {
  position: relative;
  min-height: 500px;
}

.contact-map .map-embed {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: grayscale(20%) contrast(1.1);
}

/* ============================================
   RESTAURANT BISER - OPTIMIZED STYLESHEET
   Remove ALL existing @media queries and replace
   with this clean, optimized version
   ============================================ */

/* ============================================
   RESPONSIVE DESIGN - OPTIMIZED
   ============================================ */

/* Desktop Large (1200px+) - Default styles already set */

/* Desktop Medium (968px - 1200px) */
@media (max-width: 1200px) {
  .header-container,
  .weddings-container,
  .awards-container,
  .reservation-container,
  .menu-container,
  .contact-container {
    max-width: 960px;
    padding: 0 30px;
  }
}

/* Tablet (768px - 968px) */
@media (max-width: 968px) {
  /* Header */
  header {
    padding: 15px 0;
  }

  .header-container {
    padding: 0 25px;
  }

  /* Navigation */
  .nav {
    top: 0;
    padding: 12px 0;
  }

  .nav-container {
    padding: 0 20px;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-container::-webkit-scrollbar {
    display: none;
  }

  .menu-nav-btn {
    padding: 10px 18px;
    font-size: 13px;
    flex-shrink: 0;
  }

  /* Hero */
  .hero {
    height: 70vh;
    padding-top: 140px;
  }

  /* Layouts - Switch to single column */
  .weddings-container,
  .reservation-form-container,
  .contact-container,
  .contact-container-with-map,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Carousel */
  .carousel-container {
    height: 400px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
    gap: 25px;
  }

  .beverages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .reservation-form,
  .reservation-contact {
    padding: 35px 30px;
  }

  /* Sections */
  section {
    padding: 80px 0;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Footer */
  .footer-content {
    text-align: center;
  }

  .footer-logo,
  .social-links {
    justify-content: center;
  }
}



 

  @media (max-width: 768px) {
     header {
    padding: 50px 0;
    position:fixed;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.4) 0%, rgba(34, 34, 34, 0.37) 100%);
    
  }
  .header-container {
    position: relative;
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column; /* DODAJTE OVO */
    align-items: center;
    gap: 3px; /* SMANJITE GAP */
  }

  .logo-img {
    width: 56px;
    height: 50px;
  }

  .logo-text {
    position:absolute;
     transform: translateX(-50%);
    font-size: 20px; /* SMANJITE FONT */
    top:20px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Language switcher - top left */
  .language-switcher {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    z-index: 10;
  }

  /* Mobile menu toggle - top right */
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  /* Hide desktop nav */
  nav:not(.mobile-menu) {
    display: none;
  }

  /* Navigation - horizontal scroll */
   .nav-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: stretch;
  }

  .menu-nav-item {
    width: 100%;
    position: static !important; /* Na desktopu je vjerovatno relative, postavi na static */
    display: block !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .menu-nav-item:last-child {
    border-bottom: none;
  }

  /* Main category button */
  .menu-nav-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 13px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--gold-primary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .menu-nav-btn:hover,
  .menu-nav-btn.active {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 25px;
  }

  .dropdown-arrow {
    font-size: 10px;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Accordion submenu - direktno ispod dugmeta */
  .dropdown-menu {
    position: static !important;
     top: auto !important; 
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  
  /* Poništavanje transformacija */
  transform: none !important; 
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 !important;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                padding 0.4s ease;
      
  
}

  /* When dropdown is active - expand */
  .dropdown.active .dropdown-menu {
    max-height: 600px;
    padding: 8px 0;
  }

  .dropdown-menu a {
    display: block;
    padding: 14px 20px 14px 40px;
    font-size: 12px;
    border-left: 3px solid transparent;
    color: rgba(212, 175, 55, 0.85);
    transition: all 0.25s ease;
    text-align: left;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    border-left-color: var(--gold-primary);
    padding-left: 45px;
  }

  /* Simple categories without dropdown */
  .menu-nav-item:not(.dropdown) .menu-nav-btn {
    cursor: pointer;
  }

  .menu-nav-item:not(.dropdown) .menu-nav-btn:hover {
    background: rgba(212, 175, 55, 0.15);
  }
  /* Hero */
  .hero {
    height: 65vh;
    min-height: 500px;
    padding-top: 160px;
     background-attachment: scroll !important; 
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero h3 {
    font-size: 18px;
  }

  .hero p {
    font-size: 16px;
  }

  /* Sections */
  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 13px;
    min-height: 44px;
  }

  /* Weddings */
  .weddings-container {
    padding: 0 20px;
    gap: 50px;
  }

  /* Carousel */
  .carousel-container {
    height: 350px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  /* Menu */
  .menu-item {
    padding: 20px 18px;
  }

  .menu-item h4 {
    font-size: 18px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    aspect-ratio: 4/3;
    max-height: 400px;
  }

  /* Forms */
  .reservation-form,
  .reservation-contact,
  .contact-info {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents iOS zoom */
  }

  .btn-reservation {
    width: 100%;
    padding: 16px 30px;
  }

  /* Awards */
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Map */
  .contact-map,
  .map-embed iframe {
    min-height: 350px;
  }

  /* Story text */
  .story-text p {
    font-size: 17px;
    padding: 0 10px;
    text-align: left;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  /* Header */
  .header-container {
    padding: 0 15px;
  }

  .logo-img {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 16px;
  }

  .language-switcher {
    font-size: 10px;
    left: 12px;
  }

  .hamburger-line {
    width: 24px;
  }

  /* Navigation */
  .nav {
    
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 12px;
    gap: 6px;
  }

   .menu-nav-btn {
    padding: 14px 18px;
    font-size: 12px;
  }

  .dropdown-menu a {
    padding: 12px 18px 12px 35px;
    font-size: 11px;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a.active {
    padding-left: 40px;
  }

  .dropdown-arrow {
    font-size: 9px;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 450px;
    padding: 180px 15px 60px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .hero h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* Sections */
  section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Carousel */
  .carousel-container {
    height: 280px;
    border-radius: 10px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }

  /* Menu */
  .menu-grid {
    gap: 18px;
    padding: 0 5px;
  }

  .menu-item {
    padding: 18px 16px;
  }

  .menu-item h4 {
    font-size: 17px;
    line-height: 1.3;
  }

  .price {
    font-size: 16px;
  }

  .menu-item .description {
    font-size: 14px;
  }

  .beverage-section {
    padding: 25px 18px;
  }

  /* Gallery */
  .gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
  }

  /* Forms */
  .reservation-form,
  .reservation-contact {
    padding: 25px 18px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 15px;
    font-size: 16px;
    border-radius: 6px;
  }

  .btn-reservation {
    padding: 15px 25px;
    font-size: 13px;
  }

  /* Contact */
  .contact-method {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Map */
  .contact-map,
  .map-embed iframe {
    min-height: 300px;
    border-radius: 10px;
  }

  /* Footer */
  .footer-content {
    padding: 0 15px;
  }

  .footer-logo-img {
    width: 35px;
    height: 35px;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  /* Scroll indicator */
  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-arrow {
    width: 25px;
    height: 25px;
  }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
  .logo-text {
    font-size: 14px;
  }

  .menu-nav-btn {
    padding: 6px 10px;
    font-size: 10px;
  }

  .carousel-container {
    height: 240px;
  }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 140px 20px 40px;
  }

  section {
    padding: 40px 0;
  }

  .carousel-container {
    height: 300px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .menu-nav-btn,
  .carousel-btn,
  .btn,
  .social-link,
  .dropdown-menu a {
    min-height: 44px;
    min-width: 44px;
  }

  /* Disable transform hover effects */
  .menu-item:hover,
  .gallery-item:hover,
  .award-item:hover {
    transform: translateY(0);
  }

  /* Tap highlight */
  button,
  a,
  .menu-item {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  header,
  .nav,
  footer,
  .mobile-menu-toggle,
  .carousel-btn,
  .scroll-indicator,
  .btn {
    display: none !important;
  }

  .hero {
    height: auto;
    padding: 20px;
  }

  section {
    page-break-inside: avoid;
    padding: 20px 0;
  }

  .menu-item {
    page-break-inside: avoid;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
}

/* GPU Acceleration for Mobile */
@media (max-width: 768px) {
  .menu-item,
  .gallery-item,
  .carousel-slide,
  .btn {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}
 @media (min-width: 769px) {
      .nav {
        background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-charcoal) 100%);
        padding: 20px 0;
        position: relative;
       
        z-index: 999;
        box-shadow: 0 4px 30px rgba(0,0,0,0.4);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(20px);
      }

      .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
        flex-wrap: wrap;
      }

      .menu-nav-item {
        position: relative;
      }

      .menu-nav-btn {
        background: rgba(212, 175, 55, 0.1);
        border: 2px solid var(--gold-primary);
        color: var(--gold-primary);
        padding: 12px 25px;
        font-family: 'Crimson Text', serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-transform: uppercase;
        border-radius: 8px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .dropdown-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
      }

      .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
      }

      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--deep-black);
        border: 2px solid var(--gold-primary);
        border-radius: 8px;
        padding: 10px 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        z-index: 1000;
        margin-top: 10px;
      }

      .dropdown:hover .dropdown-menu,
      .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: var(--gold-primary);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
      }

      .dropdown-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold-accent);
        border-left-color: var(--gold-primary);
        transform: translateX(5px);
      }
    }
    

    /* ============================================
       MOBILE OPTIMIZATION (768px and below)
       ============================================ */
  