/* International Womens Day Page */

/* CSS Variables - Site Theme Colors */
:root {
  --primary-color: #f26522;
  --secondary-color: #0d0e14;
  --accent-red: #e74c3c;
  --accent-green: #27ae60;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #666666;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --shadow-soft: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-deep: rgba(0, 0, 0, 0.16);
  --gradient-primary: linear-gradient(135deg, #f26522 0%, #ff8c42 100%);
  --gradient-secondary: linear-gradient(135deg, #0d0e14 0%, #1a1b2e 100%);
}

.min-vh-100 {
  min-height: 100vh;
}

/* Hero Section */
.iwd-hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e1 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.iwd-zen-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.iwd-floating-lotus {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20 C30 30, 30 70, 50 80 C70 70, 70 30, 50 20 Z" fill="%23f26522"/><path d="M20 50 C30 30, 70 30, 80 50 C70 70, 30 70, 20 50 Z" fill="%230d0e14"/></svg>');
}

.iwd-lotus-1 {
  top: 15%;
  left: 10%;
  animation: iwdFloatLotus 8s ease-in-out infinite;
}
.iwd-lotus-2 {
  top: 60%;
  right: 15%;
  animation: iwdFloatLotus 10s ease-in-out infinite 2s;
}
.iwd-lotus-3 {
  bottom: 20%;
  left: 20%;
  animation: iwdFloatLotus 12s ease-in-out infinite 4s;
}

@keyframes iwdFloatLotus {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-15px) rotate(5deg) scale(1.1); }
  50% { transform: translateY(-30px) rotate(0deg) scale(1); }
  75% { transform: translateY(-15px) rotate(-5deg) scale(1.1); }
}

.iwd-meditation-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.iwd-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.iwd-circle-1 {
  width: 300px;
  height: 300px;
  border: 2px solid var(--primary-color);
  animation: iwdBreathe 6s ease-in-out infinite;
}
.iwd-circle-2 {
  width: 500px;
  height: 500px;
  border: 2px solid var(--secondary-color);
  animation: iwdBreathe 8s ease-in-out infinite 1s;
}
.iwd-circle-3 {
  width: 700px;
  height: 700px;
  border: 2px solid var(--accent-red);
  animation: iwdBreathe 10s ease-in-out infinite 2s;
}

@keyframes iwdBreathe {
  0%, 100% { transform: scale(1); opacity: 0.05; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

/* Hero Content */
.iwd-hero-content {
  position: relative;
  z-index: 10;
}

.iwd-spiritual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
  backdrop-filter: blur(10px);
}

.iwd-spiritual-badge i {
  font-size: 1.2rem;
  color: var(--text-light);
}

.iwd-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.iwd-text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.iwd-date-banner {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px var(--shadow-soft);
  border: 1px solid rgba(242, 101, 34, 0.2);
}

.iwd-date-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 20px;
  border-right: 2px solid var(--primary-color);
}

.iwd-date-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.iwd-date-text span {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.iwd-event-theme h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.iwd-event-theme p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.iwd-hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 35px;
}

/* Hero Stats */
.iwd-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.iwd-stat-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(242, 101, 34, 0.1);
}

.iwd-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.iwd-stat-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

.iwd-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.iwd-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero Visual */
.iwd-hero-visual {
  position: relative;
  z-index: 10;
}

.iwd-pose-showcase {
  position: relative;
}

.iwd-pose-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.iwd-main-pose {
  max-width: 500px;
  margin: 0 auto;
}

.iwd-pose-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.iwd-pose-card:hover .iwd-pose-image {
  transform: scale(1.05);
}

.iwd-pose-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  padding: 20px;
  text-align: center;
}

.iwd-pose-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.iwd-pose-benefit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.iwd-floating-poses {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iwd-mini-pose {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-medium);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.iwd-mini-pose img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iwd-mini-pose:hover {
  transform: scale(1.1);
  opacity: 1;
}

.iwd-pose-1 {
  top: 20%;
  right: -40px;
  animation: iwdFloat 4s ease-in-out infinite;
}

.iwd-pose-2 {
  bottom: 30%;
  left: -40px;
  animation: iwdFloat 6s ease-in-out infinite 2s;
}

@keyframes iwdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.iwd-wellness-badges {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.iwd-badge-item {
  background: var(--background-white);
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px var(--shadow-soft);
  color: var(--text-muted);
}

.iwd-badge-item i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Section Headers */
.iwd-section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.iwd-section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.iwd-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.iwd-section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery Section */
.iwd-gallery-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--background-light) 0%, rgba(242, 101, 34, 0.02) 100%);
  position: relative;
}

/* Responsive */
@media (max-width: 991.98px) {
  .iwd-hero-section {
    padding: 40px 0;
  }
  .iwd-hero-title {
    font-size: 2.2rem;
  }
  .iwd-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .iwd-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575.98px) {
  .iwd-hero-stats {
    grid-template-columns: 1fr;
  }
  .iwd-gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .iwd-date-banner {
    flex-direction: column;
    text-align: center;
  }
  .iwd-date-info {
    border-right: none;
    border-bottom: 2px solid var(--primary-color);
    padding-right: 0;
    padding-bottom: 15px;
  }
}
