:root {
  --red: #b30000;
  --gray: #f4f4f4;
  --dark: #222;
  --accent: #ffcc00;
  --font: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--gray);
  color: var(--dark);
  line-height: 1.6;
}

.heading-section-embed {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeInDown 0.8s ease-out;
}

.heading-section-embed h1 {
  margin: 0;
  font-size: 2.5rem;
}

.slideshow-container-embed {
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slide-embed {
  display: none;
  position: relative;
}

.slide-embed.active {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.slide-embed img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.slide-overlay-embed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.slide-title-embed {
  font-size: 1.5rem;
  font-weight: bold;
}

.slide-description-embed {
  font-size: 1rem;
  font-weight: 300;
}

/* Text and Buttons Section Styles */
.text-buttons-section-embed {
    text-align: center;
    padding: 2.5rem 1.25rem 3rem;
    background: 
        radial-gradient(1200px 800px at 10% -10%, #ffe1e1 0%, transparent 60%),
        radial-gradient(1000px 1000px at 110% 10%, #fff4d1 0%, transparent 60%),
        linear-gradient(135deg, #fff8f6 0%, #ffe9e9 50%, #fffdf8 100%);
    font-family: 'Inter', sans-serif;
}

.text-buttons-section-embed p {
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.description-text {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.tagline {
    font-size: 2rem;
    font-weight: 1200;
    color: #8b1538;
    margin: 5 rem 0 rem;
}

.cta-buttons-text {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-btn-text {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary-text {
    background: linear-gradient(45deg, #ff6b6b, #8b1538);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.25);
}

.cta-primary-text:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(255, 107, 107, 0.35);
    text-decoration: none;
    color: white;
}

.cta-secondary-text {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f6 100%);
    color: #8b1538;
    border: 2px solid #f9c846;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-secondary-text:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(180deg, #fffdf8 0%, #fff0f5 100%);
    text-decoration: none;
    color: #8b1538;
}

.footer-embed {
  text-align: center;
  padding: 1rem;
  background: var(--dark);
  color: white;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
