/* ==========================================================================
   FotoFables - Universal Production Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #B83E45;
  --primary-hover: #9A2F36;
  --text-dark: #1A1A1A;
  --text-muted: #4A4A4A;
  --text-light: #777777;
  --bg-page: #FFFFFF;
  --bg-card: #FFF8EE;
  --border-color: rgba(0, 0, 0, 0.12);
  --font-heading: 'Chelsea Market', cursive, sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Home Page Specific Dragon Background */
body.home-page {
  background-image: url('/assets/images/05c884_6e23ba5e1c124e65a562bbf57318b78d~mv2.gif');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

/* ==========================================================================
   Clean Header (<app-header>) & Home Header
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.8vw 3vw;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 42px;
  color: var(--primary-color);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.menu-btn:hover {
  transform: scale(1.08);
}

.menu-btn svg {
  width: 52px;
  height: 42px;
}

.site-header-clean {
  position: relative;
  width: 100%;
  padding: 24px 36px 12px;
  background-color: #FFFFFF;
}

.header-inner-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.header-side-spacer {
  width: 52px;
}

.header-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 42px;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.header-menu-trigger:hover {
  transform: scale(1.08);
}

.header-menu-trigger svg {
  width: 52px;
  height: 42px;
}

/* Drawer Menu Modal */
.menu-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 85vw;
  height: 100vh;
  background: #FFFDF9;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  box-shadow: 6px 0 24px rgba(0, 0, 0, 0.12);
}

.menu-drawer.active {
  transform: translateX(0);
}

.menu-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(184, 62, 69, 0.12);
}

.menu-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
}

.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.menu-close-btn:hover {
  background-color: rgba(184, 62, 69, 0.08);
}

.menu-nav-links, .menu-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.menu-nav-links li a, .menu-nav-list li a {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}

.menu-nav-links li a:hover,
.menu-nav-links li a.active,
.menu-nav-list li a:hover,
.menu-nav-list li a.active {
  color: var(--primary-color);
  transform: translateX(6px);
}

.menu-drawer-bottom {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid rgba(184, 62, 69, 0.1);
  padding-top: 20px;
}

/* ==========================================================================
   Home Page Sections (Dragon Background Lockstep)
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 54vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 3vw;
  padding-bottom: 2vw;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: calc(1.8rem + 1.2vw);
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: calc(0.94rem + 0.18vw);
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.btn-pill-maroon {
  display: inline-block;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: calc(0.92rem + 0.15vw);
  padding: 11px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(184, 62, 69, 0.25);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-pill-maroon:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 62, 69, 0.35);
}

.about-section {
  position: relative;
  width: 100%;
  height: 52vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5vw 24px 2vw;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: calc(1.8rem + 1vw);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-paragraph {
  font-family: var(--font-body);
  font-size: calc(0.92rem + 0.22vw);
  line-height: 1.75;
  color: #2D3748;
  margin-bottom: 18px;
}

.services-section {
  position: relative;
  width: 100%;
  min-height: 70vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4vw 0 4vw;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.5vw;
  row-gap: 3.5vw;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.service-item-clean {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.service-item-clean:hover {
  transform: translateY(-4px);
}

.service-icon-box {
  width: 100%;
  height: 11vw;
  max-height: 180px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-item-clean:hover .service-icon-box img {
  transform: scale(1.06);
}

.service-item-title {
  font-family: var(--font-heading);
  font-size: calc(1rem + 0.3vw);
  color: #1A1A1A;
  margin-bottom: 4px;
  line-height: 1.3;
}

.service-item-desc {
  font-family: var(--font-body);
  font-size: calc(0.85rem + 0.1vw);
  color: #555555;
  line-height: 1.45;
  max-width: 280px;
}

.metrics-section {
  position: relative;
  width: 100%;
  padding: 12vw 20px 0.5vw;
}

.metrics-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.metric-item {
  text-align: center;
  flex: 1 1 150px;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: calc(2rem + 1vw);
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 2px;
}

.metric-label {
  font-family: var(--font-heading);
  font-size: calc(1rem + 0.2vw);
  color: var(--text-dark);
  margin: 0;
}

.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 32vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5vw 20px 4vw;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  width: 44px;
  height: auto;
  margin: 0 auto 16px;
}

.testimonials-slides {
  position: relative;
  min-height: 140px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: calc(0.95rem + 0.2vw);
  line-height: 1.75;
  color: #2D3748;
  margin-bottom: 18px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: calc(1.1rem + 0.2vw);
  color: var(--primary-color);
  margin-bottom: 2px;
}

.testimonial-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: calc(0.85rem + 0.1vw);
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.nav-prev, .nav-next {
  background: #FFFFFF;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-prev:hover, .nav-next:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.08);
}

/* Home Page Lockstep Footer */
body.home-page .site-footer {
  position: relative;
  width: 100%;
  min-height: 62vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15.5vw 5vw 4vw;
  box-sizing: border-box;
}

