/* CSS Variables */
:root {
  --font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Reset and base styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Essential base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Navigation Bar */
.top-nav {
  background-color: #05A678;
  color: white;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-weight: 700;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 64px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
}

.nav-link:hover {
  color: rgb(255, 164, 21);
}

.nav-link.active {
  color: rgb(255, 164, 21);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background-color: #2563eb;
  color: white;
}

.btn-secondary {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
}

.btn-secondary:hover {
  background-color: #e9ecef;
  color: #333;
}

/* Hero Section */
.hero {
  width: 100%;
  max-height: 750px;
  background-image: url('/images/lil-broc-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  text-align: left;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 750px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-family: var(--font-family);
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 32px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
  font-family: var(--font-family);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  background-color: rgb(255, 164, 21);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.hero-btn:hover {
  background-color: rgb(255, 184, 61);
}

/* Content Section */
.content {
  width: 100%;
  height: auto;
  background-color: white;
  color: rgb(51, 51, 51);
  padding: 80px 0;
}

.content-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-family);
}

/* Intro Section */
.intro-section {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 0 100px;
}

.intro-text {
  flex: 0 0 60%;
}

.intro-text p {
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 16px;
  color: rgb(51, 51, 51);
  font-size: 18px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Quote Section */
.quote-section {
  width: 100%;
  margin-bottom: 80px;
}

.quote-block {
  background-color: #A4D362;
  color: white;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  margin: 0;
  font-family: var(--font-family);
}

.quote-text {
  font-size: 1.9em;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quote-author {
  font-size: 1em;
  font-style: normal;
  font-weight: 600;
  display: block;
}

/* Notification Feature Section */
.notification-feature {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}

.notification-container {
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
}

.notification-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.notification-content {
  flex: 0 0 50%;
}

.notification-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
  font-family: var(--font-family);
}

.notification-text {
  font-size: 20px;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  font-family: var(--font-family);
}

/* Story Continuation Section */
.story-continuation {
  margin-bottom: 80px;
  padding: 0 100px;
}

.story-continuation p {
  font-size: 20px;
  line-height: 1.7;
  color: rgb(51, 51, 51);
  font-family: var(--font-family);
  margin: 0;
  text-align: center;
}

/* Section Divider */
.section-divider {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin: 80px 0;
}

/* Tutorial Section */
.tutorial-section {
  margin-bottom: 80px;
}

.tutorial-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.tutorial-block {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tutorial-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
  max-height: 321px;
}

.tutorial-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgb(51, 51, 51);
  font-family: var(--font-family);
}

  .tutorial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    font-family: var(--font-family);
    margin: 0;
  }

/* CTA Section */
.cta-section {
  margin-bottom: 80px;
}

.cta-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.cta-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-logo {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cta-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-text {
  margin-bottom: 32px;
}

.cta-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgb(51, 51, 51);
  font-family: var(--font-family);
  margin-bottom: 20px;
}

.cta-text p:last-child {
  margin-bottom: 0;
}

.cta-cta {
  font-weight: 700;
  font-size: 20px;
  color: rgb(51, 51, 51);
}

.cta-download {
  display: flex;
  justify-content: center;
  width: 100%;
}

  .download-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
  }

/* Page Header and Content Styles */
.page-header {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: rgb(51, 51, 51);
  margin-bottom: 16px;
  font-family: var(--font-family);
}

.page-header p {
  font-size: 18px;
  color: #6c757d;
  font-family: var(--font-family);
}

.page-content {
  padding: 80px 0;
  background-color: white;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-family);
}

.content-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: rgb(51, 51, 51);
  margin: 48px 0 24px 0;
  font-family: var(--font-family);
}

.content-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  color: rgb(51, 51, 51);
  margin: 32px 0 16px 0;
  font-family: var(--font-family);
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(51, 51, 51);
  margin-bottom: 20px;
  font-family: var(--font-family);
}

