/*
Theme Name: VAS – Virtual Assist Solutions
Theme URI: https://virtualassistsolutions.co.za
Author: Dikeledi Khoeli
Author URI: https://virtualassistsolutions.co.za
Description: A warm, professional theme for Virtual Assist Solutions — built around cream, burgundy, and gold tones to reflect academic excellence and reliable virtual support services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vas-theme
Tags: business, services, one-page, virtual-assistant
*/

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --cream:       #FAF3EC;
  --cream-mid:   #F2E8DC;
  --burgundy:    #6B1D3A;
  --burgundy-dk: #4E1229;
  --gold:        #B8963E;
  --gold-lt:     #D4AE5A;
  --charcoal:    #2C2C2C;
  --muted:       #7A6A5A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;

  --shadow-card: 0 4px 24px rgba(107,29,58,0.10);
  --shadow-deep: 0 8px 40px rgba(107,29,58,0.18);
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--burgundy); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--burgundy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

p { margin-bottom: 1rem; color: var(--charcoal); }

.script-label {
  font-family: var(--font-script);
  color: var(--burgundy);
  font-size: 1.5rem;
  display: block;
  margin-bottom: .25rem;
}

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ─────────────────────────────────────────────
   DECORATIVE DIVIDER
───────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1.5rem;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.divider span {
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .2em;
}

/* ─────────────────────────────────────────────
   SECTION BADGE / PILL HEADER
───────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .5rem 1.8rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .28s ease;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,150,62,.35);
}

/* ─────────────────────────────────────────────
   SITE HEADER / NAV
───────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--cream);
  border-bottom: 1px solid rgba(107,29,58,.12);
  box-shadow: 0 2px 12px rgba(107,29,58,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: .15rem;
}
.main-nav ul {
  display: flex;
  gap: 2.2rem;
}
.main-nav a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.main-nav a:hover,
.main-nav a:focus { color: var(--burgundy); }
.main-nav a:hover::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: .3s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--cream) 55%, var(--cream-mid) 100%);
  padding-block: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(184,150,62,.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(107,29,58,.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { animation: fadeUp .8s ease both; }
.hero-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: var(--gold);
}
.hero-title .greeting {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--burgundy);
  display: block;
  font-weight: 400;
  margin-bottom: .3rem;
}
.hero-title .name {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--burgundy);
  display: block;
}
.hero-divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  margin-block: 1.5rem;
  border-radius: 2px;
}
.hero-bio {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-bio strong { color: var(--burgundy); font-weight: 700; }
.hero-bio .highlight { color: var(--burgundy); font-weight: 700; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image */
.hero-image-wrap {
  position: relative;
  animation: fadeLeft .9s .2s ease both;
}
.hero-photo-frame {
  position: relative;
  max-width: 400px;
  margin-inline: auto;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50%;
  opacity: .45;
}
.hero-photo-frame img {
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-deep);
}
.hero-badge-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--burgundy);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  text-align: center;
}
.hero-badge-card .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  display: block;
}
.hero-badge-card .lbl {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

/* ─────────────────────────────────────────────
   MISSION SECTION
───────────────────────────────────────────── */
#mission {
  background: var(--burgundy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#mission::before {
  content: '❝';
  position: absolute;
  top: -20px; left: 40px;
  font-size: 12rem;
  color: rgba(255,255,255,.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.mission-label {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-lt);
  margin-bottom: .5rem;
}
.mission-label-wrap svg {
  color: var(--gold-lt);
  margin-bottom: .5rem;
}
.mission-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  font-style: italic;
  line-height: 1.8;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.mission-text strong { color: var(--gold-lt); font-style: normal; }

/* ─────────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────────── */
#services {
  background: var(--cream);
}
.services-header { text-align: center; margin-bottom: 3rem; }

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(107,29,58,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--cream-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.service-card h3 {
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  color: var(--burgundy);
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card ul li {
  font-size: .9rem;
  color: var(--muted);
  padding: .3rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.service-card ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: .5rem;
  margin-top: .45rem;
  flex-shrink: 0;
}
.service-wide {
  grid-column: 1 / -1;
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────── */
#why {
  background: var(--cream-mid);
}
.why-header { text-align: center; margin-bottom: 3rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.why-item:hover { transform: translateY(-4px); }
.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.why-item h4 {
  color: var(--burgundy);
  margin-bottom: .5rem;
}
.why-item p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
#about {
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .15;
  z-index: -1;
}
.about-content .eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.credential-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--cream-mid);
  border: 1px solid rgba(107,29,58,.15);
  color: var(--burgundy);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 30px;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
#testimonials {
  background: var(--burgundy);
  color: #fff;
}
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header h2 { color: #fff; }
.testimonials-header .divider::before,
.testimonials-header .divider::after { background: rgba(255,255,255,.25); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background .3s;
}
.testimonial-card:hover { background: rgba(255,255,255,.13); }
.stars { color: var(--gold-lt); margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-card blockquote {
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}
.author-role { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────────
   CONTACT / CTA SECTION
───────────────────────────────────────────── */
#contact {
  background: var(--cream-mid);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-heading .script-label { font-size: 2rem; }
.contact-heading h2 { margin-bottom: 1rem; }
.contact-heading p { max-width: 440px; color: var(--muted); }

.contact-methods { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
}
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-deep);
}
.contact-form-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(107,29,58,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer {
  background: var(--burgundy-dk);
  color: rgba(255,255,255,.75);
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo .logo-main { color: #fff; font-size: 1.6rem; }
.footer-logo .logo-sub  { color: rgba(255,255,255,.5); }
.footer-copy { font-size: .82rem; }
.footer-heart { color: var(--gold-lt); }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .contact-inner,
  .mission-inner { grid-template-columns: 1fr; }

  .hero-image-wrap { order: -1; }
  .hero-photo-frame { max-width: 280px; }
  .hero-badge-card  { left: -.5rem; bottom: -1rem; }

  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
  }
  .main-nav.open ul { flex-direction: column; align-items: center; gap: 1.5rem; }
  .main-nav.open a { font-size: 1.3rem; }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 1.5rem; }
}
