/* ------------------------------
   Simple CSS Reset
--------------------------------*/

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.logo-text {
  font-family: 'GFS Didot', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Remove default link underline */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images responsive by default */
img {
  max-width: 100%;
  display: block;
}

/* Keep buttons consistent */
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* Reset headings: remove browser default margins */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: 1.2;
}

/* -----------------------------
   Color Styles
-------------------------------*/
:root {
  /* Core Backgrounds */
  --color-bg-main: #000000;
  --color-bg-surface: #d8a0a7;

  /* Brand Gradient */
  --color-gradient-start: #000000;
  --color-gradient-end: #000000;

  /* Text */
  --color-text-main: #e6a2a9;
  --color-text-muted: #dcdbdb;

  /* Accent */
  --color-accent: #eba8af;
  --color-accent-soft: rgba(124,255,0,0.25);

  /* Header / Footer */
  --color-header-bg: #000000;
  --color-footer-bg: #000000;

  /* Lines / UI */
  --color-border: rgb(223, 153, 180);
}

/* -----------------------------
    Main
-------------------------------*/
body {
  background: radial-gradient(circle at center, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
    color: var(--color-text-main); /* a soft lavender white that compliments purple */
    font-family: 'Inter', sans-serif;
}

p {
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'GFS Didot', serif;
  margin-bottom: 40px;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1rem;
}
section p {
  margin-bottom: 40px;
  line-height: 1.5em;
  font-size: 1.5em;
}

section {
  padding-top: 10px;
  padding-bottom: 10px;
}
.section-one-column {
    text-align: center;
    
}

.section-inner-container {
    width: 70%;
    margin: 0 auto;

}


.section-two-column .section-inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}


.section-three-column .section-inner-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


.section-four-column .section-inner-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.col {
  min-width: 0;
  /*border-top: 4px solid var(--color-footer-bg);*/
  padding: 20px;
  background-color: var(--color-bg-surface);
}
.col img {
  max-width: 100%;
}

@media (max-width: 768px) {

  .section-inner-container {
    width: 92%;
  }

  .section-two-column .section-inner-container,
  .section-three-column .section-inner-container,
  .section-four-column .section-inner-container {
    grid-template-columns: 1fr;
  }

}











/* -------------------------
   Buttons
---------------------------*/
.cta1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-footer-bg);
  background: #e8a5ac;
  background: linear-gradient(180deg, #dfaaaf, #cc7f86);
  padding: 10px 20px;
  border-radius: 10px;
  filter: drop-shadow(2px 5px 4px #000000);
  display: inline-block;
  white-space: nowrap;
}
.cta1:hover {
  background: var(--color-accent);
  background: linear-gradient(180deg, #d99ca3, #eabcc0);
  text-decoration: none;
}

@media (max-width: 400px) {
  .cta1 {
    font-size: 1rem;
    padding: 16px 22px;
  }
}

/* -----------------------------
   Header Styles
------------------------------*/

.site-header {
    position: relative;
    z-index: 100;
    background: var(--color-footer-bg);
    color: var(--color-text-muted);
    border-bottom: none;
    height: 120px;
}

.header-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LOGO */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo span {
  color: #99cc33; /* accent */
}
.logo img {
  display: block;
  height: 100px;   /* or 60–80px if you want it bigger */
  width: auto;
}


/* NAVIGATION (base) */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--color-text-main);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  border-bottom: 6px solid transparent;
  padding-bottom: 3px;
  
}

.main-nav a:hover {
  color: var(--color-text-muted);
  border-bottom-color: var(--color-text-main);
}

