/* Root colors (from Lovable → Tailwind → converted to CSS) */
:root {
  --primary: hsl(142, 71%, 45%);
  --secondary: hsl(45, 93%, 54%);
  --muted: hsl(220, 9%, 46%);
  --light-bg: hsl(140, 25%, 96%);
  --gradient-start: hsl(25, 95%, 73%);
  --gradient-end: hsl(45, 93%, 54%);
  --text-gradient-start: hsl(142, 71%, 45%);
  --text-gradient-end: hsl(45, 93%, 54%);
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: hsl(220, 14%, 28%);
}
/* Fixed Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

.nav-buttons a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
  color: #605e5e;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-buttons a:hover {
  color: #80f198;
}
/* Buttons */
.btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.hero-text .btn-row {
  display: flex;
  justify-content: center; /* center both buttons together */
  align-items: center;
  gap: 40px; /* space between buttons */
  margin-top: 20px;
}



/* Base button */
.btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

/* Large button */
.btn.large {
  padding: 14px 24px;
  font-size: 17px;
}

/* Primary Button */
.btn.primary {
  background: hsl(142, 71%, 40%);
  color: #fff;
}

/* Hover for primary */
.btn.primary:hover {
  background: hsl(142, 71%, 35%);
}

/* Secondary Button */
.btn.secondary {
  border: 2px solid hsl(142, 71%, 40%);
  background: hsl(142, 71%, 40%);
  color: #fff;
}

/* Hover for secondary */
.btn.secondary:hover {
  background: hsl(142, 71%, 40%);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: 140px 0 100px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Hero Grid: 2 columns (text left, image right) */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 40px;
  align-items: center; /* vertically align image with text */
}
/* Hero Grid: full width for text */
.hero .grid {
  display: block; /* make hero text span full width */
}


/* Hero Text */
.hero-text h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text p {
  margin: 20px 0;
  font-size: 30px;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.large {
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 60px;
}

@media(min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.info-box {
  margin-top: 40px;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 16px;
  font-size: 18px;
}

.video-section {
  background: hsl(140, 25%, 96%);
  padding: 60px 0;
}

.video-box {
  background: #eaeaea;
   padding: 10px;  
  border-radius: 20px;
}

.video-title {
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--text-gradient-start), var(--text-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Video inside video section */
.promo-video {
  width: 60%;
  height: 600px;          /* Adjust height if needed: 250 / 300 / 350 */
  border-radius: 20px;
  margin: 30px auto 0;    /* centers video */
  display: block;
  object-fit: cover;      /* keeps video clean inside the box */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(143, 94%, 57%), hsla(115, 93%, 59%, 0.1));
}

blockquote {
  font-size: 32px;
  font-style: italic;
  color: hsl(220, 14%, 28%);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--text-gradient-start), var(--text-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Footer Section */
.footer {
  background: hsl(220, 14%, 95%);
  padding: 40px 20px 30px; /* reduced top/bottom padding */
  color: hsl(220, 14%, 28%);
  font-size: 16px;
}

.footer-container {
  max-width: 900px; /* reduced container width */
  margin: auto;
}

.footer h3 {
  font-size: 22px; /* smaller heading */
  font-weight: 700;
  margin-bottom: 25px; /* reduced space below heading */
}

/* Logo + Title Layout */
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 12px; /* smaller gap */
  margin-bottom: 30px; /* reduced space below */
}

.footer-logo {
  width: 40px; /* smaller logo */
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; /* slightly smaller gap between columns */
  margin-bottom: 30px; /* reduced bottom margin */
}

.footer-column h4 {
  font-size: 18px; /* slightly smaller */
  font-weight: 600;
  margin-bottom: 12px;
}

/* Links styling */
.footer-column a {
  display: block;
  text-decoration: none;
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

/* Plain text styling */
.footer-column p {
  display: block;
  font-size: 16px; /* match link size */
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
}

/* Footer copyright */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Social icons in one line */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  display: block;
}
