﻿/* assets/styles.css — Amaryllis (Soft Pastel)
   FINAL VERSION - version 1.0.3
   - Header/nav ALWAYS fixed
   - No sticky anywhere
   - No duplicate body rules
*/

/* ================= VARIABLES ================= */
:root {
  --bg: #ffffff;
  --text: #122026;
  --muted: #5a6b73;
  --alt: #fff7fb;
  --stroke: rgba(16, 24, 40, .10);
  --accent: #ff4d9d;
  --accent2: #22c1ff;
  --shadow: 0 18px 50px rgba(16, 24, 40, .08);
  --radius: 20px;
  --container: 1120px;
  --header-h: 76px;
}

/* ================= RESET ================= */
* { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
html { scroll-padding-top: var(--header-h); }

/* ================= BODY ================= */
body {
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(255, 77, 157, .16), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(34, 193, 255, .16), transparent 55%),
    var(--bg);
  line-height: 1.5;
  padding-top: var(--header-h);
}

a { color: inherit; text-decoration: none }

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

/* ================= HEADER / NAV ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 999999;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text strong { display: block }
.brand-text small { color: var(--muted) }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

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

/* ================= BUTTONS ================= */
.btn {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 77, 157, .18);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--text);
  box-shadow: none;
}

/* ================= ABOUT GRID (FIXED) ================= */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 and 1/3 split */
  gap: 24px;
  align-items: stretch; /* Makes both cards equal height */
}

.about-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  text-align: center;
}

.about-social h3 { margin-bottom: 12px; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-social {
  display: block;
  padding: 10px;
  border-radius: 12px; /* Slightly tighter radius for buttons */
  border: 1px solid var(--stroke);
  background: var(--alt);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-social:hover {
  background: #fff;
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* ================= HERO ================= */
.hero { padding: 64px 0 34px }
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
}

.hero-copy h1 {
  font-size: 44px;
  margin: 0 0 12px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions { display: flex; gap: 12px }

.hero-badges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stroke);
  font-size: 13px;
}

/* ================= CARDS & SECTIONS ================= */
.section { padding: 64px 0 }
.section.alt { background: var(--alt) }

.section-head h2 {
  font-size: 30px;
  margin: 0 0 6px;
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .05);
}

/* ================= VIDEO ================= */
.media {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #fff;
}

.media iframe { width: 100%; height: 100%; border: 0 }

/* ================= MAP / CONTACT ================= */
.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.map {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.map iframe { width: 100%; height: 100%; border: 0 }
.contact-card{
  background: rgba(255,255,255,.86);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.form{display:grid; gap:12px; margin-top:14px}
label{display:grid; gap:6px; font-weight:700; font-size:13px}
input,textarea{
  border-radius:14px;
  border:1px solid var(--stroke);
  padding:12px 12px;
  font:inherit;
  background: rgba(16,24,40,.02);
}
input:focus,textarea:focus{outline:2px solid rgba(34,193,255,.25); border-color: rgba(34,193,255,.35)}
.muted{color:var(--muted)}


/* ================= FOOTER ================= */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; } /* Stack About section on mobile */
  .split { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 640px) {
  .hero-copy h1 { font-size: 36px }
}