/* Base Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.nav-left {
  font-size: 1.2rem;
}

.nav-center {
  display: flex;
  gap: 1.2rem;
}

.nav-center a {
  text-decoration: none;
  color: #111;
}

.nav-right {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .nav-center {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
  }

  .nav-center.show {
    display: flex;
  }

  .nav-right {
    display: block;
  }
}

/* Workshop Intro Section */
.workshop-intro {
  padding: 4rem 1.5rem;
  background-color: #fff;
}

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

.workshop-image {
  flex: 1 1 400px;
  text-align: center;
}

.workshop-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.workshop-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.workshop-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.workshop-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #333;
}

@media (max-width: 768px) {
  .workshop-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Workshop Video Grid */
.videos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.videos-container iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 10px;
}

/* Workshop Blocks */
.workshop-block {
  padding: 3rem 1.5rem;
  background-color: #ffffff;
}

.workshop-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
}

.workshop-wrapper iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}

.workshop-content {
  text-align: center;
  padding: 0 1rem;
}

.workshop-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #7f5aa8;
}

.workshop-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.workshop-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive fix for stacked layout on small screens */
@media (max-width: 900px) {
  .workshop-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .workshop-wrapper iframe {
    height: auto;
  }
}


/* Footer */
.footer {
  background-color: #f6f2fd;
  padding: 3rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left side (brand + contact) */
.footer-left {
  flex: 1 1 300px;
}

.footer-left h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

.contact-list i {
  color: #7f5aa8;
  margin-right: 0.6rem;
  min-width: 18px;
  text-align: center;
}

.contact-list a {
  color: #444;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Right side (policies + socials) */
.footer-right {
  flex: 1 1 300px;
  text-align: right;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.policy-list a {
  color: #444;
  text-decoration: none;
}

.policy-list a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.social-icons a {
  color: #7f5aa8;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #5e3e9c;
}

/* Mobile styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
