/* ===================== GENERAL ===================== */
body {
  background:#fdf6f7;
  .hero h1 {
  font-family: 'Great Vibes', cursive !important;
}
  line-height:1.5;
  color:#2c3e50;
  margin:0;
  font-size:15px;
}

* {
  box-sizing:border-box;
}

h1,h2,h3,h4,h5 {
  margin-bottom:0.8rem;
}

p {
  margin-bottom:1rem;
  font-size:15px;
}

a {
  color:#c47a8b;
  text-decoration:none;
}

a:hover {
  color:#a15568;
}

/* ===================== NAVIGATION ===================== */
nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 50px;
  background: linear-gradient(135deg,#fff0f3 0%,#ffe5eb 100%);
  border-bottom:3px solid #c47a8b;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter: blur(10px);
}

.nav-container {
  display:flex;
  align-items:center;
  gap:25px;
}

nav h2 {
  font-weight:700;
  font-size:36px;
  color:#2c3e50;
}

nav ul {
  display:flex;
  gap:25px;
  list-style:none;
}

nav a {
  font-weight:600;
  font-size:15px;
  padding:8px 14px;
  border-radius:4px;
  transition: all 0.3s ease;
}

nav a.book {
  font-size:16px;
  padding:10px 18px;
  background:#c47a8b;
  color:#fff;
}

nav a:hover {
  color:#c47a8b;
  background: rgba(196,122,139,0.1);
}

/* Hamburger */
.hamburger {
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:3px;
}

.hamburger span {
  width:22px;
  height:2.5px;
  background:#2c3e50;
  border-radius:2px;
  transition:0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px,5px);
}
.hamburger.active span:nth-child(2) {
  opacity:0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-4px,-5px);
}

/* ===================== HERO ===================== */
.hero {
  min-height:calc(100vh - 100px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:#fff0f3;
  padding:60px 20px 40px;
}

.hero h1 {
  font-family: 'Brush Script MT', cursive;
  font-size:84px;
  font-weight:700;
  color:#2c3e50;
  margin-bottom:15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
  font-size:20px;
  color:#6c4c5b;
  max-width:600px;
  margin-bottom:35px;
  line-height:1.6;
}

.hero-btn {
  background:#c47a8b;
  color:white;
  padding:16px 32px;
  border-radius:8px;
  font-weight:700;
  font-size:18px;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 3px 12px rgba(196,122,139,0.35);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background:#a15568;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(196,122,139,0.4);
}

/* ===================== SERVICES ===================== */
.services-preview {
  padding:80px 20px;
  text-align:center;
  background: radial-gradient(circle at top, rgba(255,224,235,0.95), transparent 45%), #fff0f3;
}

.services-preview h2 {
  font-size:32px;
  font-weight:800;
  color:#2c3e50;
  margin-bottom:18px;
  letter-spacing:0.4px;
}

.services-preview p {
  font-size:16px;
  color:#6c4c5b;
  max-width:550px;
  margin:0 auto 40px;
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  margin-top:20px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,237,242,0.94) 100%);
  padding:40px 32px;
  border-radius:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  border:1px solid rgba(196,122,139,0.22);
  transition: all 0.35s ease;
  text-align:center;
  position:relative;
  overflow:hidden;
}


.card:hover {
  transform:translateY(-10px);
  box-shadow:0 24px 70px rgba(0,0,0,0.12);
}

.card h3 {
  font-size:22px;
  font-weight:800;
  color:#2c3e50;
  margin-bottom:14px;
  position:relative;
  z-index:1;
}

.card p {
  font-size:15px;
  color:#5d3d4f;
  line-height:1.7;
  position:relative;
  z-index:1;
}

.card .price {
  font-size:18px;
  font-weight:700;
  color:#b14f72;
  margin-top:16px;
  position:relative;
  z-index:1;
}

/* ===================== ABOUT ===================== */
.about {
  padding:80px 20px;
  background: linear-gradient(135deg, #fff7f8 0%, #ffe9ef 100%);
  text-align:center;
  border:1px solid rgba(196,122,139,0.28);
  border-radius:28px;
  max-width:960px;
  margin:0 auto 40px;
  box-shadow:0 16px 40px rgba(196,122,139,0.12);
}

.about h2 {
  font-size:32px;
  font-weight:800;
  color:#2c3e50;
  margin-bottom:20px;
  letter-spacing:0.5px;
}

.about p {
  font-size:17px;
  color:#5f4251;
  max-width:720px;
  margin:0 auto;
  line-height:1.8;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding:70px 20px;
  background:#fff0f3;
  text-align:center;
}

.testimonials h2 {
  font-size:28px;
  font-weight:700;
  color:#2c3e50;
  margin-bottom:50px;
}

.testimonial-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  max-width:1100px;
  margin:0 auto;
}

