/* ============================================
   GET ORGANIZED BY ALMA — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Dancing+Script:wght@400;600&display=swap');

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --pink-light: #fce8ec;
  --pink-accent: #e8a0aa;
  --pink-text: #c97080;
  --grey-light: #f5f5f5;
  --grey-mid: #888888;
  --text-dark: #2c2c2c;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 2rem;
}
nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.2s ease;
}
nav a:hover { opacity: 0.7; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 720px;
  background: url('../images/banner1.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 4rem 3rem;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}

/* "Transform Chaos Into Calm" - PNG with true transparent background */
.hero-tagline-img {
  width: 1200px;
  max-width: 100%;
  margin-bottom: 2rem;
}

/* Logo circle */
.logo-circle {
  background: var(--white);
  border-radius: 50%;
  width: 550px;
  height: 550px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-primary.dark {
  background: var(--black);
  color: var(--white);
}
.btn-primary.dark:hover {
  background: var(--pink-accent);
  color: var(--white);
}

/* ============================================
   TAGLINE STRIP
   ============================================ */
.tagline-strip {
  background: var(--pink-light);
  padding: 1.25rem 2rem;
  text-align: center;
}
.tagline-strip p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
}

/* ============================================
   BENEFITS (accordion - starts closed)
   ============================================ */
.benefits {
  background: var(--black);
  padding: 4rem;
  color: var(--white);
}
.benefits h2 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.benefit-item:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.15);
}
.benefit-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.benefit-item:nth-child(even) .benefit-toggle {
  padding-left: 2rem;
}
.chevron {
  font-size: 0.85rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  display: inline-block;
  /* closed by default - chevron points down */
  transform: rotate(180deg);
}
/* when open, chevron points up */
.benefit-item.open .chevron {
  transform: rotate(0deg);
}
/* body collapsed by default */
.benefit-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2rem 0 0;
}
.benefit-item:nth-child(even) .benefit-body {
  padding-left: 2rem;
}
/* open state */
.benefit-item.open .benefit-body {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 1.25rem;
}
.benefit-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { padding-top: 3.5rem; }
.section-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}
.about {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4rem 4rem;
}
.about-image {
  flex-shrink: 0;
  width: 330px;
}
.about-image img {
  width: 100%;
  height: 435px;
  object-fit: cover;
  object-position: top center;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}
.about-text p strong { color: var(--text-dark); font-weight: 600; }
.about-text p em { font-style: italic; color: var(--text-dark); }
.about-cta { margin-top: 1.5rem; text-align: right; }
.btn-outline {
  display: inline-block;
  background: var(--pink-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  background: var(--pink-accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--grey-light);
  padding: 3.5rem 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  opacity: 0.92;
}
.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   FORM
   ============================================ */
.form-section {
  background: var(--black);
  padding: 4rem 2rem;
}
.form-card {
  max-width: 500px;
  margin: 0 auto;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--pink-text);
  background: var(--pink-light);
  padding: 0.6rem 1rem;
  margin-bottom: 0.75rem;
}
.form-subtitle {
  font-size: 0.9rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.form-subtitle a { color: var(--pink-accent); text-decoration: underline; }

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 0.85rem 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.consultation-form input::placeholder,
.consultation-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.consultation-form input:focus,
.consultation-form textarea:focus { border-bottom-color: var(--pink-accent); }
.consultation-form textarea { min-height: 90px; resize: none; }

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-checkbox input[type="checkbox"] {
  width: auto;
  border: none;
  margin: 0;
  accent-color: var(--pink-accent);
}
.form-checkbox label { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.btn-send {
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.75rem;
}
.btn-send:hover { background: var(--pink-accent); color: var(--white); }
.form-note { font-size: 0.8rem; text-align: center; color: rgba(255,255,255,0.38); }

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
.reviews {
  padding: 4rem 2rem;
  background: var(--pink-light);
}
.review-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.review-slide {
  display: none;
  width: 100%;
}
.review-slide.active { display: block; }
.review-slide img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-accent);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dot.active { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.footer-logo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-left: auto;
}
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.icon { opacity: 0.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  nav { gap: 1rem; padding: 1rem; flex-wrap: wrap; }
  nav a { font-size: 0.75rem; }

  .hero { padding: 4rem 1.5rem 2.5rem; min-height: 380px; }
  .hero-content { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .hero-tagline-img { width: 280px; }
  .logo-circle { width: 200px; height: 200px; align-self: flex-end; }

  .benefits { padding: 3rem 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item:nth-child(odd) { border-right: none; }
  .benefit-toggle { padding-left: 0 !important; }
  .benefit-body { padding-left: 0 !important; }

  .about { flex-direction: column; padding: 0 1.5rem 3rem; gap: 2rem; }
  .about-image { width: 100%; }
  .about-image img { width: 100%; height: 300px; }
  .about-cta { text-align: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }

  footer { flex-direction: column; padding: 2.5rem 1.5rem; text-align: center; }
  .footer-contact { margin: 0 auto; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
