/* ==========================================================================
   Sydney Salas — rebuilt static site
   Design tokens extracted from the original Elementor build:
   - Accent:        #D896AC
   - Accent tint:   #F9EBF0
   - Body text:     #7A7A7A (Roboto) / #555555 (Open Sans, bio copy)
   - Nav:           Montserrat 13px / 600 / uppercase / .8px tracking / #222
   - Headings:      Abril Fatface (global), Playfair Display (Contact Me)
   - Borders:       #E8E8E8
   ========================================================================== */

:root {
  --accent: #D896AC;
  --accent-tint: #F9EBF0;
  --accent-dark: #292729;
  --text: #7A7A7A;
  --text-dark: #222222;
  --text-body: #555555;
  --border: #E8E8E8;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header — logo band + sticky white nav bar
   ========================================================================== */

.site-logo {
  margin: 20px 0;
  text-align: center;
}
.site-logo img {
  width: 100%;
  max-width: 455px;
  display: inline-block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 4px 0 20px 0 rgba(230, 230, 230, 0.5);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-height: 56px;
}
.header-social { flex: 0 0 auto; }
.header-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.header-search { flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-end; }

/* small round instagram icon, top-left (grow on hover) */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  transition: transform 0.3s;
}
.icon-btn svg { width: 14px; height: 14px; fill: currentColor; }
.icon-btn:hover { transform: scale(1.15); }

/* nav menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav-menu > li { margin: 0 10px; }
.nav-menu a {
  position: relative;
  display: inline-block;
  padding: 18px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  transition: color 0.3s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--accent); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

/* search */
.search-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  padding: 8px;
}
.search-toggle svg { width: 15px; height: 15px; fill: currentColor; transition: fill 0.3s; }
.search-toggle:hover svg { fill: var(--accent); }

.search-form {
  display: none;
  align-items: center;
  gap: 6px;
}
.search-form.open { display: inline-flex; }
.search-form input {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  outline: none;
  width: 150px;
}
.search-form input:focus { border-color: var(--accent); }

/* mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 14px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dark);
}
.menu-toggle svg { width: 18px; height: 18px; fill: currentColor; vertical-align: -4px; }

/* ==========================================================================
   Page shell
   ========================================================================== */

.page-main {
  max-width: var(--container);
  margin: 50px auto 100px;
  padding: 0 20px;
}

/* ==========================================================================
   Bio layout — 70 / 30 with stats sidebar
   ========================================================================== */

.bio-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.bio-content { width: 70%; }
.bio-sidebar { width: 30%; }

.bio-content .bio-photo img { width: 100%; }
.bio-text {
  margin-top: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}
.bio-text p { margin-bottom: 16px; }
.bio-text strong { color: var(--text-dark); }
.bio-divider {
  border: 0;
  border-top: 1px solid #E7E7E7;
  margin: 8px 0 0;
}

/* stats card */
.stats-card {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}
.stats-heading {
  background: var(--accent-tint);
  padding: 10px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  color: #444444;
  margin-bottom: 20px;
}
.stats-photo { margin-bottom: 20px; }
.stats-photo img {
  width: 73%;
  margin: 0 auto;
  border-radius: 100%;
}
.stats-script { margin-bottom: 20px; }
.stats-script img { width: 67%; margin: 0 auto; }
.stats-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}
.stats-text strong { font-style: normal; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 160px;
  padding: 10px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border-radius: 2px;
  transition: background 0.4s;
  margin-bottom: 20px;
}
.btn-solid svg { width: 18px; height: 18px; fill: currentColor; }
.btn-solid:hover { background: var(--accent-dark); }

