/* ===============================================
   ОСНОВНИ СТИЛОВЕ И ПРОМЕНЛИВИ
   =============================================== */

/* Предотвратяване на мигане на неформатирано съдържание */

/* Стилове за custom scrollbar */

html {
   scroll-behavior: smooth;
}

::-webkit-scrollbar {
   width: 12px;
   background-color: #1a1a1a;
 }
 
 ::-webkit-scrollbar-track {
   background-color: rgba(26, 26, 26, 0.95);
   border: 1px solid rgba(200, 169, 126, 0.1);
   border-radius: 6px;
   box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
 }
 
 ::-webkit-scrollbar-thumb {
   background: linear-gradient(to bottom, #c8a97e, #a58a5a);
   border-radius: 6px;
   border: 2px solid #1a1a1a;
   box-shadow: 0 0 8px rgba(200, 169, 126, 0.4);
 }
 
 ::-webkit-scrollbar-thumb:hover {
   background: linear-gradient(to bottom, #e2cfb0, #c8a97e);
   box-shadow: 0 0 12px rgba(200, 169, 126, 0.6);
 }
 
 /* Стил за Firefox */
 * {
   scrollbar-width: thin;
   scrollbar-color: #c8a97e #1a1a1a;
 }
 
 
 /* Анимация за скрол бара при скролване */
 @keyframes scrollGlow {
   0% { box-shadow: 0 0 5px rgba(200, 169, 126, 0.3); }
   50% { box-shadow: 0 0 15px rgba(200, 169, 126, 0.5); }
   100% { box-shadow: 0 0 5px rgba(200, 169, 126, 0.3); }
 }
 
 /* Добавяне на анимация при скролване */
 html.scrolling ::-webkit-scrollbar-thumb {
   animation: scrollGlow 1.5s infinite;
 }
 
 /* JavaScript за добавяне на клас при скролване */

html:not(.fonts-loaded) * {
   transition: none !important;
}

.fonts-loaded body {
   opacity: 1;
   transition: opacity 0.5s ease;
}

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c8a97e;
    --dark-gold: #a58a5a;
    --light-gold: #e2cfb0;
    --cream: #f9f5f0;
    --charcoal: #2c2c2c;
    --black: #1a1a1a;
    --white: #ffffff;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* ===============================================
   ЛУКСОЗНИ ДЕКОРАТИВНИ ЕЛЕМЕНТИ
   =============================================== */
.luxury-corner {
    position: fixed;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    pointer-events: none;
    opacity: 0.3;
}

.form-decorative-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.form-decorative-corner.top-left {
    top: -5px;
    left: -5px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.form-decorative-corner.top-right {
    top: -5px;
    right: -5px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.form-decorative-corner.bottom-left {
    bottom: -5px;
    left: -5px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.form-decorative-corner.bottom-right {
    bottom: -5px;
    right: -5px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.luxury-divider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 15px;
    position: relative;
    vertical-align: middle;
}

.luxury-divider::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
    top: 50%;
    transform: translateY(-50%);
}

.luxury-divider.left::before {
    right: -5px;
}

.luxury-divider.right::before {
    left: -5px;
}

.luxury-signature {
    text-align: right;
    margin-top: 30px;
}

.chef-signature {
    height: 60px;
    opacity: 0.8;
}

.heading-underline {
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 30px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    transform: skewX(-30deg);
    background: linear-gradient(90deg, 
                               rgba(255, 255, 255, 0) 10%, 
                               rgba(255, 255, 255, 0.2) 50%, 
                               rgba(255, 255, 255, 0) 90%);
    animation: shine 6s infinite;
}

/* ===============================================
   БУТОН ЗА ВРЪЩАНЕ НАГОРЕ
   =============================================== */
   .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 55px;
      height: 55px;
      background: linear-gradient(145deg, #c8a97e, #a58a5a);
      color: #1a1a1a;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 99;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 0;
      visibility: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(200, 169, 126, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: translateY(20px) scale(0.9);
  }
  
  .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
  }
  
  .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(200, 169, 126, 0.3);
      background: linear-gradient(145deg, #e2cfb0, #c8a97e);
  }
  
  .back-to-top:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: transparent;
      border: 2px dashed rgba(200, 169, 126, 0.6);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      animation: spin 12s linear infinite;
      opacity: 0;
      transition: opacity 0.3s ease;
  }
  
  .back-to-top:hover:before {
      opacity: 1;
  }
  
  .back-to-top:after {
      content: '';
      position: absolute;
      width: 70%;
      height: 70%;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      top: 15%;
      left: 15%;
  }
  
  .back-to-top i {
      font-size: 22px;
      position: relative;
      z-index: 2;
      transition: transform 0.3s ease;
  }
  
  .back-to-top:hover i {
      transform: translateY(-3px);
      color: #000;
  }
  
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
  }

/* ===============================================
   НАВИГАЦИЯ
   =============================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
    background-color: rgba(26, 26, 26, 0.95);
}

.header-scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    z-index: 1001;
    transition: all var(--transition-medium);
    text-shadow: 0 0 10px rgba(200, 169, 126, 0.2);
}

.logo:hover {
    text-shadow: 0 0 15px rgba(200, 169, 126, 0.6);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    position: relative;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Стил за бургер меню бутона */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1002;
    transition: all 0.3s ease;
}

.hamburger-line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--gold);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 6px;
}

.hamburger-line:nth-child(2) {
    top: 14px;
}