.testimonial {
  background:#fff4f6;
  padding:25px;
  border-radius:16px;
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
  border:1px solid #f5c6d0;
  text-align:left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.testimonial p {
  font-size:15px;
  color:#6c4c5b;
  font-style:italic;
  margin-bottom:20px;
}

.client-name {
  font-size:13px;
  font-weight:700;
  color:#2c3e50;
  text-align:right;
}

/* ===================== GALLERY ===================== */
.gallery {
  padding:50px 20px;
  background:#fff4f6;
}

.gallery h2 {
  text-align:center;
  margin-bottom:30px;
  font-size:24px;
  color:#2c3e50;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.gallery-item {
  width:100%;
  aspect-ratio: 4 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  background: rgba(255,230,235,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background: transparent;
  padding:0;
}

.gallery-item:hover {
  transform:scale(1.05);
  box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

/* ===================== AVAILABILITY ===================== */
.availability {
  padding:70px 20px;
  background:#fff0f3;
  text-align:center;
}

.availability h2 {
  font-size:32px;
  font-weight:800;
  color:#2c3e50;
  margin-bottom:12px;
}

.availability p {
  max-width:720px;
  margin:0 auto 35px;
  font-size:17px;
  color:#5f4251;
  line-height:1.7;
}

.calendar-container {
  max-width:760px;
  margin:0 auto;
  background:#fff4f6;
  border-radius:20px;
  padding:30px;
  box-shadow:0 10px 35px rgba(0,0,0,0.1);
  border:1px solid rgba(196,122,139,0.22);
  font-size:15px;
}

.calendar-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

#currentMonth {
  font-size:18px;
  font-weight:600;
  color:#c47a8b;
  text-align:center;
}

.calendar-nav {
  background:#c47a8b;
  color:white;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  font-size:18px;
  cursor:pointer;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  background:#a15568;
  transform:scale(1.1);
}

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

.calendar-day-header {
  font-weight:600;
  color:#2c3e50;
  padding:10px 0;
  background:#ffe5eb;
  border-radius:6px;
  font-size:13px;
  text-align:center;
}

.calendar-day {
  min-height:60px;
  padding:6px;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:500;
  position:relative;
  background:#fff0f3;
  color:#3e1e2f;
  border:1px solid #f1c6d0;
  text-align:center;
}

.calendar-day.available {
  background:#fde2e4;
  color:#b34747;
}

.calendar-day.unavailable {
  background:#f8d7da;
  color:#721c24;
  cursor:not-allowed;
}

.calendar-day.today {
  border:2px solid #d97771;
  font-weight:700;
}

.calendar-day.other-month {
  color:#adb5bd;
  background:#fff4f6;
  border:1px solid #ffe5eb;
}

.calendar-day.selected {
  background: #c47a8b !important;
  color: white !important;
  border: 2px solid #a15568;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196,122,139,0.4);
}

.calendar-day.available:hover,
.calendar-day.today:hover {
  background:#c47a8b;
  color:white;
  transform:scale(1.05);
}

.calendar-day.unavailable:hover {
  background:#f8d7da;
  transform:none;
}

/* ===================== TIME SLOTS ===================== */
.time-slots {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,237,242,0.94) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(196,122,139,0.22);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.time-slots h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.time-slot {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #f1c6d0;
  background: #fff0f3;
  color: #3e1e2f;
}

.time-slot.available:hover {
  background: #c47a8b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,122,139,0.3);
}

.time-slot.booked {
  background: #f8d7da;
  color: #721c24;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,237,242,0.94) 100%);
  border-radius: 16px 16px 0 0;
}

.modal-header h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.time-grid {
  padding: 20px 25px;
}

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

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===================== CONFIRMATION MODAL ===================== */
.confirm-modal {
  max-width: 450px;
}

.confirm-header {
  text-align: center;
  padding: 25px 25px 15px;
  border-bottom: 2px solid #f0e6ea;
}

.confirm-header h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 22px;
  font-weight: 700;
}

.confirm-body {
  padding: 25px;
}

.appointment-details {
  background: #fdf6f7;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #f0e6ea;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: #5f4251;
  font-size: 15px;
}

.detail-value {
  font-weight: 700;
  color: #c47a8b;
  font-size: 15px;
}

.confirm-message {
  color: #6c4c5b;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.confirm-actions {
  display: flex;
  gap: 15px;
  padding: 0 25px 25px;
  justify-content: center;
}

.btn-cancel, .btn-confirm {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 160px;
}

.btn-cancel {
  background: #f8f9fa;
  color: #6c757d;
  border: 2px solid #e9ecef;
}

.btn-cancel:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

.btn-confirm {
  background: #c47a8b;
  color: white;
  border: 2px solid #c47a8b;
}

.btn-confirm:hover {
  background: #a15568;
  border-color: #a15568;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 122, 139, 0.3);
}

/* ===================== CONTACT & BOOKING ===================== */
.contact {
  padding:70px 20px;
  background:#fff4f6;
}

.contact > p {
  max-width:760px;
  margin:0 auto 35px;
  font-size:18px;
  color:#5f4251;
  line-height:1.9;
  text-align:center;
  letter-spacing:0.2px;
  text-shadow:0 1px 1px rgba(0,0,0,0.03);
}

.contact-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  max-width:1100px;
  margin:0 auto;
  padding:30px 20px;
}