/* outlined round social icon (sidebar instagram) */
.icon-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 30px;
  color: var(--accent);
  transition: background 0.3s, color 0.3s;
}
.icon-outline svg { width: 14px; height: 14px; fill: currentColor; }
.icon-outline:hover { background: var(--accent); color: #fff; }

/* ==========================================================================
   Photo grid / slider — white cards with 1px border and 10px padding
   ========================================================================== */

.photo-lead { margin-bottom: 20px; }
.photo-lead img { width: 100%; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.photo-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px;
}
.photo-card img { width: 100%; }

/* slider */
.slider {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}
.slider-track .photo-card {
  flex: 0 0 calc(50% - 10px);
  margin-right: 20px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.1s;
}
.slider-arrow svg { width: 25px; height: 40px; fill: currentColor; filter: drop-shadow(0 0 3px rgba(0,0,0,0.35)); }
.slider-arrow:hover { color: #ffffff; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  padding: 0;
}
.slider-dot.active { background: #222222; }

/* ==========================================================================
   Videos — coming soon
   ========================================================================== */

.coming-soon {
  font-size: 15px;
  color: var(--text);
}

/* ==========================================================================
   Contact — narrow column, Playfair heading, CF7-style form
   ========================================================================== */

.contact-main {
  max-width: 751px;
  margin: 50px auto 100px;
  padding: 0 20px;
}
.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-divider {
  border: 0;
  border-top: 2px solid var(--accent);
  width: 39%;
  margin: 2px 0 26px;
}

.contact-form { font-family: "Lato", sans-serif; font-size: 13px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  height: 39px;
  padding: 0 15px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #474747;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  transition: color 0.1s;
  outline: none;
}
.contact-form textarea {
  width: 100%;
  height: 162px;
  padding: 8px 15px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #474747;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  resize: vertical;
  outline: none;
}
.contact-form ::placeholder { color: #ADADAD; }
.contact-form input:focus,
.contact-form textarea:focus { color: #333333; border-color: var(--accent); }

.contact-submit {
  display: inline-block;
  padding: 9px 50px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.5s, color 0.5s;
}
.contact-submit:hover {
  background: var(--accent);
  color: #ffffff;
}
.form-note {
  margin-top: 14px;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  color: var(--text);
  display: none;
}
.form-note.show { display: block; }

/* ==========================================================================
   Footer — pink bar with outlined white icons + copyright
   ========================================================================== */

.site-footer { margin-top: auto; }
.footer-social {
  background: var(--accent);
  padding: 10px 0;
  text-align: center;
}
.footer-social .icon-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 5px;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  color: #FFFFFF;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.footer-social .icon-round svg { width: 14px; height: 14px; fill: currentColor; }
.footer-social .icon-round:hover { background: #ffffff; color: var(--accent); }

.footer-copy {
  margin: 20px 0 10px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #444444;
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 13px 15px;
  background: #FFFFFF;
  border: 1px solid var(--accent);
  border-radius: 35px;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.back-to-top svg { width: 14px; height: 14px; fill: currentColor; }
.back-to-top.visible { display: inline-flex; }
.back-to-top:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* sticky-footer page shell */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-wrap > .grow { flex: 1 0 auto; }

/* keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

@media (max-width: 1024px) {
  .bio-text { font-size: 13px; }
  .stats-text { font-size: 12px; }
}

@media (max-width: 767px) {
  .site-logo img { max-width: 320px; }

  .header-inner { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
  .header-nav {
    order: 4;
    flex-basis: 100%;
    display: none;
  }
  .header-nav.open { display: block; }
  .nav-menu { flex-direction: column; align-items: stretch; }
  .nav-menu > li { margin: 0; text-align: center; border-top: 1px solid var(--border); }
  .nav-menu a { display: block; padding: 12px; }
  .nav-menu a::after { display: none; }

  .bio-grid { flex-direction: column; }
  .bio-content, .bio-sidebar { width: 100%; }
  .bio-sidebar { margin-top: 30px; }

  .photo-grid { grid-template-columns: 1fr; }
  .slider-track .photo-card { flex: 0 0 100%; margin-right: 20px; }

  .stats-text { font-size: 14px; }
  .contact-title { font-size: 32px; }
  .page-main, .contact-main { margin: 30px auto 60px; }
}