.hamburger-line:nth-child(3) {
    top: 22px;
}

/* Анимация за бургер меню бутона */
.menu-toggle.active .hamburger-line:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
}

/* Стил за мобилния CTA бутон */
.menu-cta {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black) !important;
    padding: 12px 24px !important;
    border-radius: 30px;
    margin-top: 15px;
    text-align: center;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.menu-cta:hover, .menu-cta:focus {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-cta::after {
    display: none !important; /* Премахваме линията под текста */
}

.mobile-only {
    display: none;
}

/* ===============================================
   ХЕРО СЕКЦИЯ
   =============================================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.parallax-section {
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.luxury-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 90px;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.5s ease;
}

.hero h2 {
    font-size: 26px;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 50px;
    animation: fadeInUp 1.5s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(200, 169, 126, 0.3);
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 28px;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.scroll-indicator:hover i {
    color: var(--white);
    transform: scale(1.2);
}

/* ===============================================
   БУТОНИ
   =============================================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-weight: 500;
    animation: fadeIn 1.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 169, 126, 0.2);
    transition: all var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.3);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-luxury {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-luxury:hover {
    background-color: var(--dark-gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.btn-dark {
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-dark:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-dark i {
    margin-left: 10px;
    transition: transform var(--transition-fast);
}

.btn-dark:hover i {
    transform: translateX(5px);
}

/* ===============================================
   ОБЩИ СТИЛОВЕ ЗА СЕКЦИИ
   =============================================== */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-heading h2 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-heading p {
    font-size: 18px;
    color: var(--cream);
    max-width: 700px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* ===============================================
   ЗА НАС СЕКЦИЯ
   =============================================== */
.about {
    background-color: var(--black);
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    padding-right: 50px;
    min-width: 300px;
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cream);
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    transition: all var(--transition-medium);
    margin-top: 30px;
}

.about-image:hover {
    transform: scale(1.03) rotate(1deg);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 8px solid var(--charcoal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 169, 126, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: -1;
    transition: all var(--transition-medium);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    z-index: -1;
    transition: all var(--transition-medium);
}

.about-image:hover::before,
.about-image:hover::after {
    width: 150px;
    height: 150px;
}

/* ===============================================
   МЕНЮ СЕКЦИЯ
   =============================================== */
.menu {
    background-color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.menu-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1516901633625-98f0d1b112be?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080&q=80') no-repeat center center/cover;
    opacity: 0.05;
    pointer-events: none;
}

/* Навигация за таб менюто */
/* Добавете това към CSS файла */
.mobile-nav-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav-scrolled .logo {
    font-size: 22px; /* Малко по-малък размер на логото при скролване */
    transition: font-size 0.3s ease;
}

.mobile-nav-scrolled .nav-container {
    transition: padding 0.3s ease;
}

/* Скриваме меню хедъра и логото в него по подразбиране */
.menu-header {
    display: none;
}

/* Показваме ги само на мобилни устройства */
@media (max-width: 768px) {
    .menu-header {
        display: block;
        padding: 20px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(200, 169, 126, 0.2);
        text-align: center;
    }
    
    .menu-logo {
        display: inline-block;
        font-size: 28px;
        margin-bottom: 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        transition-delay: 0.1s;
    }
    
    .nav-menu.active .menu-logo {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    position: relative;
}

.menu-tab {
    background: none;
    border: 1px solid rgba(200, 169, 126, 0.3);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    padding: 12px 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border-radius: 4px;
}

.menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(200, 169, 126, 0.1);
    transition: all var(--transition-fast);
    z-index: -1;
}

.menu-tab:hover::before,
.menu-tab.active::before {
    left: 0;
}

.menu-tab:hover,
.menu-tab.active {
    color: var(--gold);
    border-color: var(--gold);
}

.menu-tab.active {
    font-weight: 500;
    background-color: rgba(200, 169, 126, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Съдържание на таб менюто */
.menu-tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.menu-tab-content.active {
    display: block;
}

/* Интро за всяка категория */
.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.menu-description {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

/* Списък с ястия */
.menu-list {
    max-width: 900px;
    margin: 0 auto;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px dashed rgba(200, 169, 126, 0.2);
    transition: all var(--transition-medium);
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-list-item:hover {
    transform: translateX(10px);
}

.dish-info {
    flex: 1;
    padding-right: 20px;
}

.dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
    transition: all var(--transition-fast);
}

.menu-list-item:hover .dish-name {
    transform: translateX(5px);
}

.dish-description {
    color: var(--cream);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.dish-price {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 15px;
    background-color: rgba(26, 26, 26, 0.4);
    border-radius: 30px;
    align-self: flex-start;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
}

.menu-list-item:hover .dish-price {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Специални предложения */
.special-menu-section {
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(200, 169, 126, 0.3);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-medium);
    border-radius: 3px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.special-menu-section::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed rgba(200, 169, 126, 0.2);
    pointer-events: none;
}

.special-menu-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.special-section-title {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.special-section-description {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 25px;
}

.special-menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.special-note {
    color: var(--cream);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.special-menu-cta {
    margin-top: 20px;
}

/* ===============================================
   ЕКСПЕРТИЗА СЕКЦИЯ
   =============================================== */
.expertise {
    background-color: var(--black);
    position: relative;
    padding: 100px 0;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.expertise::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
 }
 
 .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
 }
 
 .expertise-item {
    padding: 30px;
    transition: all var(--transition-medium);
    cursor: default;
 }
 
 .expertise-item:hover {
    transform: translateY(-10px);
 }
 
 .expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--gold);
    transition: all var(--transition-medium);
    border: 1px solid rgba(200, 169, 126, 0.3);
 }
 
 .expertise-item:hover .expertise-icon {
    background-color: var(--gold);
    color: var(--black);
    transform: rotateY(360deg);
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.3);
 }
 
 .expertise-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
 }
 
 .expertise-item p {
    color: var(--cream);
    line-height: 1.6;
 }
 
 /* ===============================================
   ГАЛЕРИЯ СЕКЦИЯ
   =============================================== */
 .gallery {
    background-color: var(--black);
    padding-bottom: 150px;
 }
 
 .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
 }
 
 .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    border-radius: 3px;
 }
 
 .gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
 }
 
 .gallery-item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
 }
 
 .gallery-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 1;
 }
 
 .gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 1;
 }
 
 .gallery-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 1;
 }
 
 .gallery-item:nth-child(6) {
    grid-column: span 4;
    grid-row: span 2;
 }
 
 .gallery-item:nth-child(7) {
    grid-column: span 4;
    grid-row: span 1;
 }
 
 .gallery-item:nth-child(8) {
    grid-column: span 4;
    grid-row: span 1;
 }
 
 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
 }
 
 .gallery-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: scale(1.03);
 }
 
 .gallery-item:hover img {
    transform: scale(1.1);
 }
 
 .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.2) 60%, rgba(26, 26, 26, 0) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
 }
 
 .gallery-item:hover::before {
    opacity: 1;
 }
 
 .gallery-item-info {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
    transition: all var(--transition-medium);
    z-index: 2;
    opacity: 0;
 }
 
 .gallery-item:hover .gallery-item-info {
    bottom: 0;
    opacity: 1;
 }
 
 .info-content {
    position: relative;
 }
 
 .gallery-item-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--gold);
 }
 
 .gallery-item-description {
    font-size: 14px;
    margin-bottom: 12px;
 }
 
 .view-more {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    cursor: pointer;
 }
 
 .view-more i {
    margin-left: 5px;
    transition: all var(--transition-fast);
 }
 
 .view-more:hover i {
    transform: scale(1.2);
 }
 
 /* ===============================================
   СТАТИСТИКИ СЕКЦИЯ
   =============================================== */
 .stats {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=300&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
 }
 
 .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7));
 }
 
 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
 }
 
 .stat-item {
    padding: 30px;
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 5px;
    transition: all var(--transition-medium);
 }
 
 .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
 }
 
 .stat-number {
    font-size: 48px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    font-family: 'Cormorant Garamond', serif;
 }
 
 .stat-label {
    color: var(--cream);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
 }
 
 /* ===============================================
   ЕКИП СЕКЦИЯ
   =============================================== */
 .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
 }
 
 .team-card {
    perspective: 1000px;
    height: 450px;
 }
 
 .team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
 }
 
 .team-card:hover .team-card-inner {
    transform: rotateY(180deg);
 }
 
 .team-card-front, 
 .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
 }
 
 .team-card-front {
    background-color: #2c2c2c;
 }
 
 .team-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 
 .team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-align: left;
 }
 
 .team-card-info h3 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 22px;
 }
 
 .team-card-info p {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
 }
 
 .team-card-back {
    background-color: #1a1a1a;
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: center;
 }
 
 .team-card-back h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 24px;
 }
 
 .team-card-back .team-title {
    color: var(--cream);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 500;
 }
 
 .team-card-back .team-bio {
    color: var(--cream);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
 }
 
 .team-card-back .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
 }
 
 .team-card-back .team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--cream);
    transition: all 0.3s ease;
    text-decoration: none;
 }
 
 .team-card-back .team-social a:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
 }
 
 /* ===============================================
   ОТЗИВИ СЕКЦИЯ
   =============================================== */
 .testimonials {
    background-color: var(--black);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
 }
 
 .testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080&q=80') no-repeat center center/cover;
    opacity: 0.2;
    pointer-events: none;
 }
 
 .testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 70px auto 0;
    overflow: visible;
 }
 
 .testimonials-slider {
    display: flex;
    transition: transform 0.6s ease;
 }
 
 .testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
 }
 
 .testimonial-content {
    position: relative;
    background-color: rgba(44, 44, 44, 0.4);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 8px;
    padding: 70px 30px 30px;
    margin-top: 25px;
    height: 100%;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }
 
 .testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
    background-color: rgba(44, 44, 44, 0.6);
 }
 
 .testimonial-quote-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 20;
    border: 2px solid rgba(0, 0, 0, 0.1);
 }
 
 .testimonial-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
 }
 
 .testimonial-author-info {
    border-top: 1px dashed rgba(200, 169, 126, 0.3);
    padding-top: 15px;
    margin-top: auto;
    text-align: center;
 }
 
 .testimonial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 600;
 }
 
 .testimonial-rating {
    color: var(--gold);
    font-size: 14px;
 }
 
 .testimonial-rating i {
    margin: 0 2px;
 }
 
 /* Навигация для слайдера */
 .testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    top: 0;
 }
 
 .testimonial-nav-btn {
    background-color: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 16px;
    z-index: 10;
    position: relative;
 }
 
 .testimonial-nav-btn:hover, 
 .testimonial-nav-btn:focus {
    background-color: var(--gold);
    color: var(--black);
    transform: scale(1.1);
 }
 
 .testimonial-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
 }
 
 .testimonial-indicators {
    display: flex;
    gap: 8px;
 }
 
 .testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(200, 169, 126, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
 }
 
 .testimonial-indicator.active {
    background-color: var(--gold);
    transform: scale(1.2);
 }
 
 .testimonial-cta {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background-color: rgba(44, 44, 44, 0.4);
    border: 1px solid rgba(200, 169, 126, 0.2);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-medium);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }
 
 .testimonial-cta:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
 }
 
 .testimonial-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 30px;
 }
 
 .testimonial-cta h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
 }
 
 .testimonial-cta p {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
 }
 
 .testimonial-cta .btn {
    position: relative;
    overflow: hidden;
 }
 
 .testimonial-cta .btn i {
    margin-left: 10px;
    transition: transform var(--transition-fast);
 }
 
 .testimonial-cta .btn:hover i {
    transform: translateX(5px);
 }
 
 /* ===============================================
   РЕЗЕРВАЦИИ СЕКЦИЯ
   =============================================== */
 .reservation {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1498654896293-37aacf113fd9?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080&q=80') no-repeat center center/cover;
    position: relative;
 }
 
 .reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.8));
 }
 
 .reservation-form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
 }
 
 .reservation-form {
    padding: 50px;
    background-color: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(200, 169, 126, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all var(--transition-medium);
    border-radius: 3px;
 }
 
 .reservation-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border-color: var(--gold);
 }
 
 .form-group {
    margin-bottom: 25px;
    position: relative;
 }
 
 .form-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
 }
 
 .form-row .form-group {
    flex: 1 1 200px;
 }
 
 .form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--cream);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
 }
 
 .form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all var(--transition-fast);
    border-radius: 3px;
 }
 
 .form-control:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(200, 169, 126, 0.3);
 }
 
 .form-group.text-center {
    text-align: center;
    margin-top: 40px;
 }
 
 /* ===============================================
   СПЕЦИАЛНИ СЪБИТИЯ СЕКЦИЯ
   =============================================== */
 .special-events {
    background-color: var(--black);
    position: relative;
 }
 
 .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
 }
 
 .event-card {
    background-color: rgba(44, 44, 44, 0.4);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 5px;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }
 
 .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
 }
 
 .event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
 }
 
 .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
 }
 
 .event-card:hover .event-image img {
    transform: scale(1.1);
 }
 
 .event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
 }
 
 .event-content {
    padding: 25px;
 }
 
 .event-content h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
 }
 
 .event-content p {
    color: var(--cream);
    margin-bottom: 25px;
    line-height: 1.6;
 }
 
 /* ===============================================
   FAQ СЕКЦИЯ
   =============================================== */
 .faq {
    background-color: var(--charcoal);
    position: relative;
 }
 
 .faq-container {
    max-width: 800px;
    margin: 0 auto;
 }
 
 .faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(26, 26, 26, 0.5);
    transition: all var(--transition-medium);
 }
 
 .faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }
 
 .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
 
 .faq-question h3 {
    font-size: 18px;
    color: var(--white);
    margin: 0;
    transition: all var(--transition-fast);
 }
 
 .faq-item.active .faq-question h3 {
    color: var(--gold);
 }
 
 .faq-icon {
    color: var(--gold);
    transition: all var(--transition-fast);
 }
 
 .faq-item.active .faq-icon {
    transform: rotate(45deg);
 }
 
 .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
 }
 
 .faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
 }
 
 .faq-answer p {
    color: var(--cream);
    margin: 0;
    line-height: 1.6;
 }
 
 /* ===============================================
   ФУТЪР
   =============================================== */
 footer {
    background-color: var(--black);
    color: var(--cream);
    position: relative;
 }
 
 .footer-top {
    padding: 80px 0 50px;
    background-color: var(--charcoal);
    position: relative;
 }
 
 .footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1513442542250-854d436a73f2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080&q=80') no-repeat center center/cover;
    opacity: 0.02;
    pointer-events: none;
 }
 
 .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
 }
 
 .footer-column.brand-column {
    grid-column: span 1;
 }
 
 .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
    transition: all var(--transition-fast);
    text-decoration: none;
 }
 
 .footer-logo:hover {
    text-shadow: 0 0 15px rgba(200, 169, 126, 0.6);
 }
 
 .footer-column h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
 }
 
 .footer-divider {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 25px;
 }
 
 .footer-column p {
    color: var(--cream);
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
 }
 
 .footer-contact {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
 }
 
 .footer-contact i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 16px;
    transition: all var(--transition-fast);
    width: 20px;
    text-align: center;
 }
 
 .footer-contact:hover i {
    transform: translateX(5px);
 }
 
 .footer-links {
    list-style: none;
 }
 
 .footer-links li {
    margin-bottom: 15px;
 }
 
 .footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 25px;
    display: inline-block;
 }
 
 .footer-links a::before {
    content: '→';
    position: absolute;
    left: 5px;
    top: 0;
    color: var(--gold);
    transition: transform var(--transition-fast);
 }
 
 .footer-links a:hover {
    color: var(--gold);
 }
 
 .footer-links a:hover::before {
    transform: translateX(5px);
 }
 
 .social-links {
    margin-top: 30px;
    display: flex;
 }
 
 .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--cream);
    transition: all var(--transition-medium);
    font-size: 16px;
    text-decoration: none;
 }
 
 .social-links a:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.5);
 }
 