body.home-page .footer-content-wrap {
  max-width: 560px;
  width: 100%;
  margin-left: max(5vw, calc(50% - 560px));
  text-align: left;
}

body.home-page .footer-heading {
  font-family: var(--font-heading);
  font-size: calc(1.8rem + 0.8vw);
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1.2;
}

body.home-page .footer-desc {
  font-family: var(--font-body);
  font-size: calc(0.9rem + 0.15vw);
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 500px;
}

body.home-page .footer-cta-btn {
  margin-bottom: 24px;
}

body.home-page .footer-locations-row {
  display: flex;
  gap: 36px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

body.home-page .footer-loc-item {
  text-align: left;
}

body.home-page .footer-country {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 2px;
  line-height: 1.2;
}

body.home-page .footer-city {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0;
}

body.home-page .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

body.home-page .social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  text-decoration: none;
  transition: all 0.2s ease;
}

body.home-page .social-icon-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

body.home-page .social-icon-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

body.home-page .footer-email-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-bottom: 16px;
}

body.home-page .footer-email-link:hover {
  color: var(--primary-color);
}

body.home-page .footer-copyright-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

body.home-page .footer-terms-row {
  display: flex;
  gap: 16px;
}

body.home-page .footer-terms-row a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
}

body.home-page .footer-terms-row a:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   Clean 2-Column Subpage Footer (<app-footer>)
   ========================================================================== */

.subpage-footer {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  padding: 60px 40px 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 50px;
}

.subpage-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.subpage-footer-left {
  text-align: left;
  max-width: 500px;
}

.subpage-footer-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.2;
}

.subpage-footer-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}

.subpage-footer-btn-row {
  margin-bottom: 24px;
}

.subpage-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.social-circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-circle-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.social-circle-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.subpage-footer-email {
  margin-bottom: 14px;
}

.subpage-footer-email a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subpage-footer-email a:hover {
  color: var(--primary-color);
}

.subpage-footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.subpage-footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  padding-left: 20px;
}

.location-item {
  text-align: left;
}

.location-country {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 2px;
  line-height: 1.2;
}

.location-city {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ==========================================================================
   Contact Page Exact Wix Styling
   ========================================================================== */

.contact-intro-area {
  text-align: center;
  max-width: 780px;
  margin: 30px auto 40px;
  padding: 0 20px;
}

.contact-intro-p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-intro-email-link {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.contact-intro-email-link:hover {
  color: var(--primary-color);
}

.contact-form-outer-wrapper {
  position: relative;
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.contact-cream-card {
  background-color: var(--bg-card);
  border-radius: 28px;
  padding: 45px 50px;
  position: relative;
  z-index: 2;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #111111;
  margin-bottom: 28px;
  line-height: 1.2;
}

.wix-field-group {
  margin-bottom: 22px;
}

.wix-field-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #111111;
  margin-bottom: 6px;
}

.wix-field-label .asterisk {
  color: #111111;
  margin-left: 2px;
}

.wix-pill-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  border-radius: 24px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #222222;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wix-pill-input:focus {
  outline: none;
  border-color: #384252;
  box-shadow: 0 0 0 2px rgba(56, 66, 82, 0.15);
}

.wix-pill-select {
  width: 100%;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 18px center;
  background-size: 14px;
  border: 1px solid #D0D0D0;
  border-radius: 24px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #222222;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.wix-pill-select:focus {
  outline: none;
  border-color: #384252;
  box-shadow: 0 0 0 2px rgba(56, 66, 82, 0.15);
}

.wix-checkbox-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.wix-checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #222222;
  user-select: none;
}

.wix-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #384252;
  cursor: pointer;
}

.wix-textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  border-radius: 18px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #222222;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wix-textarea:focus {
  outline: none;
  border-color: #384252;
  box-shadow: 0 0 0 2px rgba(56, 66, 82, 0.15);
}

.wix-submit-btn {
  background-color: #384252;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 64px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.wix-submit-btn:hover {
  background-color: #28303C;
  transform: translateY(-2px);
}

/* Floating Sparkle Stars */
.floating-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.sparkle-top-left {
  top: 15%;
  left: -45px;
  width: 55px;
  height: auto;
}

.sparkle-mid-right {
  top: 48%;
  right: -55px;
  width: 65px;
  height: auto;
}

.sparkle-bot-left {
  bottom: 25%;
  left: -50px;
  width: 60px;
  height: auto;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media screen and (max-width: 768px) {
  .subpage-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .subpage-footer-right {
    padding-left: 0;
  }
  .contact-cream-card {
    padding: 30px 20px;
  }
  .floating-sparkle {
    display: none;
  }
}