/* PHONE */
.header-phone a {
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.phone-icon {
  color: #ed9ea6;
}

.header-phone a:hover {
  color: #c49aa5;
}

/* HAMBURGER BUTTON (base styles) */
.nav-toggle {
  width: 42px;
  height: 30px;
  padding: 0;
  border-radius: 4px;
  
  background: transparent;

  display: none;          /* hidden on desktop; shown in mobile query */
  position: relative;     /* lines are positioned inside this box */
}

/* Three lines stacked with absolute positioning */
.nav-toggle__line {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--color-text-muted);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Top, middle, bottom bars */
.nav-toggle__line:nth-child(1) {
  top: 5px;
}

.nav-toggle__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle__line:nth-child(3) {
  bottom: 5px;
}

/* When nav is open, turn into a perfect X */
.site-header.nav-open .nav-toggle__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Sticky mobile call button */
.mobile-call-button {
  display: none;                 /* hidden on desktop */
}

/* -----------------------------
   Desktop layout
------------------------------*/

@media (min-width: 769px) {
  .header-container {
    flex-wrap: nowrap;
  }

  .main-nav {
    order: 2;
  }

  .header-phone {
    order: 3;
  }

  .nav-toggle {
    display: none;
  }
}

.seo-blurb {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* -----------------------------
   Mobile layout
------------------------------*/

@media (max-width: 768px) {
  
  .header-container {
    flex-wrap: no-wrap;
    align-items: center;
    /* keeps row 2 elements (phone + burger) spread apart */
    justify-content: space-between;
  }

  /* Row 1: logo centered, full width */
  .logo {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }

  /* Row 2 left: phone */
  .header-phone {
    order: 2;
    display: none;
  }

  /* Row 2 right: hamburger */
  .nav-toggle {
    order: 3;
    display: flex;       /* show the button on mobile */
    margin-left: auto;   /* push it to the right edge */
  }

  /* Row 3: nav dropdown, full width, hidden by default */
  .main-nav {
    /*order: 4;*/
    width: 100%;
    display: none;
    border-top: 1px solid #222;
    margin-top: 8px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0 10px;
    
  }

  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 124px;
    width: 100vw;
    padding-left: 0;
    height: 300px;
    background-color: var(--color-footer-bg);
  }
  .mobile-call-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: var(--color-accent);
    color: var(--color-bg-main);
    font-weight: 700;
    text-align: center;
    padding: 15px 0;
    font-size: 1.1rem;

    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
    border-top: 1px solid #4bbf4b;

    z-index: 9999;
  }
  .mobile-call-button:hover {
    background: #7cff7c;
  }
}


/*-----------------------------
    Top Section
------------------------------*/

.top-section {
    min-height: 600px;
}

/* -----------------------------
   Home Page Sections
------------------------------*/
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-button-row {
  text-align: center;
  margin-top: 20px;
}

