/* ============================================================
   ROOT VARIABLES - edit here to update the whole site
   ============================================================ */
:root {
  /* Brand colors */
  --color-primary:       #12A9B0;
  --color-primary-hover: #12A9B0;

  /* Text */
  --color-text:          #333333;
  --color-text-secondary:#666666;
  --color-text-caption:  #888888;

  /* UI */
  --color-bg:            #ffffff;
  --color-border:        #e8e8e8;
  --color-placeholder:   #d9d9d9;

  /* Fonts */
  --font-brand:  'Caveat', cursive;
  --font-ui:     'Inter', sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  2rem;       /* 32px */
  --text-hero: 2.75rem;    /* 44px - "I'm Namita." and page titles */

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Layout */
  --container-max:     1100px;
  --container-pad:     1.5rem;   /* desktop side padding */
  --container-pad-mob: 1.25rem;  /* mobile side padding */

  /* Navbar */
  --navbar-h: 58px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { transition: all var(--t-fast), transform var(--t-fast); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font-ui); color: var(--color-text); background: var(--color-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
a.accent-color { color: var(--color-primary); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   PAGE SHELL - flex column so footer sticks to bottom
   ============================================================ */
.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-main { flex: 1; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left:  var(--container-pad);
  padding-right: var(--container-pad);
}

/* ============================================================
   SHARED: image placeholder block
   ============================================================ */
.img-placeholder {
  background-color: var(--color-placeholder);
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
}

/* ============================================================
   SHARED: gallery item caption
   ============================================================ */
.item-caption {
  font-size: var(--text-sm);
  color: var(--color-text-caption);
  margin-top: var(--sp-2);
}

/* ============================================================
   SHARED: page-level heading (teal, bold)
   ============================================================ */
.page-title {
  font-family: var(--font-ui);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   SHARED: page intro paragraph
   ============================================================ */
.page-intro {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.75;
  max-width: 700px;
}

/* ============================================================
   MOBILE overrides
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --container-pad: var(--container-pad-mob);
    --text-hero: 2rem;
  }
}

@media (max-width: 480px) {
  :root { --text-hero: 1.75rem; }
}
