/* Base Styles */
:root {
  /* Color Variables */
  --color-primary: #4b6c50;
  --color-primary-light: #688d6e;
  --color-primary-dark: #3a533f;
  --color-secondary: #d3a872;
  --color-secondary-light: #e2c096;
  --color-secondary-dark: #b48a52;
  --color-text: #333;
  --color-text-light: #666;
  --color-text-dark: #1a1a1a;
  --color-background: #f8f7f3;
  --color-white: #fff;
  --color-black: #000;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-error: #f44336;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-dark);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: var(--spacing-md);
}

small {
  font-size: 1.4rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
.section {
  padding: var(--spacing-xxxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.section-header p {
  font-size: 1.8rem;
  color: var(--color-text-light);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 60rem;
  background-image: url('/lt/public/672297875.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  padding: var(--spacing-xl);
}

.hero-title {
  font-size: 6rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2.4rem;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Utilities */
.rounded-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.icon {
  width: 24px;
  height: 24px;
}

/* Animation Utilities */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}



/* Кнопка открытия */
.lang-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
        
}

.lang-toggle-btn:hover {
    background: #2ecc71;
}

/* Для мобильных экранов */
@media (max-width: 768px) {
    .lang-toggle-btn {
        top: 55px;
        right: 1px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #27ae60;
    }
}

  /* Выезжающий блок */
  .lang-drawer {
    position: fixed;
    top: 0;
    right: -600px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    z-index: 9999;
  }

  .lang-drawer.open {
    right: 0;
  }

  /* Заголовок и кнопка закрытия */
  .lang-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
  }

  .lang-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }

  .lang-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .lang-list li {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 16px;
  }

  .lang-list li:hover {
    background: rgba(39, 174, 96, 0.1);
  }

  .flag {
    margin-right: 10px;
    font-size: 22px;
  }

  /* Адаптивность */
  @media (max-width: 400px) {
    .lang-drawer {
      width: 100%;
    }
  }
  
  
  
  
  
  .fc-day-unavailable {
  background-color: rgba(255, 0, 0, 0.2);
}

    .tabs {
   
      margin: auto;
      background:rgba(76, 175, 80, 0.1);
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .tab-buttons {
      display: flex;
      flex-wrap: wrap;
      background: #f7f7f7;
      border-bottom: 1px solid #ddd;
    }

    .tab-buttons button {
      flex: 1;
      padding: 15px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
    }

    .tab-buttons button.active {
      background: #ffffff;
      border-bottom: 3px solid #007BFF;
      color: #007BFF;
      font-weight: bold;
    }

    .tab-buttons button:hover {
      background: #f0f0f0;
    }

    .tab-content {
      display: none;
      padding: 20px;
      font-size: 15px;
    }

    .tab-content.active {
      display: block;
          background: #f5f5f547;
    }

    @media (max-width: 600px) {
      .tab-buttons button {
        font-size: 14px;
        padding: 10px;
      }

      .tab-content {
        padding: 15px;
      }
    }
    .block_33{
        display: flex;gap: 200px;border-radius: 20px;background: rgba(255, 255, 255, 0.1);justify-content: center;
    }
    /* Для мобильных устройств (например, ширина экрана до 768px) */
@media (max-width: 768px) {
    .block_33 {
        flex-direction: column; /* вертикально */
        align-items: center; /* чтобы блоки были по центру */
    }
}









.desc-block {
  display: none;
  margin-top: 15px;
  background: rgba(255,255,255,0.6);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 15px;
  color: #2c3e50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.desc-toggle-btn {
  margin-top: 15px;
  background: #3498db;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}
.desc-toggle-btn:hover {
  background: #2980b9;
}