.home-hero {
  padding-top: 20px;
  background-image: url("/assets/images/pink-swoosh-2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-top: 1px solid var(--color-border);
}

.home-hero h1 {
  font-size: 3.5rem;
  color: var(--color-text-muted);
}

.script-accent {
  font-family: 'Bonheur Royale', cursive;
  font-size: 5.5rem;
}

.hero-inner {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.script-accent {
  color: #ed9ea6;
}

.home-about {
  background-image: url("/assets/images/carrano-glam-make-up-case-with-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-top: 40px;
}

.home-about h2 {
  color: var(--color-text-muted);
  position: relative;
  z-index: 100;
}
/*.home-about h2.heart-icon {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  z-index: 200;
}*/

.home-about p {
  color: var(--color-text-muted);
}

@media (max-width: 800px) {

  .home-about {
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 140px;
    background-position: bottom right;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

}

.hero-copy {
  max-width: 520px;
}

.home-services {
  border-top: 1px solid var(--color-border);
  padding-bottom: 40px;
  padding-top: 40px;
}

.home-services h2 {
  color: var(--color-text-muted);
}

.home-services .col img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  margin: 0 auto;
}

.home-services .col {
  background-color: transparent;
  text-align: center;
}

.home-services .col h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.home-services .col p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.home-gallery {
  padding-top: 40px;
  padding-bottom: 40px;
}

.home-services h2,
.home-gallery h2 {
  text-align: center;
}

.home-services .section-kicker,
.home-gallery .section-kicker {
  text-align: center;
}

.home-services.section-four-column .section-inner-container p {
  margin-bottom: 16px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-row img {
  border: 1px solid var(--color-border);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-cta-band {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  /*background-image: url("/assets/images/bottom-section-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
  padding-top: 50px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}



/* -----------------------------
    About Page
--------------------------------*/

/* ABOUT PAGE */

.about-page {
  background:
    radial-gradient(circle at top left, rgba(243,182,200,0.18), transparent 35%),
    #050505;
  color: #ffffff;
  padding: 90px 20px 70px;
}

.about-page .section-inner-container {
  max-width: 850px;
  margin: 0 auto;
}

.about-page .section-tag {
  color: #f3b6c8;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.about-page h1 {
  color: #f7c1d2;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 20px 0 28px;
}

.about-page p {
  color: #f5e6ec;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 760px;
}

.about-values {
  background: #0b0b0b;
  color: #ffffff;
  padding: 70px 20px 100px;
}

.about-values .section-inner-container {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.about-values .section-tag {
  color: #f3b6c8;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.about-values h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 18px 0 36px;
}

.about-values .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-values .service-card {
  text-align: left;
}

@media (max-width: 800px) {
  .about-values .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 26px;
  }
}





/* -----------------------------
   Services Page 
--------------------------------*/

/* SERVICES PAGE */

.services-page {
  background: #050505;
  color: #ffffff;
  padding: 90px 20px 60px;
}

.services-page .section-inner-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-page .section-tag {
  color: #f3b6c8;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.services-page h1 {
  color: #f7c1d2;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 20px 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.services-page .hero-text {
  color: #f5e6ec;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
}

.services-list .section-inner-container {
  max-width: 1000px;
  display: grid;
  gap: 28px;
}

.services-list {
  background:
    radial-gradient(circle at top right, rgba(243,182,200,0.18), transparent 35%),
    #050505;
  padding: 60px 20px 100px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(243,182,200,0.35);
  border-radius: 22px;
  padding: 34px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.service-card h2,
.service-card h3 {
  color: #f7c1d2;
  margin-bottom: 12px;
}

.service-card p {
  color: #f5e6ec;
  line-height: 1.7;
  margin-bottom: 24px;
}





/* -----------------------------
   Book Now Page
------------------------------*/
.book-now-form {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.book-now-form label {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.book-now-form input:not([type="hidden"]),
.book-now-form select,
.book-now-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  background: #111;
  color: var(--color-text-main);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
}

.book-now-form .cta1 {
  font-size: 1rem;
  padding: 12px 28px;
}

.hidden-field {
  display: none;
}


/* MOBILE NAV - FULL WIDTH STACKED BUTTONS */

@media (max-width: 900px) {

  .main-nav {
    width: 100%;
    padding: 0;
  }

  .main-nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .main-nav li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 18px 20px;
    text-align: center;

    border-radius: 0;
    border: none;
    
    color: #ffffff;
    text-decoration: none;

    background: linear-gradient(
      180deg,
      rgba(208, 158, 178, 0.85) 0%,
      rgba(215, 136, 151, 0.85) 55%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background: linear-gradient(
      180deg,
      rgba(255, 205, 225, 0.95) 0%,
      rgba(124, 74, 87, 0.95) 55%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .main-nav a:active {
    background: linear-gradient(
      180deg,
      rgb(190, 123, 153) 0%,
      rgba(70, 20, 45, 1) 55%,
      rgba(0, 0, 0, 1) 100%
    );
  }

}




/* Footer styles */
.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-text-main); /* slightly dimmer than body text */
    text-align: left;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  /*max-width: 1100px;*/
  margin: 0 auto;
}

.footer-container h3,
.footer-container h4 {
  margin-bottom: 10px;
  color: var(--color-accent);
}

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

.footer-nav ul li {
  margin-bottom: 6px;
}

.footer-nav a {
  color: var(--color-text-main);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-text-muted);
}

.footer-about img {
  max-width: 150px;
  margin-bottom: 20px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
  color: var(--color-text-main);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    background-size: cover;
    background-position: right 100px;
  }

  .hero-inner {
    min-height: 440px;
    justify-content: center;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-about img {
    max-width: 150px;
    margin: 20px auto;
  }
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
@media (max-width: 800px) {
  .header-phone {
    display: none;
  }
}

.instagram-link {
  font-size: 0.9rem;
  color: #f3b6c8;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.instagram-link:hover {
  opacity: 0.7;
}
