body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #f9f9f9;
}






header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #222;
  padding: 10px 20px;
}
header .logo {
  height: 50px;      /* controls the logo size */
  width: auto;       /* maintain aspect ratio */
}


header nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}


h1, h2, p {
  margin: 20px 0;
}



form input {
  padding: 10px;
  margin: 5px;
  width: 200px;
}

form button {
  padding: 10px 20px;
  background: #2196f3;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}



/* Product Card */
.product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  margin: 30px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image {
  width: 200px;
  height: auto;
  border-radius: 4px;
  margin-right: 20px;
}

.product-details {
  flex: 1;
}

.product-title {
  font-size: 1.8rem;
  margin: 0 0 10px 0;
}

.product-description {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #b12704; /* Amazon-style red price */
}

.buy-button {
  display: inline-block;
  padding: 12px 25px;
  background: #ffa41c; /* Amazon-style orange */
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.buy-button:hover {
  background: #ff8f00;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    text-align: center;
  }

  .product-image {
    margin: 0 0 20px 0;
  }
}




main {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}



.cta-button {
  display: inline-block;
  margin: 15px 0;
  padding: 12px 25px;
  background-color: #ffa41c;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #ff8f00;
}

iframe {
  margin-top: 20px;
  border-radius: 8px;
  max-width: 100%;
}


.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  margin-bottom: 10px;
  font-weight: bold;
}

.social-links .social-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.subscription form {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}

.subscription input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}

.subscription button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #ffa41c;
  color: #000;
  font-weight: bold;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.subscription button:hover {
  background-color: #ff8f00;
}


/* -------------------------------------- */
/*     MOBILE RESPONSIVE FIXES            */
/* -------------------------------------- */
@media (max-width: 768px) {

  /* Header should stack instead of being side-by-side */
  header {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  header nav {
    margin-top: 10px;
  }

  header nav a {
    display: block;
    margin: 8px 0;
    font-size: 18px;
  }

  /* Make logo smaller on mobile */
  header .logo {
    height: 40px;
  }

  /* Subscription form should be vertical on mobile */
  .subscription form {
    flex-direction: column;
    width: 100%;
  }

  .subscription input[type="email"] {
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
  }

  .subscription button {
    border-radius: 4px;
    width: 100%;
  }

  /* Center social links */
  .social-links {
    align-items: center;
  }

  .social-links a {
    font-size: 16px;
  }

  /* Make iframe truly responsive */
  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  /* Improve spacing on mobile */
  main {
    padding: 10px;
  }

  h1, h2, p {
    margin: 15px 0;
  }

  /* Product card mobile fix (already added but improved) */
  .product-card {
    flex-direction: column;
    text-align: center;
  }

  .product-image {
    margin: 0 0 15px 0;
    width: 100%;
    max-width: 300px;
  }
}

iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

/* LIVE CLASS SECTION */
#live-class {
  margin: 50px auto;
  padding: 30px 20px;
  max-width: 700px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

#live-class h2 {
  margin-bottom: 15px;
}

.class-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.class-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.class-card p {
  margin: 8px 0;
}

.cta-text {
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  color: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.contact-btn.whatsapp {
  background: #25D366;
}

.contact-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

/* Mobile polish */
@media (max-width: 768px) {
  #live-class {
    margin: 30px 10px;
    padding: 20px;
  }

  .class-card {
    text-align: center;
  }
}


/* GLOBAL SECTIONS */
main section {
  margin: 50px auto;
  max-width: 700px;
  padding: 0 15px;
}

main h2 {
  margin-bottom: 15px;
}

/* HERO */
.hero {
  text-align: center;
}

.hero-text {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* CARD SYSTEM */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.cta-button:hover {
  opacity: 0.9;
}

/* VIDEO RESPONSIVE */
.video-card iframe {
  width: 100%;
  height: 315px;
  border-radius: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-card iframe {
    height: 220px;
  }
}

.seo-text {
  max-width: 700px;
  margin: 30px auto;
  font-size: 0.95rem;
  color: #444;
}


.not-found {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.not-found h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.not-found-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.not-found-actions {
  margin-top: 25px;
}

.not-found-actions .cta-button {
  margin: 10px;
}

.cta-button.secondary {
  background-color: #ddd;
  color: #000;
}

.weekly-update {
  max-width: 900px;
  margin: 20px auto 30px auto;
  padding: 12px 18px;
  background: #fff8e1;
  border-left: 5px solid #ffa41c;
  font-size: 0.95rem;
  color: #333;
  border-radius: 4px;
}

.weekly-update strong {
  margin-right: 8px;
}


.update-text {
  display: inline-block;
  animation: slideText 3s linear infinite;
}

@keyframes slideText {
  0% { transform: translateX(0); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.social-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 30px auto;
}

.social-tile {
  text-decoration: none;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #222;
  font-weight: 600;
}

.social-tile img {
  width: 40px;
  height: 40px;
  object-fit: contain; /* 🔑 magic line */
  margin-bottom: 10px;
}


.social-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Platform accents (subtle, professional) */
.social-tile.instagram { border-top: 4px solid #E1306C; }
.social-tile.whatsapp  { border-top: 4px solid #25D366; }
.social-tile.youtube   { border-top: 4px solid #FF0000; }

/* Mobile */
@media (max-width: 600px) {
  .social-tiles {
    grid-template-columns: 1fr;
  }
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}






