/* Fonts and global */
body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  line-height: 1.6;
}

a {
  color: #ff6f61;
  text-decoration: none;
}

h1, h2 {
  font-weight: 600;
}

/* Hero section */
.hero {
  background: url('your-banner.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 1rem;
}

.tagline {
  font-size: 1.25rem;
  margin: 1rem 0;
}

.cta-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #ff6f61;
  border-radius: 999px;
  color: #ff6f61;
  transition: all 0.2s ease;
}

.cta-buttons .btn:hover {
  background: #ff6f61;
  color: #000;
}

.btn.alt {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.alt:hover {
  background: #fff;
  color: #000;
}

/* Media section */
.media-section {
  padding: 4rem 2rem;
  background: #111;
  text-align: center;
}

.media-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.media-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  border: none;
}

/* About + Portfolio */
.info-section, .cards-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

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

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Footer / Contact */
footer {
  padding: 4rem 2rem;
  background: #000;
  text-align: center;
}

.social-links a {
  margin: 0 0.75rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #ff6f61;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .hero-content {
    padding: 1rem;
  }

  .media-wrapper iframe {
    height: 250px;
  }
}

.headshot-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.headshot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff6f61;
  box-shadow: 0 0 20px rgba(255, 111, 97, 0.4);
}

.now-section {
  background: #0d0d0d;
  padding: 3rem 2rem;
  text-align: center;
  color: #eee;
}

.now-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}


:root {
  --bg: #0f0f0f;
  --text: #ffffff;
  --accent: #ff6f61;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* LIGHT THEME OVERRIDE */
body.light-theme {
  --bg: #fefefe;
  --text: #222;
  --accent: #e63946;
}

.light-theme .card {
  background: rgba(0, 0, 0, 0.05);
  border-color: #ccc;
}

.light-theme a {
  color: var(--accent);
}

