:root {
  --veg-primary: #e21f26;
  --veg-dark: #333;
  --veg-light: #f7f7f7;
  --veg-gray: #666;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: var(--veg-dark);
}

a {
  text-decoration: none;
}

/* Hero Section */
.veg-hero {
  background: var(--veg-light);
  padding: 4rem 1rem;
}

.veg-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Text Content */
.veg-hero-content {
  flex: 1 1 320px;
}

.veg-hero-headline {
  font-family: 'Amatic SC', cursive;
  font-size: 4rem;
  line-height: 1.2;
  color: var(--veg-dark);
  margin-bottom: 1rem;
}

.veg-hero-subtext {
  color: var(--veg-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.veg-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.veg-btn-primary {
  background: var(--veg-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.veg-btn-primary:hover {
  background: #c21722;
}

.veg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--veg-primary);
  color: var(--veg-dark);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.veg-btn-outline:hover {
  background: var(--veg-primary);
  color: #fff;
}

.veg-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--veg-primary);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: border-color 0.3s, color 0.3s;
}

.veg-btn-outline:hover .veg-play-icon {
  border-color: #fff;
  color: #fff;
}

/* Image Section */
.veg-hero-image {
  flex: 1 1 320px;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .veg-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .veg-hero-headline {
    font-size: 3rem;
  }

  .veg-hero-buttons {
    justify-content: center;
  }
}

/* Video Modal Styles */
.veg-video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.veg-video-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 800px;
}

.veg-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

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

.veg-close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