.booking-form, .contact-info {
  padding:25px;
  border-radius:16px;
  background:#fff4f6;
  box-shadow:0 6px 25px rgba(0,0,0,0.1);
  border:1px solid #f5c6d0;
}

.contact h2, .booking-form h3 {
  font-size:20px;
  color:#2c3e50;
  margin-bottom:20px;
  border-bottom:2px solid #c47a8b;
  padding-bottom:12px;
  text-align:center;
}

input, select, textarea, button {
  font-size:15px;
  padding:12px 16px;
  border-radius:10px;
}

button, .hero-btn {
  font-size:15px;
  padding:14px 28px;
}

/* ===================== BACK TO TOP BUTTON ===================== */
#backToTop {
  position:fixed;
  bottom:25px;
  right:25px;
  padding:12px 18px;
  background:#c47a8b;
  color:white;
  font-weight:600;
  font-size:14px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  box-shadow:0 6px 12px rgba(196,122,139,0.3);
  transition:all 0.3s ease;
  z-index:200;
}

#backToTop:hover {
  background:#a15568;
  transform:translateY(-2px);
  box-shadow:0 10px 18px rgba(196,122,139,0.4);
}

/* ===================== FOOTER ===================== */
footer {
  text-align:center;
  padding:35px 20px;
  background:#2c3e50;
  color:#ecf0f1;
  border-top:3px solid #c47a8b;
  font-weight:400;
}

footer p {
  font-size:15px;
  margin:5px 0;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:992px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .contact-container {
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  nav{
    padding:15px 20px;
  }
  .nav-container{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff0f3;
    flex-direction:column;
    padding:15px;
    border-radius:0 0 8px 8px;
  }
  .nav-container.active{
    display:flex;
  }
  nav ul{
    flex-direction:column;
    gap:10px;
    align-items:center;
    width:100%;
  }
  nav a{
    font-size:14px;
    padding:10px 0;
    width:100%;
    text-align:center;
  }
  .service-grid,.gallery-grid,.testimonial-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  /* ===================== GLOBAL FORM STYLING ===================== */

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

.booking-form,
.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Headings spacing */
.booking-form h3,
.contact-info h3 {
  margin-bottom: 15px;
}

/* ===================== REVIEW FORM LAYOUT ===================== */

#reviews form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Two-column rows */
.form-row {
  display: flex;
  gap: 20px;
}

/* Field groups */
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.full-width {
  width: 100%;
}

/* Labels */
.form-group label {
  font-size: 14px;
  font-weight: 600;
}

/* Input wrapper */
.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

/* Icons */
.input-icon span {
  position: absolute;
  left: 12px;
  font-size: 16px;
  opacity: 0.7;
}

/* Inputs */
.input-icon input,
.input-icon select,
.input-icon textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

/* Textarea */
.input-icon textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus effect */
.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* ===================== BUTTONS ===================== */

.hero-btn {
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  background: #111;
  color: #fff;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #333;
}

/* ===================== TESTIMONIAL CARDS ===================== */

.testimonial-grid {
  display: grid;
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.client-name {
  font-size: 14px;
  opacity: 0.7;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .booking-form,
  .contact-info {
    padding: 20px;
  }
}
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* GRID LAYOUT */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 10px;
  max-width: 1100px;
  margin: auto;
}

/* IMAGE CARD */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* OVERLAY EFFECT */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.5)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* OPTIONAL CAPTION (if you want later) */
.gallery-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-container a {
  text-decoration: none;
  color: black;
}

.book {
  background: pink;
  padding: 10px 15px;
  border-radius: 20px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f7f7f7;
}

.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: pink;
  border-radius: 20px;
  text-decoration: none;
  color: black;
}