/* Стилове за колоната с картата */
.footer-column.map-column {
    grid-column: span 1;
 }
 
 .footer-map {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
 }
 
 .footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
 }
 
 /* Секция за бюлетин */
 .newsletter-section {
    background-color: var(--charcoal);
    padding: 40px 0;
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
 }
 
 .newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
 }
 
 .newsletter-info {
    flex: 1;
    min-width: 250px;
 }
 
 .newsletter-info h4 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
 }
 
 .newsletter-info p {
    color: var(--cream);
    font-size: 14px;
    line-height: 1.6;
 }
 
 .newsletter-form-container {
    flex: 1;
    min-width: 300px;
 }
 
 .newsletter-group {
    position: relative;
    display: flex;
    max-width: 400px;
 }
 
 .newsletter-group .form-control {
    padding-right: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    color: var(--white);
    padding-left: 15px;
    width: 100%;
    border-radius: 3px;
 }
 
 .newsletter-group .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(200, 169, 126, 0.3);
 }
 
 .btn-newsletter {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    border: none;
    color: var(--black);
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-fast);
 }
 
 .btn-newsletter:hover {
    background-color: var(--dark-gold);
 }
 
 .footer-bottom {
    background-color: rgba(26, 26, 26, 0.95);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
 }
 
 .footer-bottom p {
    color: var(--cream);
    font-size: 14px;
 }
 
 .footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: all var(--transition-fast);
 }
 
 .footer-bottom a:hover {
    text-decoration: underline;
 }
 
 /* ===============================================
   ПОПЪП ГАЛЕРИЯ
   =============================================== */
 .gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
 }
 
 .gallery-popup.active {
    opacity: 1;
    visibility: visible;
 }
 
 .popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform var(--transition-medium);
    border-radius: 3px;
    overflow: hidden;
 }
 
 .gallery-popup.active .popup-content {
    transform: scale(1);
 }
 
 .popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 3px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
 }
 
 .popup-caption {
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    background-color: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
 }
 
 .popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: all var(--transition-fast);
    z-index: 10;
 }
 
 .popup-close:hover {
    transform: rotate(90deg);
    background-color: var(--white);
 }
 
 .popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(200, 169, 126, 0.7);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    transition: all var(--transition-fast);
    z-index: 5;
 }
 
 .popup-prev {
    left: 20px;
 }
 
 .popup-next {
    right: 20px;
 }
 
 .popup-nav:hover {
    background-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
 }
 
 /* ===============================================
   ПРЕЛОАДЕР
   =============================================== */
 .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
 }
 
 .preloader.fade-out {
    opacity: 0;
    visibility: hidden;
 }
 
 .preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
 }
 
 .preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.2s forwards;
 }
 
 .preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px 0;
    animation: expandLine 1.2s ease 0.7s forwards;
 }
 
 .preloader-icon {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 20px 0;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
 }
 
 .preloader-spinner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(200, 169, 126, 0.2);
    border-top-color: var(--gold);
    animation: spin 1.5s linear infinite;
 }
 
 .preloader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--cream);
    letter-spacing: 3px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
 }
 
 /* ===============================================
   АНИМАЦИИ
   =============================================== */
 @keyframes expandLine {
    0% { width: 0; }
    100% { width: 180px; }
 }
 
 @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
 }
 
 @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
 }
 
 @keyframes fadeInUp {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
 }
 
 @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
 }
 
 @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
 }
 
 @keyframes shine {
    0% {
        left: -200%;
    }
    30%, 100% {
        left: 200%;
    }
 }

 /* Стилове за lazy loading */
