@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url(https://fonts.googleapis.com/css?family=Inter);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Condensed&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,700,300&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:700,400&subset=latin,cyrillic);

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}
.small_txt {
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    color: #14b8a6;
    
     font-family: Arial, sans-serif;
}
/* ================== NAVBAR & HERO ================== */
.navbar {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
}

.logo {
  width: 180px;
  height: 40px;
  background: url('https://zapisvai.com/logo_zapisvai5.png') no-repeat center/contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text { font-weight: 700; color: #0f766e; }
.logo i { color: #14b8a6; font-size: 1.75rem; }



.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 350px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.location { font-size: 1.1rem; opacity: 0.95; }
.rating {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.15rem;
}
.rating i { color: #fbbf24; }

@media (max-width: 768px) {
  .hero-overlay { padding: 30px 20px; }
  .hero-overlay h1 { font-size: 2.1rem; }
}

/* ================== MAIN GRID ================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .main-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.left-column, .right-column { width: 100%; }

/* ================== УСЛУГИ ================== */
.section h2 {
  font-size: 1.50rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #1f2937;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  background: white;
  padding: 1.0rem 1.2rem;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}

.service-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: #5eead4;
  transform: translateY(-2px);
}
.service-item.selected {
  border-color: #14b8a6;        /* teal бордер */
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
  
}
.service-info h3 { font-size: 1.10em; font-weight: 600; margin-bottom: 4px; }
.duration { color: #6b7280; font-size: 0.85rem; }
.price { font-size: 1.05em; font-weight: 700; color: #0d7367; }

/* ================== КАЛЕНДАР ================== */
.section-title {
  font-size: 1.40rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.booking-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #14b8a6;
  cursor: pointer;
  padding: 4px 12px;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.92rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  width: 100%;
  max-width: 42px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.calendar-day.past { color: #9ca3af; background: #f3f4f6; cursor: not-allowed; }
.calendar-day.today { background: #ccfbf1; font-weight: 700; border: 2px solid #14b8a6; }
.calendar-day.selectable:hover { background: #e6f4f3; transform: scale(1.08); }
.calendar-day.selected { background: #14b8a6 !important; color: white !important; font-weight: 700; }

.selected-date {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.25rem 0 1rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 12px;
  min-height: 50px;
}

.time-slot {
  border: 2px solid #99f6e4;
  background: white;
  padding: 16px 8px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
}

.time-slot:hover { background: #f0fdfa; transform: scale(1.05); }
.time-slot.selected { background: #fb923c; color: white; border-color: #fff; }

/* ================== РЕЗЕРВАЦИЯ ================== */
.reservation-box {
  display: none;
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: #f0fdfa;
  border-radius: 24px;
}

.reservation-box.show { display: block; }

.reservation-box h3 { margin-bottom: 1.2rem; color: #0f766e; }

.summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.8rem;
}

.summary > div { display: flex; justify-content: space-between; }
.summary > div span:last-child { font-weight: 600; }

.form-group input {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 16px;
}

.form-group input:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.error-message {
  color: #ef4444;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: none;
}

.book-button {
  width: 100%;
  padding: 16px;
  background: #14b8a6;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
}

.book-button:hover { background: #0f766e; }
.book-button:disabled { background: #9ca3af; cursor: not-allowed; }

/* ================== ГАЛЕРИЯ – МНОГО ПО-СТЕГНАТА ================== */
/* ================== ГАЛЕРИЯ, МНЕНИЯ И КАРТА – ПОДРАВНЕНИ С ГЛАВНОТО СЪДЪРЖАНИЕ ================== */

.gallery-section,
.reviews-section,
.map-section {
  max-width: 1280px;           /* Същата ширина като .container */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;          /* Същото отстъп като .container */
}

.gallery-section h2,
.reviews-section h2,
.map-section h2 {
  text-align: center;
  font-size: 1.45rem;
  margin: 4rem 0 2rem;
  color: #1f2937;
}

/* ================== ГАЛЕРИЯ ================== */
.gallery-grid {
  display: grid;
  gap: 10px;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .gallery-grid img {
    height: 170px;
    border-radius: 18px;
  }
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.06);
}

/* ================== ОТЗИВИ ================== */
.reviews-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .review-card {
    padding: 1.4rem;
  }
}

.review-card {
  background: white;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.stars {
  color: #fbbf24;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.review-card p {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 1.2rem;
  line-height: 1.45;
}

.client {
  font-weight: 600;
  color: #1f2937;
}

/* ================== КАРТА ================== */
.map-container {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.navigate-button {
  padding: 14px 32px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.navigate-button:hover {
  background: #ea580c;
}
.footer { margin-top: 40px; background: #0f172a; color: white; text-align: center; padding: 20px; border-radius: 1px 1px 0 0; }
.footer-txt { opacity: 0.7; font-size: 13px; }
.footerlogo {
  width: 150px;
  height: 23px;
  background: url('https://zapisvai.com/footer_logo.png') no-repeat center/contain;
 
}
/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .container { padding: 2rem 1rem; }
  .small_txt {
    font-size: 12px;
    line-height: 40px;
    text-align: justify-content;
   
     font-family: Verdana, sans-serif;
}
  .gallery-grid img { height: 210px; }
  .review-card { padding: 1.6rem; }
}