/* Teena Makeovers - styles (Lavender theme) */

:root{
  --bg: #ffffff;
  --text: #2B2B2B;
  --muted: #6b6b6b;

  /* Lavender theme */
  --soft: #EDEDED;          /* soft grey */
  --card: #ffffff;          /* cards stay white */
  --border: #B8B8B8;        /* silver borders */

  --shadow: 0 16px 40px rgba(17, 17, 17, .08);

  --accent: #f4bfe5;        /* lavender */
  --accent-dark: #f690de;   /* darker lavender (for buttons/CTA) */

  --radius: 18px;
  --container: 1120px;
  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; font-family: var(--sans); color: var(--text); background: var(--bg); }

img{ max-width: 100%; display:block; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.container{ width: min(var(--container), calc(100% - 40px)); margin-inline:auto; }

/* Header */
.header{ position: sticky; top:0; z-index:50; background: rgba(255,255,255,.85); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(184,184,184,.55); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 18px 0; gap:16px; }
.brand{ font-family: var(--serif); font-weight:700; text-decoration:none; color: var(--text); font-size: 26px; letter-spacing:.2px; }
.navlinks{ display:flex; align-items:center; gap:18px; }
.navlink{ text-decoration:none; color:#222; font-weight:500; opacity:.85; }
.navlink:hover{ opacity: 1; }
.navlink.active{ opacity:1; position:relative; }
.navlink.active::after{ content:""; position:absolute; left:0; right:0; bottom:-10px; height:2px; background: rgba(200,182,226,.95); border-radius:10px; }

.iconlink{ display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:12px; border:1px solid transparent; color:#222; opacity:.9; }
.iconlink:hover{ opacity:1; border-color: rgba(184,184,184,.55); background: rgba(200,182,226,.12); }

/* Buttons */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:12px; padding:12px 18px; font-weight:600; text-decoration:none; border:1px solid transparent; cursor:pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease; user-select:none; }
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: #f690de; color:#fff; }
.btn-primary:hover{ border-color: #fff; background: #dea3d1d4; }
.btn-ghost{ background: #f690de; color: #fff; }
.btn-ghost:hover{ border-color: #fff; background: #dea3d1d4;}
.btn-lg{ padding: 14px 22px; border-radius:14px; font-size: 16px; }

.btn-light{ background:#fff; color:#111; }
.btn-light:hover{ background: rgba(255,255,255,.92); }
.btn-outline-light{ background: transparent; color:#fff; border-color: rgba(255,255,255,.65); }
.btn-outline-light:hover{ border-color: rgba(255,255,255,.90); }

/* Pills */
.hero-links{ margin-top:18px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.pill{ text-decoration:none; color:#fff; border:1px solid rgba(255,255,255,.35); padding:8px 12px; border-radius:999px; font-weight:600; font-size:14px; opacity:.95; }
.pill:hover{ opacity:1; border-color: rgba(255,255,255,.65); }

/* Hamburger */
.hamburger{ display:none; border:0; background: transparent; padding:8px; border-radius:12px; }
.hamburger span{ display:block; width:22px; height:2px; background:#111; margin: 5px 0; }

/* Hero */
.hero{ position:relative; min-height:70vh; display:grid; place-items:center; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.405), rgba(0,0,0,.45)), url("images/11.jpg"); background-size:cover; background-position:center; transform: scale(1.03); }
.hero-content{ position:relative; text-align:center; color:#fff; padding:70px 0; }
.hero h1{ font-family: var(--serif); font-size: clamp(44px, 5.2vw, 82px); line-height:1.02; margin: 0 0 14px; letter-spacing:.2px; }
.hero p{ margin: 0 0 24px; font-size:18px; opacity:.92; }
.hero-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* Sections */
.section{ padding: 84px 0; }
.section-soft{ background: var(--soft); }
.section-head{ text-align:center; margin-bottom:34px; }
.section-head h2{ font-family: var(--serif); font-size: clamp(34px, 3.2vw, 56px); margin:0 0 10px; }
.section-head p{ margin:0 auto; max-width:720px; color: var(--muted); font-size:16px; line-height:1.65; }

/* Cards */
.cards{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:22px; margin-top:26px; }
.cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card{ background: var(--card); border:1px solid rgba(184,184,184,.55); border-radius: var(--radius); padding:26px; box-shadow: var(--shadow); }
.icon{ width:56px; height:56px; border-radius:999px; background: rgba(200,182,226,.18); color: var(--accent-dark); display:grid; place-items:center; margin-bottom:18px; }
.card h3{ font-family: var(--serif); font-size:28px; margin:0 0 8px; }
.card p{ margin:0; color: var(--muted); line-height:1.6; }

/* Gallery */
.gallery{ display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:18px; margin-top:26px; }
.shot{ margin:0; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border:1px solid rgba(184,184,184,.55); background:#fff; }
.shot img{ height:220px; width:100%; object-fit:cover; transition: transform .25s ease; }
.shot{ transition: box-shadow .25s ease, border-color .25s ease; }
.shot img{ transition: transform .25s ease, filter .25s ease; transform-origin: center center; }
.shot:hover img{ transform: scale(1.04); filter: drop-shadow(0 0 12px rgba(220, 96, 191, 0.9)); }
.center-actions{ margin-top:22px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

/* Testimonials */
.quote .avatar{ width:42px; height:42px; border-radius:999px; display:grid; place-items:center; background: rgba(200,182,226,.18); font-weight:700; margin-bottom:10px; }
.quote h4{ font-family: var(--serif); margin:0 0 10px; font-size:22px; }
.quote p{ color: var(--muted); }

/* CTA */
.cta{ background: #f4bfe5; color:black; padding: 84px 0; }
.cta-inner{ text-align:center; }
.cta h2{ font-family: var(--serif); font-size: clamp(34px, 3.2vw, 56px); margin: 0 0 10px; }
.cta p{ margin:0 auto 22px; max-width:700px; opacity:.95; line-height:1.6; }
.cta-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.cta-actions .btn{ background: #f690de; color: #fff; }
.cta-actions .btn:hover{ border-color: #fff; background: #dea3d1d4; }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; margin-top:26px; }
.contact-card{ background: var(--card); border:1px solid rgba(184,184,184,.55); border-radius: var(--radius); padding:26px; box-shadow: var(--shadow); }
.contact-card h3{ font-family: var(--serif); margin:0 0 14px; font-size:28px; }
.contact-list{ list-style:none; padding:0; margin:0 0 18px; color: var(--muted); line-height:1.8; }
.inline-link{ color: var(--text); text-decoration:none; border-bottom: 1px dashed rgba(184,184,184,.9); }
.inline-link:hover{ border-bottom-color: rgba(200,182,226,.95); }
.contact-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Form */
.form label{ display:block; font-weight:600; margin-bottom:12px; }
.form input, .form textarea{ width:100%; margin-top:8px; padding:12px 12px; border-radius:12px; border: 1px solid rgba(184,184,184,.75); outline:none; font-family: var(--sans); }
.form input:focus, .form textarea:focus{ border-color: rgba(200,182,226,.95); box-shadow: 0 0 0 4px rgba(200,182,226,.18); }
.form-note{ margin: 12px 0 0; color: var(--muted); font-size:14px; }
.form-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }
.tiny{ margin: 12px 0 0; color: var(--muted); font-size: 13px; }

/* Footer */
.footer{ border-top: 1px solid rgba(184,184,184,.55); padding: 26px 0; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.footer p{ margin:0; color: var(--muted); }
.footer-links{ display:flex; gap:10px; align-items:center; }

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .hamburger{ display:block; }
  .navlinks{
    position: absolute;
    left: 0; right: 0;
    top: 68px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(184,184,184,.55);
    padding: 16px 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .navlinks.open{ display:flex; }
  .nav{ position: relative; }
}