.gallery-item img, .team-card-front img, .event-image img, .about-image img {
   transition: opacity 0.3s ease;
}

img[data-src] {
   opacity: 0;
}

img.loaded {
   opacity: 1;
}

/* Стилове за валидация на формата */
.form-control.error {
   border-color: #ff4c4c !important;
   box-shadow: 0 0 10px rgba(255, 76, 76, 0.3) !important;
}

.error-message {
   color: #ff4c4c;
   font-size: 12px;
   margin-top: 5px;
   font-weight: 400;
   animation: fadeIn 0.3s ease;
}

/* Стил за активни състояния при докосване */
.touch-active {
   transform: scale(0.97);
   transition: transform 0.2s ease;
}

/* Подобрения за мобилни устройства */
@media (max-width: 768px) {
   /* По-големи touch области */
   .btn, 
   .menu-tab, 
   .nav-menu a, 
   .testimonial-nav-btn, 
   .popup-nav, 
   .popup-close, 
   .back-to-top,
   .social-links a,
   .faq-question {
       min-height: 44px;
       min-width: 44px;
       display: flex;
       align-items: center;
       justify-content: center;
   }
   
   /* Увеличаване на размера на input елементите за по-лесно използване */
   .form-control {
       height: 50px;
       font-size: 16px; /* Предотвратява автоматичен zoom в iOS */
       padding: 12px 15px;
   }
   
   textarea.form-control {
       min-height: 100px;
   }
   
   /* По-видими фокус състояния */
   .form-control:focus {
       box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.5);
   }
   
   /* Оптимизирани стилове за select елементи */
   select.form-control {
       background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
       background-repeat: no-repeat;
       background-position: right 10px center;
       padding-right: 30px;
   }
   
   /* Подобрен изглед на галерията на мобилни устройства */
   .gallery-grid {
       gap: 10px;
   }
   
   /* Подобрения на менюто за храна */
   .menu-list-item {
       padding: 20px 10px;
   }
   
   /* Подобрени стилове за бутони */
   .btn {
       white-space: nowrap;
   }
   
   /* Намаляване на padding за мобилни секции */
   .section {
       padding: 80px 0;
   }
   
   /* Оптимизирани отзиви */
   .testimonial-text {
       font-size: 15px;
   }
   
   /* Подобрен footer */
   .footer-contact {
       margin-bottom: 15px;
   }
}
 
 /* ===============================================
   МЕДИЯ ЗАПИТИ (RESPONSIVE)
   =============================================== */
 @media (max-width: 1200px) {
    .hero h1 {
        font-size: 70px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .gallery-item:nth-child(6) {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8) {
        grid-column: span 2;
        grid-row: span 1;
    }
 }
 
 @media (max-width: 992px) {
    .section {
        padding: 100px 0;
    }
    
    .section-heading h2 {
        font-size: 42px;
    }
    
    .hero h1 {
        font-size: 60px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 }
 
 @media (max-width: 768px) {
    /* Показване на мобилно меню */
    .menu-toggle {
        display: block;
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        padding-top: 70px;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100%;
        background: linear-gradient(145deg, var(--charcoal) 0%, var(--black) 100%);
        z-index: 1000;
        padding: 90px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        overflow-y: auto;
        border-left: 1px solid rgba(200, 169, 126, 0.15);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    
    .nav-menu a {
        padding: 15px 10px;
        display: block;
        font-size: 18px;
        border-bottom: 1px solid rgba(200, 169, 126, 0.1);
    }
    
    /* Затъмнение на фона при отворено меню */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Предотвратяване на скролване при отворено меню */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Основно лого - скрива се при активно меню */
    .main-logo {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .main-logo.hidden {
        opacity: 0;
        transform: translateX(-20px);
        visibility: hidden;
        position: absolute;
    }
    
    /* Заглавие на мобилното меню с лого */
    .menu-header {
        display: block;
        padding: 20px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(200, 169, 126, 0.2);
        text-align: center;
    }
    
    .menu-logo {
        display: inline-block;
        font-size: 28px;
        margin-bottom: 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        transition-delay: 0.1s;
    }
    
    .nav-menu.active .menu-logo {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Други корекции за мобилни */
    .section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .menu-navigation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .menu-tab {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .menu-list-item {
        flex-direction: column;
    }
    
    .dish-info {
        padding-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .dish-price {
        align-self: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 4;
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-group {
        margin: 0 auto;
    }
 }
 
 @media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .section-heading h2 {
        font-size: 32px;
    }
    
    .section-heading p {
        font-size: 15px;
    }
    
    .menu-navigation {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 25px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .popup-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
    }
 }

 /* Регулиране на стила на галерията за включване на нови елементи */
.gallery-grid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-auto-rows: 200px;
   gap: 15px;
}

/* Специфично позициониране на новите елементи */
.gallery-item:nth-child(9) {
   grid-column: span 3;
   grid-row: span 1;
}

.gallery-item:nth-child(10) {
   grid-column: span 3;
   grid-row: span 1;
}

/* Адаптиране за мобилни устройства */
@media (max-width: 768px) {
   .gallery-item:nth-child(9),
   .gallery-item:nth-child(10) {
       grid-column: span 2;
       grid-row: span 1;
   }
}

@media (max-width: 576px) {
   .gallery-item:nth-child(9),
   .gallery-item:nth-child(10) {
       grid-column: span 1;
       grid-row: span 1;
   }
}

/* Добавете този стил към вашия CSS файл */
.gallery-item:last-child {
   grid-column: span 2;  /* Или подходящия размер за вашата галерия */
   grid-row: span 1;
}

/* За мобилни устройства */
@media (max-width: 768px) {
   .gallery-item:last-child {
       grid-column: span 2;
   }
}

@media (max-width: 576px) {
   .gallery-item:last-child {
       grid-column: span 1;
   }
}

select#occasion {
   background-color: rgba(255, 255, 255, 0.1);
   color: var(--cream);
   border: 1px solid rgba(200, 169, 126, 0.3);
}

select#occasion option {
   background-color: var(--charcoal);
   color: var(--cream);
}

/* За подобрена четимост при фокус */
select#occasion:focus {
   border-color: var(--gold);
   box-shadow: 0 0 15px rgba(200, 169, 126, 0.3);
}

@media (max-width: 768px) {
   .form-row {
       flex-direction: column;
       gap: 15px;
   }
   
   .form-row .form-group {
       flex: 1 1 100%;
       margin-bottom: 15px;
   }
   
   .form-control {
       padding: 12px;
       font-size: 14px;
   }
   
   .form-label {
       font-size: 13px;
   }
   
   /* По-добро позициониране на декоративните ъгли на формата */
   .form-decorative-corner {
       width: 30px;
       height: 30px;
   }
}

/* Коригиране на големината на заглавията за различни екрани */
.section-heading h2 {
   font-size: 38px; /* Намаляме от 48px */
   color: var(--gold);
   margin-bottom: 20px;
   position: relative;
   display: inline-block;
}

/* По-малки размери за таблети */
@media (max-width: 992px) {
   .section-heading h2 {
       font-size: 34px;
   }
}

/* Още по-малки размери за мобилни устройства */
@media (max-width: 768px) {
   .section-heading h2 {
       font-size: 28px;
   }
   
   .section-heading p {
       font-size: 15px;
   }
}

/* За много малки мобилни екрани */
@media (max-width: 576px) {
   .section-heading h2 {
       font-size: 24px;
   }
   
   .section-heading p {
       font-size: 14px;
   }
   
   .section-heading {
       margin-bottom: 40px; /* Намаляме разстоянието отдолу за мобилни устройства */
   }
}

/* Коригиране на позицията на мобилното меню - фина настройка */
@media (max-width: 768px) {
   .nav-menu {
       padding-top: 10px !important; /* Малко padding отгоре */
       justify-content: flex-start !important;
       align-items: flex-start !important;
       top: 0 !important;
   }
   
   .menu-header {
       margin-top: 10px !important; /* Малко отстояние за логото */
       margin-bottom: 20px !important;
       padding-top: 10px !important;
       width: 100%;
       background-color: transparent !important; /* Премахваме фона */
       z-index: 1002;
       position: relative;
   }
   
   .menu-logo {
       margin: 0 !important;
       padding: 10px 0 !important;
       background-color: transparent !important; /* Премахваме фона от логото */
   }
   
   /* Леко коригиран горен padding за менюто */
   .nav-menu.active {
       top: 0 !important;
       height: 100% !important;
       padding-top: 10px !important; /* Малко padding в горната част */
       padding-bottom: 100px !important;
       overflow-y: auto !important;
   }
   
   .nav-menu li {
       margin-bottom: 10px !important;
       padding: 0 30px !important;
   }
   
   .nav-menu li:first-child {
       margin-top: 25px !important; /* Увеличаваме малко разстоянието след логото */
   }
   
   .menu-toggle {
       position: fixed !important;
       top: 20px !important;
       right: 15px !important;
       z-index: 1500 !important;
   }
   
   .nav-menu a {
       display: block !important;
       width: 100% !important;
       text-align: center !important;
       font-size: 18px !important;
       padding: 12px 0 !important;
   }
}

/* Коригиране на позицията на мобилното меню - премахване на скролиране */
@media (max-width: 768px) {
   .nav-menu {
       padding-top: 10px !important;
       justify-content: flex-start !important;
       align-items: center !important; /* Центрираме елементите хоризонтално */
       top: 0 !important;
       overflow: hidden !important; /* Премахваме скролирането */
       display: flex !important;
       flex-direction: column !important;
   }
   
   .menu-header {
       margin-top: 10px !important;
       margin-bottom: 20px !important;
       padding-top: 10px !important;
       width: 100%;
       background-color: transparent !important;
       z-index: 1002;
       position: relative;
   }
   
   .menu-logo {
       margin: 0 !important;
       padding: 10px 0 !important;
       background-color: transparent !important;
   }
   
   /* Фиксирана височина без скролиране */
   .nav-menu.active {
       top: 0 !important;
       height: 100% !important;
       padding-top: 10px !important;
       padding-bottom: 0 !important; /* Премахваме padding от дъното */
       overflow-y: hidden !important; /* Изрично забраняваме скролирането */
   }
   
   /* По-компактно разполагане на елементите */
   .nav-menu li {
       margin-bottom: 8px !important;
       padding: 0 30px !important;
       width: 100% !important;
       text-align: center !important;
   }
   
   .nav-menu li:first-child {
       margin-top: 20px !important;
   }
   
   .menu-toggle {
       position: fixed !important;
       top: 20px !important;
       right: 15px !important;
       z-index: 1500 !important;
   }
   
   .nav-menu a {
       display: block !important;
       width: 100% !important;
       text-align: center !important;
       font-size: 18px !important;
       padding: 10px 0 !important; /* Намаляваме padding-а */
   }
   
   /* Бутонът за резервация да бъде по-близо до другите елементи */
   .nav-menu li.mobile-only {
       margin-top: 15px !important;
   }
   
   /* Премахваме излишните анимации при скролиране */
   .nav-menu, .nav-menu * {
       transition: opacity 0.5s ease, transform 0.5s ease !important;
   }
}

/* Оптимизация само на галерията за мобилни устройства */
@media (max-width: 768px) {
   /* Подобряване на галерията */
   .gallery-grid {
       grid-template-columns: repeat(2, 1fr) !important;
       gap: 10px !important;
   }
   
   .gallery-item {
       grid-column: span 1 !important;
       grid-row: span 1 !important;
       height: 200px !important; /* Фиксирана височина за всички снимки */
       margin-bottom: 10px !important;
   }
   
   .gallery-item img {
       width: 100% !important;
       height: 100% !important;
       object-fit: cover !important; /* Гарантира, че изображенията запълват контейнера без изкривяване */
   }
   
   /* Подобряване на ефектите при докосване */
   .gallery-item:hover {
       transform: scale(1.02) !important; /* По-малък ефект на увеличение */
   }
   
   /* Оптимизация на попъп галерията */
   .popup-image {
       max-width: 90vw !important;
       max-height: 70vh !important;
       object-fit: contain !important;
   }
   
   /* По-добри навигационни бутони за галерията */
   .popup-nav {
       width: 40px !important;
       height: 40px !important;
       font-size: 16px !important;
   }
   
   .popup-close {
       width: 40px !important;
       height: 40px !important;
   }
}

/* Допълнителни корекции за много малки екрани */
@media (max-width: 480px) {
   .gallery-grid {
       grid-template-columns: 1fr !important; /* Само една колона за много малки екрани */
   }
   
   .gallery-item {
       height: 180px !important;
   }
   
   /* Намаляваме размера на попъп галерията */
   .popup-content {
       max-width: 95% !important;
   }
   
   /* Подобряваме позиционирането на навигационните бутони */
   .popup-prev {
       left: 10px !important;
   }
   
   .popup-next {
       right: 10px !important;
   }
}

/* Оптимизация на падащото меню в секцията за резервации */
select#occasion {
   appearance: none !important; /* Премахва стандартните стрелки на браузъра */
   -webkit-appearance: none !important;
   -moz-appearance: none !important;
   background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(200, 169, 126)" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
   background-repeat: no-repeat !important;
   background-position: right 10px center !important;
   padding-right: 30px !important; /* Пространство за стрелката */
   cursor: pointer !important;
   background-color: rgba(255, 255, 255, 0.1) !important;
   color: var(--cream) !important;
   border: 1px solid rgba(200, 169, 126, 0.3) !important;
}

/* Промяна на стила при фокус */
select#occasion:focus {
   border-color: var(--gold) !important;
   box-shadow: 0 0 15px rgba(200, 169, 126, 0.3) !important;
   outline: none !important;
}

/* Стил за опциите в падащото меню */
select#occasion option {
   background-color: #2c2c2c !important;
   color: var(--cream) !important;
   padding: 10px !important;
}

