@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Lora:ital,wght@0,400;1,500&display=swap');
:root {
  --forest-green: #2d5a27;
  --leaf-lime: #a4c639;
  --compost-brown: #4b3a3c;
  --sky-blue: #ffffff;
  --ocean-blue: #005a4f;
  --off-white: #f8f7f2;
  --text-dark: #2c2c2c;
  --card-shadow: 0 10px 25px -5px rgba(75, 54, 33, 0.1), 0 8px 10px -6px rgba(75, 54, 33, 0.1);
  --sage-green: #d4e0d4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--sage-green);
  background-image: linear-gradient(to bottom, var(--sage-green) 0%, var(--sky-blue) 100%);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
}
#app {
  max-width: 600px;
  width: 100%;
  padding: 3rem 1.5rem;
  text-align: center;
  overflow-x: hidden;
  animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
header img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}
header img:hover { transform: scale(1.05) rotate(2deg); }
h1 { 
  font-family: 'Lora', serif;
  color: var(--forest-green); 
  margin-top: 1.5rem;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}
p.subtitle { 
  font-family: 'Lora', serif;
  color: var(--ocean-blue); 
  font-style: italic; 
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.section-title {
  text-align: center;
  border-left: 4px solid var(--forest-green);
  border-right: 4px solid var(--forest-green);
  padding: 0 1rem;
  margin: 3rem 0 1.5rem 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: var(--forest-green);
}
/* Video Card Styles */
.video-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
}
.video-card.featured-highlight {
  border: 2px solid var(--leaf-lime);
  transform: scale(1.02);
}
.video-card:hover { 
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(75, 54, 33, 0.15);
}
.video-thumbnail {
  width: 100%;
  max-height: 200px;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.featured-highlight .video-thumbnail {
  max-height: 280px;
}
.video-info {
  padding: 0.75rem 1rem;
}
.video-title {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
}
/* Mobile Optimization */
@media (max-width: 480px) {
  #app {
    padding: 2rem 1rem;
  }
  .video-card {
    margin-bottom: 1.25rem;
  }
  .video-thumbnail {
    width: 100%;
    max-height: 160px;
    margin: 0 auto;
    border-radius: 12px;
  }
  .featured-highlight .video-thumbnail {
    max-height: 200px;
  }
  .product-link {
    padding: 1rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  #app {
    padding: 2.5rem 1.25rem;
  }
}
@media (max-width: 375px) {
  h1 {
    font-size: 1.8rem;
  }
  .section-title {
    margin: 2rem 0 1.5rem 0;
  }
  #app {
    padding: 1.5rem 0.75rem;
  }
}
/* Product Link Styles */
.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--forest-green);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid transparent;
}
.product-name {
    flex-grow: 1;
    text-align: left;
}
.product-link::after {
  content: '→';
  font-size: 1.2rem;
  color: var(--ocean-blue);
  transition: transform 0.3s ease;
}
.product-link:hover {
  border-color: var(--forest-green);
  transform: translateX(5px);
  background-color: var(--sky-blue);
}
.product-link:hover::after { transform: translateX(5px); }
.video-card:focus-visible {
  outline: 2px solid #005a4f;
  outline-offset: 2px;
}
.product-link:focus-visible {
  outline: 2px solid #005a4f;
  outline-offset: 2px;
}