.content-wrapper ul {
  margin: 20px 0;
  padding-left: 24px;
}

.content-wrapper li {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  margin-bottom: 8px;
  font-family: var(--font-family);
}

.content-wrapper a {
  color: #05A678;
  text-decoration: none;
  transition: color 0.2s ease;
}

.content-wrapper a:hover {
  color: rgb(255, 164, 21);
  text-decoration: underline;
}

.content-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Blog Styles */
.blog-header {
  width: 100%;
  max-height: 500px;
  background-image: url('/images/blog-header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.blog-header .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-header h1 {
  font-size: 64px;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
  font-family: var(--font-family);
}

.blog-posts {
  padding: 48px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.post-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px 8px 0 0;
}

.post-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-title a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
}

.post-title a:hover {
  color: #3b82f6;
}

.post-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.post-meta time {
  margin-right: 5px;
}

.post-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.read-more {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin-top: auto;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #2563eb;
}

/* Blog Post Layout */
/* .blog-post {} */

.post-header {
  background-color: #f8f9fa;
  padding: 48px 0;
  text-align: center;
}

.post-title {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: bold;
  color: rgb(51, 51, 51);
  font-family: var(--font-family);
}

.post-meta {
  color: #666;
  font-size: 16px;
  font-family: var(--font-family);
}

.post-meta time {
  margin-right: 5px;
}

.post-author {
  color: #666;
  font-family: var(--font-family);
}

.post-content {
  padding: 48px 0;
}

.post-content h1,
.post-content h2,
.post-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.post-content ul,
.post-content ol {
  margin-left: 32px;
  margin-bottom: 16px;
}

.post-footer {
  padding: 32px 0;
  border-top: 1px solid #e1e5e9;
  text-align: center;
}

.back-to-blog {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-blog:hover {
  color: #2563eb;
}

/* Support Styles */
.support-header {
  background-color: #f8f9fa;
  padding: 48px 0;
  text-align: center;
}

.support-content {
  padding: 48px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.support-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.support-card h3 {
  color: #3b82f6;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
}

.support-card p {
  margin-bottom: 24px;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.contact-info ul {
  list-style: none;
  margin-top: 16px;
}

.contact-info li {
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background-color: #05A678;
  color: white;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.footer-container {
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-family);
  font-size: 14px;
}

.site-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: rgb(255, 164, 21);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }
  
  .logo-image {
    height: 48px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-container {
    min-height: 500px;
    padding: 0 15px;
  }
  
  .content-container {
    padding: 0 15px;
  }
  
  .intro-section {
    flex-direction: column;
    gap: 40px;
  }
  
  .intro-text {
    flex: 0 0 100%;
  }
  
  .intro-image {
    flex: 0 0 100%;
  }
  
  .quote-block {
    padding: 40px 20px;
  }
  
  .quote-text {
    font-size: 1.3em;
  }
  
  .notification-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .notification-image {
    flex: 0 0 100%;
    order: 1;
  }
  
  .notification-content {
    flex: 0 0 100%;
    order: 2;
  }
  
  .tutorial-container {
    flex-direction: column;
    gap: 60px;
  }
  
  .tutorial-block {
    flex: none;
  }
  
  .cta-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .cta-image {
    flex: none;
    order: 1;
  }
  
  .cta-content {
    flex: none;
    order: 2;
    align-items: center;
    text-align: center;
  }
  
  .cta-text {
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .features-grid,
  .posts-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 15px;
  }

  .blog-header {
    max-height: 400px;
    padding: 60px 0;
  }
  
  .blog-header .container {
    padding: 0 15px;
  }
  
  .blog-header h1 {
    font-size: 40px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .post-card-image {
    height: 180px;
  }
  
  .post-card-content {
    padding: 20px;
  }
}

/* No posts message */
.no-posts {
  text-align: center;
  padding: 48px 0;
  color: #666;
} 