/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f6f1dc; /* pastel yellow */
  color: #2f2f2f;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #c9bfa3;
  background-color: #f6f1dc;
  
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  display: flex;
  justify-content:flex-start;
  align-items: center;
}

.navbar .logo img {
  max-height: 55px;   /* ✅ controls logo size */
  width: auto;        /* keeps proportions */
  object-fit: contain;
}


/* ===== NEW NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-family: 'Georgia', sans-serif;
  font-size: 16px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d4a017;
}

.nav-links a.active {
  color: #d4a017;
  font-weight: 600;
}

/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  margin: 40px 0;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: #6b6b6b;
}

/* ===== SERVICES GRID ===== */
#main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 20px;
}

/* ===== SERVICE CARD ===== */
.flex-item {
  background-color: #fdfaf0;
  padding: 20px;
  width: 250px;
  text-align: center;
  border-radius: 10px;
}

.flex-item img {
  width: 180px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}



/* ===== BOOKING PAGE ===== */
.appointment {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px;
  flex-wrap: wrap;
}

.appointment-details {
  text-align: center;
}

.appointment-details img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  background-color: #fdfaf0;
  padding: 15px;
}

/* ===== FORM ===== */
.booking-form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.booking-form input {
  margin-bottom: 12px;
  padding: 8px;
  border: 1px solid #c9bfa3;
  border-radius: 5px;
  background-color: #fffdf5;
}

.booking-form label {
  margin-top: 10px;
  font-size: 14px;
}

/* ===== TIME SLOT STYLES ===== */

#time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  max-width: 320px;
}


/* ===== CANCEL PAGE STYLES ===== */
.cancel-card {
  background-color: #fdfaf0;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.cancel-card h2 {
  margin-bottom: 20px;
}

.cancel-card p {
  margin: 8px 0;
  font-size: 15px;
}

.warning-text {
  color: #b22222;
  font-weight: bold;
  margin-top: 20px;
}

.cancel-btn {
  margin-top: 15px;
  width: 100%;
}

.keep-link {
  display: inline-block;
  margin-top: 15px;
  color: #6b6b6b;
  text-decoration: none;
}

.keep-link:hover {
  color: #d4a017;
} 

/* ===== BOOKING UPGRADE ===== */

.booking-wrapper {
  max-width: 420px;
  background: #fdfaf0;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step {
  margin-bottom: 25px;
}

.step h3 {
  margin-bottom: 10px;
}

/* HINT */
.hint {
  color: #777;
  text-align: center;
}

.closed {
  color: #b22222;
  text-align: center;
  font-weight: bold;
}

/* GROUPS */
.slot-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

/* BUTTON */
.time-btn {
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #c9bfa3;
  background: #fffdf5;
  transition: all 0.2s ease;
}

.time-btn:hover {
  background: #f0e6c8;
}

.time-btn.active {
  background: linear-gradient(135deg, #d4a017, #b89114);
  color: white;
  border: none;
  transform: scale(1.05);
}

.time-btn.disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

/* FORM */
#bookingForm {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5dcc3;
}

#bookingForm input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #c9bfa3;
}

/* MOBILE IMPROVEMENT */
@media (max-width: 600px) {
  .slot-group {
    grid-template-columns: 1fr;
  }
}

/* CENTER BOOKING CONTENT */
.booking-wrapper {
  text-align: center;
}

/* CENTER FORM ELEMENTS */
#bookingForm form { 
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* INPUT WIDTH + CENTER */
#bookingForm input {
  width: 90%;
  max-width: 300px;
  text-align: center;
}

/* LABEL ALIGNMENT */
#bookingForm label {
  width: 100%;
  max-width: 300px;
  text-align: left;
  margin: 10px auto 5px;
}

/* ===== CONFIRMATION PAGE ===== 

.confirmation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
*/
.confirmation-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* CHANGE THIS */
  padding: 60px 20px;       /* ADD THIS */
  min-height: 100vh;        /* CHANGE THIS */
  box-sizing: border-box;
}

.confirmation-card {
  background: #fdfaf0;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 400px;
}

.confirmation-card h1 {
  color: #2f2f2f;
  margin-bottom: 10px;
}

.success-msg {
  color: #4CAF50;
  margin-bottom: 20px;
  font-weight: bold;
}

.summary {
  text-align: left;
  margin: 20px 0;
  padding: 15px;
  border-top: 1px solid #e5dcc3;
  border-bottom: 1px solid #e5dcc3;
}

.summary p {
  margin: 8px 0;
}
/* ===== POLICY BOX ===== */

.policy-box {
  background: #fff3cd;
  border-left: 5px solid #d4a017;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  text-align: left;
}

.policy-box h3 {
  margin-top: 0;
  font-size: 16px;
  color: #2f2f2f;
}

.policy-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

/* CHECKBOX */
.policy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 10px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  gap: 40px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #444;
}

.hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 25px;
  color: #666;
}

.hero-image img {
  width: 450px;
  height: 500px;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(230, 199, 106, 0.3);
}

.btn, 
.flex-item a {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;

  background: linear-gradient(135deg, #f6e6b4, #e6c76a);
  color: #f1f1f1;

  text-decoration: none;
  border-radius: 20px;
  border: none;

  cursor: pointer;
  font-size: 14px;
  overflow: hidden;

  transition: all 0.3s ease;
}
.btn::before,
.flex-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.1)
  );

  transform: skewX(-20deg);
}


.btn:hover::before,
.flex-item a:hover::before {
  left: 125%;
  transition: 0.6s;
}

.btn:hover,
.flex-item a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
}



.info {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px;
}

.info div {
  background: #fdfaf0;
  padding: 25px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  min-width: 220px;
}


.navbar a:hover {
  color: #d4a017;
}


.footer {
  background: #3b2f2a;
  color: #f6f1dc;
  padding-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 60px;
  gap: 40px;
}

.footer-section {
  max-width: 250px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section a {
  display: block;
  color: #f6f1dc;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: #d4a017;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding: 15px;
  margin-top: 20px;
  font-size: 14px;
}

/*Responsive*/
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
  }

  .info {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/*SOCIAL MEDIA ICONS */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  
}

.social-icons a {
  font-size: 24px;
  color: #f6f1dc;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #d4a017;
}
.about-section {
  padding: 80px 10%;
  background: #f6f1dc;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #3b2f2f;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  min-height: 120px;
}

/* COLLAGE */
.about-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-collage img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 180px;
  box-shadow: 0 8px 20px rgba(231, 210, 124, 1);
  transition: transform 0.3s ease;
}

.about-collage img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-collage img {
    height: 200px;
  }
}