/* SERVICES */
.services-preview {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.testimonial {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* GALLERY */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 12px;
}

.gallery-item img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  gap: 40px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.booking-form button {
  background: pink;
  padding: 10px;
  border: none;
  border-radius: 20px;
}

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: pink;
  border: none;
  padding: 10px;
  border-radius: 50%;
}

/* =======================
   RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* IMPORTANT FIX: prevents navbar from covering section titles */
section {
  scroll-margin-top: 120px;
}

/* =======================
   NAVBAR
======================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 120px;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-container a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.book {
  background: pink;
  padding: 10px 15px;
  border-radius: 20px;
}

/* =======================
   HAMBURGER
======================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
}

/* =======================
   HERO
======================= */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f7f7f7;
}

.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: pink;
  border-radius: 20px;
  text-decoration: none;
  color: black;
}

/* =======================
   SERVICES
======================= */
.services-preview {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* =======================
   ABOUT
======================= */
.about {
  padding: 60px 20px;
  text-align: center;
}

/* =======================
   TESTIMONIALS
======================= */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* =======================
   GALLERY
======================= */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 12px;
}

/* FIX: no cropping */
.gallery-item img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
}

/* =======================
   CONTACT
======================= */
.contact {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  gap: 40px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.booking-form button {
  background: pink;
  padding: 10px;
  border: none;
  border-radius: 20px;
}

/* =======================
   BACK TO TOP
======================= */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: pink;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* =======================
   RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* FIX: navbar not covering sections (ALL DEVICES) */
:root {
  --nav-height: 120px;
}

section {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* =======================
   NAVBAR (DESKTOP BASE)
======================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-container a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.book {
  background: pink;
  padding: 10px 15px;
  border-radius: 20px;
}

/* =======================
   HAMBURGER
======================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
}

/* =======================
   HERO
======================= */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f7f7f7;
}

.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: pink;
  border-radius: 20px;
  text-decoration: none;
  color: black;
}

/* =======================
   SERVICES
======================= */
.services-preview {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* =======================
   ABOUT
======================= */
.about {
  padding: 60px 20px;
  text-align: center;
}

/* =======================
   TESTIMONIALS
======================= */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.testimonial {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* =======================
   GALLERY
======================= */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 12px;
}

.gallery-item img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
}

/* =======================
   CONTACT
======================= */
.contact {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  gap: 40px;
}

/* form */
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.booking-form button {
  background: pink;
  padding: 10px;
  border: none;
  border-radius: 20px;
}

/* =======================
   BACK TO TOP
======================= */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: pink;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* =======================
   RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* FIX: section titles not hidden under navbar */
:root {
  --nav-height: 120px;
}

section {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* =======================
   NAVBAR (DESKTOP)
======================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-container a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.book {
  background: pink;
  padding: 10px 15px;
  border-radius: 20px;
}

/* =======================
   HAMBURGER
======================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
}

/* =======================
   HERO
======================= */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f7f7f7;
}

.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: pink;
  border-radius: 20px;
  text-decoration: none;
  color: black;
}

/* =======================
   SERVICES
======================= */
.services-preview {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* =======================
   ABOUT
======================= */
.about {
  padding: 60px 20px;
  text-align: center;
}

/* =======================
   TESTIMONIALS
======================= */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

/* =======================
   GALLERY
======================= */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 12px;
}

.gallery-item img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
}

/* =======================
   CONTACT
======================= */
.contact {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.booking-form button {
  background: pink;
  padding: 10px;
  border: none;
  border-radius: 20px;
}

/* =======================
   BACK TO TOP
======================= */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: pink;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* =======================
   MOBILE (CLEAN DROPDOWN MENU)
======================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  /* DROPDOWN MENU (VERTICAL FIX) */
  .nav-container {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: white;

    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    z-index: 9999;
  }

  .nav-container.active {
    display: flex;
  }

  /* STACK NAV ITEMS VERTICALLY */
  .nav-container ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-container li {
    text-align: center;
  }

  .nav-container a {
    display: block;
    padding: 10px;
  }

  /* KEEP SITE LOOK SAME */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .testimonial-grid {
    justify-content: center;
  }

  .card,
  .testimonial {
    width: 80%;
  }

  .contact-container {
    flex-direction: column;
  }
}
}