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

html, body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --white: #fafafa;
  --beige: #f5f0e8;
  --dark: #1a1a1a;
  --grey: #6b6b6b;
  --light-grey: #e8e8e8;
  --accent: #c9a96e;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  font-size: 14px;
}

.navbar {
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.navbar-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 2px;
}

.navbar-brand small {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--grey);
  text-transform: uppercase;
}

.nav-link {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark) !important;
  margin-left: 2rem;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
}

.hero {
  min-height: 80vh;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Salon\ Decor.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.hero-tag {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: white;
}

.hero h1 span {
  color: var(--accent);
  font-style: italic;
  font-size: 8rem;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background-color: var(--accent);
  color: white;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: #b8935a;
  color: white;
}

.btn-outline-custom {
  border: 1px solid white;
  color: white;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

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

.btn-outline-dark-custom {
  background-color: black;
  color: white;
  border: 1px solid black;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline-dark-custom:hover {
  background-color: white;
  color: black;
}

.section-tag {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
}

.services-preview {
  padding: 50px 0;
  background-color: var(--beige);
}

.services-preview .section-tag {
  color: black;
  opacity: 0.7;
}

.services-preview .section-header h2 {
  color: black;
}

.preview-card {
  padding: 2.5rem 1.5rem;
  background-color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.preview-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.preview-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.preview-card p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
}

.why-us {
  padding: 50px 0;
  background-color: var(--white);
}

.why-us h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.why-us h2 span {
  color: var(--accent);
  font-style: italic;
}

.why-desc {
  font-size: 1.5rem;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.why-item i {
  font-size: 1.7rem;
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.why-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

.why-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: top;
}

.cta-section {
  padding: 100px 0;
  background-color: var(--dark);
  color: white;
}

.cta-section .section-tag {
  color: var(--accent);
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

footer {
  background-color: #111;
  color: #aaa;
  padding: 4rem 0 1.5rem;
}

footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 0;
}

footer h6 {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

footer small {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
}

footer p {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 300;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: var(--accent);
}

footer hr {
  border-color: #222;
  margin: 2rem 0 1rem;
}

.footer-copy {
  font-size: 1rem;
  color: #555;
}

.footer-socials a {
  color: #aaa;
  font-size: 1.3rem;
  margin-left: 1rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-socials a:first-child {
  margin-left: 0;
}

.footer-socials a:hover {
  color: var(--accent);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* PAGE HEADER */
.page-header {
  padding: 120px 0 80px;
  background-color: var(--beige);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1rem;
  color: var(--grey);
  font-weight: 300;
}

/* PRICE SECTIONS */
.price-section {
  padding: 60px 0;
  background-color: var(--white);
}

.price-section.alt {
  background-color: var(--beige);
}

.price-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--light-grey);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 1.4rem;
  color: var(--dark);
}

.price-item span:last-child {
  color: var(--accent);
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}

/* SERVICES GALLERY */
.services-gallery {
  background-color: var(--white);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 2rem 1.5rem 1.5rem;
  transition: opacity 0.3s;
}

.gallery-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 40px 0;
  background-color: var(--white);
}

.step-card {
  padding: 2.5rem 1.5rem;
  background-color: var(--beige);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
}

/* WIG CTA */
.wig-cta {
  padding: 80px 0;
  background-color: var(--beige);
}

.wig-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.wig-cta h2 span {
  color: var(--accent);
  font-style: italic;
}

.wig-cta-img {
  width: 500px;
  height: 500px;
  object-fit: fill;
  object-position: top;
}

/* WIG GALLERY */
.wig-gallery .gallery-item {
  height: 500px;
  object-fit: fill;
}

/* BOOKING SECTION */
.booking-section {
  padding: 80px 0;
  background-color: var(--white);
}

.booking-form {
  background-color: var(--beige);
  padding: 3rem;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  outline: none;
  transition: border 0.3s;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: none;
}

.deposit-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background-color: white;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
}

.deposit-notice i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.deposit-notice p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

.btn-primary-custom.w-100 {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}
/* CHECKBOXES */
.services-checkbox {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  padding: 1.5rem;
  max-height: 350px;
  overflow-y: auto;
}

.checkbox-category {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.checkbox-category:first-child {
  margin-top: 0;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  font-weight: 300;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* MOBILE FIXES */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-brand span {
    font-size: 1.2rem;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-grey);
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  /* Hero */
  .hero {
    text-align: center;
    padding: 60px 0 20px;
    min-height: 50vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h1 span {
  font-size: 2.2rem;
}

  .hero-desc {
    margin: 0 auto 2rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-tag{
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .hero-btns {
    justify-content: center;
    gap: 0.8rem;
  }

  /* Why Us */
  .why-us {
    text-align: left;
    font-size: 2.5rem;
    padding-left: 5px;
    padding: 10px 0;
  }

  .why-item {
    text-align: left;
    padding-left: 5px;
  }

  .why-img {
    height: 300px;
    margin-top: 1rem;
  }

   .why-us h2 {
    font-size: 2.5rem;
  }
  .why-desc{
    font-size: 1rem;
  }

  .why-item p {
    font-size: 1rem;
  }

  /* Wig CTA */
  .wig-cta-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 2rem;
  }

  /* Footer */
  footer .col-lg-4 {
    text-align: center !important;
  }

  .footer-socials {
    justify-content: center;
    display: flex;
    gap: 1rem;
  }

  .footer-socials a {
    margin-left: 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-outline-dark-custom {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }

}

/* IPAD FIXES */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Hero */
  .hero h1 {
    font-size: 4rem;
  }

  .hero h1 span {
  font-size: 4rem;
}

.hero {
    padding: 80px 0 30px;
    min-height: 45vh;
  }

  /* Why Us image */
  .why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
  }

  .why-us h2 {
    font-size: 3rem;
  }

  .why-desc{
    font-size: 1rem;
  }

  .why-item p {
    font-size: 1rem;
  }

  /* Wig CTA image */
  .wig-cta-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}