/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #F7A7A2;
  --secondary-bg: #fafafa;
  --text-dark: #000000;
  --text-light: #404040;
  --accent-teal: #5b827d;
  --border-light: #d6d6d6;
  --white: #ffffff;
}

body {
  font-family: 'Lato', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #FFFFFF;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--text-dark);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* Header / Navigation */
header {
  background-color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  font-family: 'lulo-clean-w01-one-bold', 'Lato', sans-serif;
  letter-spacing: 2px;
  color: var(--text-dark);
}

/* Main Container - Full width for edge-to-edge sections */
main {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  background-color: var(--primary-bg);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-family: 'lulo-clean-w01-one-bold', 'Lato', sans-serif;
  font-size: 64px;
  font-weight: bold;
  color: var(--text-dark);
  letter-spacing: 3px;
  margin: 30px 0 50px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-style: italic;
}

/* Buttons Section */
.button-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--text-dark);
  background-color: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  transition: all 0.3s ease;
  font-family: 'Lato', 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.btn-primary {
  background-color: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
}

/* Content Sections - Reset for full-bleed */
section {
  margin: 0;
  padding: 0;
  border-top: none;
}

h2 {
  font-family: 'lulo-clean-w01-one-bold', 'Lato', sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
  border-radius: 4px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Bio Section */
.bio-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 30px auto;
}

.bio-content a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.bio-content a:hover {
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: #FFFFFF;
  border-top: none;
  padding: 30px 20px;
  margin-top: 0;
  text-align: center;
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 0;
  background-color: transparent;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
  background-color: transparent;
}

.social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0);
  display: block;
}

footer p {
  font-size: 12px;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .button-group {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }

  .social-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  nav {
    padding: 0 15px;
  }

  .site-title {
    font-size: 18px;
  }

  main {
    padding: 0 15px;
  }

  h2 {
    font-size: 24px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }
}