/* Добавете този CSS в styles.css */

/* Фикс за менюто при превключване между режимите на изглед */
@media (min-width: 769px) {
    .nav-menu {
      right: auto !important;
      transform: none !important;
      position: relative !important;
      background: none !important;
      box-shadow: none !important;
      height: auto !important;
      width: auto !important;
      display: flex !important;
      flex-direction: row !important;
      opacity: 1 !important;
      visibility: visible !important;
      overflow: visible !important;
    }
    
    .nav-menu li {
      opacity: 1 !important;
      transform: none !important;
    }
    
    .menu-overlay {
      display: none !important;
    }
    
    body.menu-open {
      overflow: auto !important;
    }
  }
  
  /* Да сме сигурни, че менюто се държи правилно на мобилни устройства */
  @media (max-width: 768px) {
    .nav-menu:not(.active) {
      right: -100% !important;
      pointer-events: none;
    }
    
    .nav-menu.active {
      right: 0 !important;
      pointer-events: auto;
    }
  }

  /* Добавете този CSS към вашия styles.css файл */

@media (max-width: 768px) {
    /* Подобрено подравняване на хедъра за мобилни устройства */
    .nav-container {
      display: flex;
      align-items: center; /* Вертикално центриране */
      height: 60px; /* Фиксирана височина за хедъра */
      padding: 0 15px; /* Равен padding отляво и отдясно */
    }
  
    /* Подравняване на логото */
    .main-logo {
      font-size: 22px; /* Малко по-малък размер за мобилни */
      line-height: 1; /* Премахва излишното пространство около текста */
      margin: 0; /* Премахва margin */
      padding: 0; /* Премахва padding */
      position: relative; /* Позволява фини настройки */
      top: 0; /* Изравняване с горната част на контейнера */
    }
    
    /* Подравняване на менюто */
    .menu-toggle {
      margin: 0; /* Премахва margin */
      padding: 0; /* Премахва padding */
      position: relative; /* Позволява фини настройки */
      top: 0; /* Изравняване с горната част на контейнера */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 30px;
      width: 30px;
    }
    
    /* По-добро подравняване за линиите на бургер менюто */
    .hamburger-line {
      position: absolute;
      left: 0;
    }
    
    /* Фиксираме header височината и подравняването */
    header {
      height: 60px; /* Същата височина като nav-container */
      display: flex;
      align-items: center;
    }
  
    /* Когато менюто е активно */
    .nav-menu.active {
      top: 60px !important; /* Съответства на височината на хедъра */
      height: calc(100vh - 60px) !important;
    }
  }

