/* Bakery Wakery Academy — Dark theme, red/green accents (reference style) */

:root {
  --dark-bg: #130f2a;
  --dark-navy: #1a1642;
  --dark-purple: #2d2654;
  --purple-band: #3d3563;
  --red: #e63946;
  --red-dark: #c1121f;
  --green: #25d366;
  --green-check: #22c55e;
  --white: #fff;
  --off-white: #f8f6f2;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --btn-dark: #0d0d1a;
  --font: 'Inter', -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--btn-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header — dark */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark-bg);
  padding: 0.75rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
}
.btn-cta-header {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Buttons — dark blue/black, white text, arrow */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background: var(--btn-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover,
.btn:focus {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-dark { background: var(--btn-dark); color: var(--white); }
.btn-center { display: block; margin-left: auto; margin-right: auto; }
.btn-left { display: inline-block; }

/* Hero — dark background */
.hero {
  background: var(--dark-bg);
  padding: 2.5rem 0 3.5rem;
  color: var(--white);
}
.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.25;
}
.highlight-red {
  color: var(--red);
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-two-col {
    grid-template-columns: 1fr;
  }
}

/* Left card — light background */
.hero-card {
  background: var(--off-white);
  color: var(--text-dark);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.card-instructor {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.card-images {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.card-img {
  height: 120px;
  border-radius: 8px;
  background: #e8e4e0;
}
.card-img-round {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  align-self: center;
}
.card-flavours {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.card-flavours li {
  margin-bottom: 0.5rem;
}
.check {
  color: var(--green-check);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* Hero right — features + countdown */
.hero-right {
  color: var(--white);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.features-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.features-check li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.features-check .check { color: var(--green); }

/* Countdown — red boxes */
.countdown {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.countdown-red .countdown-item {
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  min-width: 70px;
}
.countdown-red .countdown-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}
.countdown-red .countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
}
.countdown-inline {
  justify-content: flex-start;
}

/* Placeholder images */
.placeholder-img {
  background: linear-gradient(135deg, #ddd 0%, #e8e4e0 100%);
}

/* Certificate section — white */
.certificate-section {
  padding: 3rem 0;
  background: var(--white);
  text-align: center;
}
.section-heading {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.section-heading-dark {
  color: var(--text-dark);
}
.cert-circle {
  position: relative;
  display: inline-block;
  padding: 0 0.25rem;
}
.cert-circle::after {
  content: '';
  position: absolute;
  inset: -2px -4px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.certificate-mockup {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  padding: 2rem;
  background: var(--off-white);
  border: 3px solid var(--red);
  border-radius: 8px;
  text-align: center;
}
.cert-inner {
  color: var(--text-dark);
}
.cert-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 0.5rem;
}
.cert-presented, .cert-desc, .cert-sincerely {
  font-size: 0.9rem;
  margin: 0.25rem 0;
}
.cert-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin: 0.5rem 0;
}
.impact-statement {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
}
.impact-divider {
  color: var(--text-muted);
  margin: 0 0.5rem;
}
.certificate-section .btn {
  margin-top: 0.5rem;
}

/* Flavours — dark navy, two columns, green checkmarks */
.flavours-dark {
  background: var(--dark-navy);
  padding: 2rem 0;
  color: var(--white);
}
.flavours-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--white);
}
.flavours-heading-purple {
  background: var(--purple-band);
  padding: 1rem;
  margin: 0;
}
.flavours-bombolonis .flavours-dark {
  padding-top: 1.5rem;
}
.flavour-two-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  max-width: 560px;
  margin: 0 auto;
}
.flavour-two-col li {
  display: flex;
  align-items: center;
}
.flavour-two-col .check {
  color: var(--green);
  margin-right: 0.5rem;
}
.flavours-dark .btn-center {
  margin-top: 1.5rem;
}

/* What you get — white, values in red */
.what-you-get {
  padding: 3rem 0;
  background: var(--white);
  text-align: center;
}
.what-you-get .btn-center {
  margin-bottom: 1rem;
}
.what-you-get .section-heading {
  margin-top: 1rem;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 480px;
  text-align: left;
}
.value-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}
.value-red {
  color: var(--red);
  font-weight: 600;
}
.pricing-block {
  margin-bottom: 1rem;
}
.value-line {
  margin: 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.value-now {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: var(--text-dark);
}

/* Why US — red banner with wavy underline */
.why-us {
  padding: 0 0 2.5rem;
}
.section-banner {
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  padding: 1rem;
  margin: 0;
  color: var(--white);
}
.section-banner-red {
  background: var(--red);
  border-bottom: 3px solid rgba(255,255,255,0.4);
  position: relative;
}
.section-banner-red::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}
.why-content {
  padding-top: 2rem;
  text-align: center;
}
.why-text {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}
.why-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.why-img {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8e4e0 0%, #ddd 100%);
  border: 2px solid rgba(230, 57, 70, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Testimonials — red banner + chat bubbles */
.testimonials {
  padding: 0 0 2.5rem;
  background: var(--white);
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.testimonial-bubble {
  padding: 1.25rem;
  background: #e8f5e9;
  border-radius: 16px;
  border-top-left-radius: 4px;
  position: relative;
  color: var(--text-dark);
}
.testimonial-bubble-alt {
  background: #e3f2fd;
}
.testimonial-bubble p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* About — two columns */
.about {
  padding: 3rem 0;
  background: var(--white);
}
.about .section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-two-col {
    grid-template-columns: 1fr;
  }
}
.about-text p {
  margin: 0 0 1rem;
  color: var(--text-dark);
  font-size: 1rem;
}
.about-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8e4e0 0%, #ddd 100%);
}
.about-side .countdown-inline {
  margin: 0;
}

/* Enroll band — dark purple */
.enroll-band {
  background: var(--dark-purple);
  padding: 2rem;
  text-align: center;
}
.enroll-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* Footer — deep purple */
.footer {
  background: var(--dark-purple);
  padding: 2.5rem 0;
  color: var(--white);
}
.footer .container {
  max-width: 720px;
  text-align: center;
}
.disclaimer {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 1.5rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-dot {
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
}
.copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.05);
}

/* Notification toast */
.notification-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  max-width: 320px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  z-index: 35;
}
.notification-toast .check {
  color: var(--green);
  flex-shrink: 0;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 30;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--dark-navy);
  color: var(--white);
}
