:root {
  /* Brick-inspired theme: deep brick, dark brown, gold, green accent */
  --bg: #1a0705;         /* deep dark brick / brown */
  --bg-alt: #240b08;     /* slightly lighter for alt sections */
  --card-bg: #2d0f0a;    /* card background like rich brick */
  --accent: #f6c453;     /* warm gold like your logo text */
  --accent-soft: rgba(246, 196, 83, 0.16);
  --text: #fdfaf5;       /* soft off-white, easier on eyes than pure white */
  --muted: #c7b29a;      /* muted beige text */
  --border-subtle: #4a2017;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 20px 40px rgba(10, 0, 0, 0.65);
  --max-width: 1120px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #0033ff; /* TEMP TEST – bright blue */
  color: var(--text);
  line-height: 1.6;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;

  /* Brick-inspired background: deep brick to dark brown */
  background:
    linear-gradient(to bottom, #5a1e11 0%, #3b140b 50%, #200b05 100%);

  color: var(--text);
  line-height: 1.6;
}

}

/* Utility */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 120px; /* Reduce height so only one brick row appears */

  background-image: url("brick-header-clean.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat-x;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48); /* Dark overlay for menu visibility */
  z-index: -1;
}

.header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* Logo image */
.site-logo {
  height: 130px;   /* desktop size */
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img-link {
  display: flex;
  align-items: center;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0,0,0,0.95);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--text);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, #1d2437, transparent);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.7);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========== Hero ========== */
.hero {
  padding: 5rem 0 4rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin: 0 0 0.7rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
}

.accent {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 0.8rem;
}

.hero-note {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Hero image */
.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-avatar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid gold;
  background: #000; /* solid black to increase contrast */
  box-shadow: 0 16px 32px rgba(0,0,0,0.7);
}

/* Header logo */
.site-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hero logo container (big circle) */
.hero-avatar {
  width: 360px;      /* big, clear logo */
  height: 360px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
}

/* Hero logo image */
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}

.hero-image-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.primary-btn {
  background: linear-gradient(135deg, #f6c453, #e79b32);
  color: #1a0705;
  box-shadow: 0 18px 34px rgba(246, 196, 83, 0.4);
}

.primary-btn:hover {
  box-shadow: 0 26px 46px rgba(246, 196, 83, 0.6);

}

.secondary-btn {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.6);
}

.secondary-btn:hover {
  background: rgba(15, 23, 42, 1);
}

.full-width {
  width: 100%;
}

/* ========== Sections ========== */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #020617);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 32rem;
}

/* ========== Layout Helpers ========== */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* ========== Cards & Lists ========== */
.card {
  background: linear-gradient(
    145deg,
    rgba(61, 19, 12, 0.98),
    rgba(41, 10, 6, 0.96)
  );
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 32px rgba(5, 0, 0, 0.7);
}

}

.about-cards {
  display: grid;
  gap: 1.2rem;
}

.tag-list,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-size: 0.85rem;
  margin: 0 0.4rem 0.4rem 0;
}

.bullet-list li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* Contact / grid reuse */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  color: var(--muted);
}

.contact-info li {
  margin-bottom: 0.4rem;
}

/* Form */
.contact-form {
  margin-top: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea,
select {
  border-radius: 10px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 0.7rem 0.8rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.4);
  background: #020617;
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.5rem 0 2rem;
  background: #020617;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--text);
}

/* ========== Responsive ========== */

@media (max-width: 900px) {
  .hero-content,
  .two-column,
  .grid-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-content {
    gap: 2.3rem;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav-list {
    position: absolute;
    inset: 80px 1.5rem auto;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0.9rem 1rem;
    gap: 0.4rem;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.9);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .site-logo {
    height: 100px; /* mobile size */
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-avatar {
    width: 220px;
    height: 220px;
  }

  .section {
    padding: 3rem 0;
  }
/* ===== Animations ===== */

@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to logo */
.float-logo .hero-avatar {
  animation: floatSoft 5s ease-in-out infinite;
}

/* Scroll reveal base state */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========== Simple Hero Animations ========== */

/* Logo gentle floating */
@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Fade up on load */
@keyframes fadeUpOnce {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left side text fades up on page load */
.hero-text {
  opacity: 0;
  animation: fadeUpOnce 0.8s ease-out forwards;
  animation-delay: 0.1s;
}

/* Right side logo fades up and then floats */
.float-logo {
  opacity: 0;
  animation: fadeUpOnce 0.9s ease-out forwards;
}

.float-logo .hero-avatar {
  animation: floatSoft 5s ease-in-out infinite;
}
/* ===== TEST ANIMATION – HERO LOGO FLOAT ===== */

@keyframes floatSoftTest {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Make the hero circle always float */
.hero-avatar {
  animation: floatSoftTest 4s ease-in-out infinite;
}

