@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --accent: #4e9398;
  --light-gray: #f8f8f8;
  --border: #e5e5e5;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.65;
}

.container, .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================== HEADER ====================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img { 
  height: 55px; 
  width: auto; 
  display: block; 
}

/* Ссылки меню по умолчанию СКРЫТЫ */
.nav {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s;
}

/* Когда меню открыто */
.nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 0;
}
/* ====================== HERO ====================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           
  z-index: -2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.65)
  );                          
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #ffffff;             
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.45rem;
  color: #ffffff;              
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

.btn-primary {
  background: rgba(78,147,152,0.95);
  color: #fff;
  padding: 16px 52px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #4e9398;
  transform: translateY(-3px);
}

/* Остальные стили (услуги, мастер, футер) */
.section { padding: 70px 0; }

.section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--accent);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-text-card {
  background: var(--light-gray);
  padding: 28px 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.service-text-card h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

/* Мастер */
.master-section {
  background: #f8f8f8;
  padding: 70px 0;
}

.master-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.master-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.master-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.master-info ul {
  list-style: none;
  font-size: 1.1rem;
  line-height: 1.8;
}

.master-info li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.master-info li:before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* ====================== FOOTER ====================== */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}

.footer-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--accent);
}

/* Контактный блок (три колонки) */
.footer-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-col h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
  margin-top: 0;
}

.contact-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0;
}

.contact-col a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-col a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-person {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8rem;
  color: #777;
  font-weight: 400;
}

/* Компактные QR-коды под контактами */
.social-qr--compact {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}

.qr-item--small {
  text-align: center;
}

.qr-item--small img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.qr-item--small img:hover {
  transform: scale(1.02);
}

.qr-item--small span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  opacity: 0.7;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* Социальные сети в футере */
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0 20px;
  flex-wrap: wrap;
}

.social-link-item {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link-item i {
  font-size: 1.4rem;
  width: 1.4rem;
}

.social-link-item:hover {
  color: var(--accent);
}

/* Адаптив для мобильных */
@media (max-width: 700px) {
  .social-links {
    gap: 20px;
  }
  .social-link-item {
    font-size: 1rem;
  }
}

/* ====================== АРЕНДА – СЕТКА 2х2 ====================== */
.page-content {
  padding-top: 120px;   /* отступ под фиксированный хедер */
  padding-bottom: 60px;
}

.page-header {
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-intro {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
}

/* Сетка для аренды: два столбца */
.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2.5rem;
  margin: 2.5rem 0 3rem;
}

/* Изображения занимают всю ширину колонки, пропорциональны */
.rental-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.rental-image img:hover {
  transform: scale(1.01);
}

/* Блок описания */
.rental-description h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.rental-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2c2c2c;
}

/* Дополнительная информация (условия) */
.rental-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  font-size: 1.05rem;
}

/* ====================== КОКТЕЙЛЬНОЕ МЕНЮ ====================== */
.cocktail-menu-section {
  background: #fff;
}

.menu-title {
  margin-bottom: 3.5rem;
}

.menu-title h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
  border-bottom: 1.5px solid #000;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.menu-title .sub {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 0.75rem;
  color: #333;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.cocktail-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 1.2rem;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-image .fallback-text {
  display: none;
}
.card-image.img-error {
  background: #e0e0e0;
}
.card-image.img-error img {
  display: none;
}
.card-image.img-error .fallback-text {
  display: block;
  color: #5a5a5a;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.cocktail-name {
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #000;
  text-transform: uppercase;
}

.ingredients-text {
  font-weight: 400;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.5;
  text-transform: lowercase;
}

.ingredients-text::first-letter {
  text-transform: uppercase;
}

.page-divider {
  margin: 2.8rem 0 1.5rem;
  border-top: 1px solid #aaa;
  opacity: 0.3;
}

.page-marker {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.5rem;
  font-weight: 300;
}

.download-link {
  color: #555;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.download-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ====================== АДАПТИВНОСТЬ ====================== */
@media (max-width: 900px) {
  .cocktail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .master-grid { grid-template-columns: 1fr; gap: 40px; }
  .section, .master-section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .rental-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .rental-description h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 700px) {
  .footer-contacts {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .contact-person {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
  
  .social-qr--compact {
    gap: 20px;
  }
  
  .qr-item--small img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 600px) {
  .cocktail-grid { grid-template-columns: 1fr; }
  .container, .header-inner, .hero-content { padding: 0 20px; }
}
