/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset default body spacing for full-width */
body {
  margin: 0;
  padding: 0;
}

/* Colors */
:root {
  --brand-pink: #fbf8eb;
  --brand-grey: #444444;
  --brand-brown: #7a5e45;
  --brand-white: #ffffff;
}

/* Full-width top bar */
.main-nav-bar {
  width: 100%;
  background-color: #444444;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.follow-label {
  white-space: nowrap;
  font-family: 'Dancing Script', cursive;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-icon img {
  width: 50px;  /* or 20px depending on preference */
  height: 50px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.15);
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  font-family: 'Poppins', sans-serif; /* swap to your font */
  color: #333; /* update to your brand text color */
  background-color: #fff; /* or your brand background */
  padding: 2rem;
  flex-wrap: wrap;
  border-radius: 12px;
}

/* Layout container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav links centered horizontally overall */
  max-width: 1000px;
  padding: 0.5rem 2rem;
  margin: 0 auto;
}

/* Logo styling */
.nav-logo {
  max-height: 90px;
  height: auto;
}


/* Centered navigation area */
.main-nav {
  display: flex;
  flex-grow: 1;
  justify-content: center; /* center the links between logo & end of container */
  gap: 2rem;
  font-family: 'Dancing Script', cursive;
}

.main-nav-bar {
  width: 100%;
  position: fixed;
  top: 0; left: 0;
  background-color: var(--brand-pink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.booking-button {
  font-weight: 600; /* less intense than 700 */
  letter-spacing: 0.5px;
}

.nav-btn {
  display: inline-block;
  background-color: #444;
  color: white;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #666;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.container p {
  font-family: 'Poppins', sans-serif;
  color: var(--brand-grey);
}

/* Center and improve layout for GLOS image */
.GLOSbeauty {
  display: flex;              /* Enables centering */
  justify-content: center;    /* Centers horizontally */
  margin-top: 2rem;
  padding: 1rem;
  background: var(--brand-pink);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Scale the image up */
.GLOSbeauty img {
  max-width: 20%;    /* Adjust as desired, e.g. 80%, 60%, etc. */
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Flex layout for hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-pink);
  padding: 4rem 0;
  text-align: left; /* ensure text is left-aligned */
  font-family: 'Poppins', sans-serif;
}

/* Flex container for hero content */
.hero-container {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 4rem 4rem;  /* top right bottom left */
}

/* Hero text section */
.hero-text {
  flex: 1;
  color: #333;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Dancing Script', cursive;
}

.hero-text p {
  max-width: 800px;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

/* Hero image on the right */
.hero-image-box {
  flex: 1;
  max-width: 1000px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero-image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Responsive fallback for mobile screens */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .hero-image-box {
    width: 100%;
  }
  .hero-image-box {
    max-width: 100%;
    margin-top: 2rem;
  }
}

.logo {
  width: 250px;
  margin-bottom: 1rem;
}

.main-nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: var(--brand-grey);
  background-color: transparent;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.service-info-text p {
  color: var(--brand-grey);
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;  /* adjust size as needed */
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem auto; /* center with bottom spacing */
  margin-bottom: 5rem; /* increase this value as needed */
}

.our-services{
  color: var(--brand-grey); /* your preferred color */
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;  /* adjust size as needed */
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 1rem auto; /* center with bottom spacing */
}

.model-offer-banner {
  width: 100vw;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 3rem 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;

  /* Flex centering vertically */
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  height: 3.5rem;           /* fixed height for consistent vertical centering */
}

.model-offer-banner p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;  /* avoid extra spacing */
  color: #fff;
}

.main-nav a:hover {
  color: #7a5e45;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section.light {
  background-color: var(--brand-pink);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #7a5e45;
}

p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.services-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background-color: #f4e2ce;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #555;
}

/* Flex container for side-by-side layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.about-image {
  flex: 1;
  max-width: 45%;
}

/* Control image size */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.booking-button {
  height: 100%;
  display: flex;
  align-items: center;
}

.service-block {
  display: flex;
  align-items: stretch;
  margin: 2rem 0;
  width: 100%;
  gap: 0; /* makes sure no padding */
}

.service-img {
  width: 50%;
  object-fit: cover;
  display: block;
}

.service-text-box {
  background-color: #f4e2ce; /* light warm background */
  color: #444;               /* dark grey text for readability */
  padding: 2rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.service-text-box h3 {
  font-family: 'Dancing Script', cursive;
  color: var(--brand-grey);            /* elegant brownish tone */
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-text-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-text-box ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

.service-text-box ul li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #555;
}

.book-now-button {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  background-color: #000000;
  color: rgb(255, 255, 255);
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}


.btn:hover {
  background-color: var(--brand-grey); /* Slightly darker on hover */
}

#about h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--brand-grey);
}


/* Text area grows to fill remaining space */
.about-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  color: var(--brand-grey);
}

  .contact-section {
  background-color: var(--brand-pink);
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: var(--brand-grey);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info, .contact-socials {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: left;
}

.contact-info p, .contact-socials p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Dancing Script', cursive;
}

.contact-info a, .contact-socials a {
  color: var(--brand-grey);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.contact-info a:hover, .contact-socials a:hover {
  color: var(--brand-brown);
  text-decoration: underline;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 80%; /* smaller width on mobile */
  }
}






