/* === Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&family=Barlow+Condensed:wght@300;400;600&display=swap');

/* Reset basic body style */
body {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
}

/* Global typography */
h1, h2, h3, h4, h5, h6,
.category-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.5px;
}

p, li {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  color: #222;
}

/* === Header === */
.site-header {
  display: flex;
  justify-content: flex-start; /* align left since nav is gone */
  align-items: center;
  padding: 16px 24px;
}

/* Logo bigger, no rounded corners */
.site-header .brand img {
  width: 140px; /* bigger */
  height: auto;
  border-radius: 0;
}

/* Brand name text */
.brand-name {
  font-family: "Barlow", sans-serif; 
  font-weight: 600;
  font-size: 1.8em;
  margin-left: 16px;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Force brand link (logo + name) to appear black, not purple/blue */
a.brand {
  color: #111;
  text-decoration: none;
}

a.brand:hover {
  color: #333; /* optional subtle hover effect */
}

/* Remove nav entirely (you can delete this if you bring nav back later) */
.site-nav {
  display: none;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #666;
}

/* Homepage hero */
.home .hero {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: start;
  padding: 40px 24px 80px;
}

.home .intro {
  margin-top: 14vh;    /* lower on the page */
  margin-left: 8vw;    /* pushed to the left */
  text-align: left;
  max-width: 720px;
}

/* Tagline under name */
.tagline {
  font-size: 1.2em;
  font-weight: 400;
  color: #222;
  margin-bottom: 20px;
  text-align: left;
}

/* Categories: smaller, vertical list */
.category-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px; /* space between */
  margin-top: 12px;
}

.category-links a {
  font-size: 1em;
  text-decoration: none;
  font-weight: 400;
}

.category-links a:hover {
  text-decoration: underline;
  color: #444;
}

/* Sections (works, sound, contact) */
.page.container {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
}

.page h1 {
  margin-bottom: 20px;
  font-weight: 600;
}

.page p.muted {
  color: #666;
  font-size: 0.95em;
}

/* Video embeds */
.video-grid {
  display: grid;
  gap: 24px;
}

.video iframe {
  width: 100%;
  height: 360px;
  border: none;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .home .intro {
    margin-top: 12vh;
    margin-left: 6vw;
  }

  .video iframe {
    height: 220px;
  }
}
