@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Lato:wght@300;400;700&display=swap');

:root {
  --dark-blue: #2c3e50;
  --powder-blue: #a8dadc;
  --light-bg: #f1faee;
  --accent-coral: #FF7D84;
  --text-primary: #2c3e50;
  --white: #ffffff;
  --font-heading: 'Lora', serif;
  --font-body: 'Lato', sans-serif;
  --transparent: rgba(255, 255, 255, 0);
}

body {
  font-family: var(--font-body);
  margin: 0;
  background-color: var(--light-bg);
  color: var(--text-primary);
  scroll-behavior: smooth;
}

.hero {
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: center;
  padding: 3em 1.5em;
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-logo {
  height: 100px;
  width: 100px;
  object-fit: contain;
  border-radius: 22px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
}

.cta-button {
  background-color: var(--accent-coral);
  color: var(--white);
  padding: 0.8em 2em;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

/* NAVIGATION */
.menu-toggle {
  display: none;
  background: var(--accent-coral);
  color: white;
  border: none;
  padding: 0.5em 1em;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  margin: 1em;
  cursor: pointer;
}

.navbar {
  background-color: var(--powder-blue);
  text-align: center;
  padding: 1em;
  position: sticky;
  top: 48px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}

.navbar a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 700px) {
  .menu-toggle {
    display: block;
  }
  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1em 0;
  }
  .navbar.show {
    display: flex;
  }
  .navbar a {
    margin: 0.5em 0;
  }
}

main {
  padding: 2em 1em;
  display: block;
}

.section-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 4em auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.section-wrapper.reverse {
  flex-direction: row-reverse;
}

.section-wrapper img {
  width: 250px;
  height: 250px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.1);
}

.content-box {
  flex: 1;
  max-width: 550px;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

section h2 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.75em;
}

ul {
  padding-left: 1.2em;
  list-style-type: '✓ ';
}

ul li {
  padding-left: 0.5em;
  margin-bottom: 0.7em;
  font-size: 1.1em;
}

blockquote {
  margin-top: 1.5em;
  font-style: italic;
  background: #f8f9fa;
  padding: 1em 1.5em;
  border-left: 5px solid var(--powder-blue);
  border-radius: 0 8px 8px 0;
}

#footer {
  background: var(--white);
  border-radius: 12px;
  padding: 2em;
  max-width: 800px;
  margin: 4em auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

form p {
  margin-bottom: 1.5em;
}

form button {
  background: var(--accent-coral);
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 1em;
  font-size: 1em;
  border-radius: 6px;
  min-width: 200px;
}

footer {
  text-align: center;
  margin-top: 2em;
  padding: 2em 1em;
}

.social {
  margin-bottom: 1.5em;
}

.social a {
  color: var(--text-primary);
  margin: 0 0.75em;
  font-size: 1.8em;
  text-decoration: none;
}

.legal a {
  color: var(--text-secondary);
  text-decoration: none;
}

footer p {
  font-size: 0.9em;
  margin: 0.5em 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-bar {
  position: sticky;
  top: 0;
  background: var(--accent-coral);
  color: white;
  padding: 0.75em 1em;
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  z-index: 9999;
}

.blog-post, .founder-letter, .intro {
  max-width: 700px;
  margin: 0 auto 2.5em auto;
  padding-bottom: 2em;
  border-bottom: 1px solid #e0e0e0;
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-post h3 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  font-size: 1.8rem;
}

.meta, .intro {
  color: #555;
  font-size: 0.9em;
  margin-bottom: 1em;
}

.read-more {
  color: var(--accent-coral);
  text-decoration: none;
  font-weight: bold;
}

.founder-letter {
  line-height: 1.8;
  font-size: 1.1em;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2em auto;
  max-width: 900px;
}

.video-gallery iframe {
  width: 100%;
  border-radius: 8px;
}
/*blog stuff*/
.blog-box {
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
#blog-container {
  margin-bottom: 50px;
}
.blog-content {
  max-height: 100px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.blog-content.expanded {
  max-height: 1000px; /* or whatever you want for full content */
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--accent-coral);
  font-weight: bold;
  cursor: pointer;
  margin: 10px 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}
.blog-image {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
}