/* Оптимизации за мобилни устройства */
@media (max-width: 768px) {
   select#occasion {
       font-size: 16px !important; /* Предотвратява автоматичното увеличаване в iOS */
       height: 50px !important; /* По-висок за по-лесно докосване */
       width: 100% !important;
   }
   
   /* Подобрения за iOS устройства */
   .form-group select {
       opacity: 1 !important; /* Гарантира видимост на iPhone/iPad */
       -webkit-text-fill-color: var(--cream) !important; /* Подобрява четимостта */
   }
   
   /* Ограничаване на максималната височина на списъка с опции в Safari */
   @supports (-webkit-touch-callout: none) {
       select#occasion {
           max-height: 200px !important;
       }
   }
}

/* Добавете това към вашия styles.css файл */

@media (max-width: 768px) {
    /* Повдигаме бутона за меню до нивото на логото */
    .menu-toggle {
      position: relative;
      top: -5px; /* Повдигаме го малко нагоре - можете да регулирате стойността според нуждите */
    }
    
    /* Осигуряваме че линиите на бургер менюто са правилно подравнени */
    .hamburger-line:nth-child(1) {
      top: 0;
    }
    
    .hamburger-line:nth-child(2) {
      top: 8px;
    }
    
    .hamburger-line:nth-child(3) {
      top: 16px;
    }
    
    /* Центрираме логото и бутона за меню в техните контейнери */
    .nav-container {
      align-items: center;
    }
  }