/* Durga Award Page - Prestigious Ceremony Design */

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

/* Global */
.min-vh-100 {
  min-height: 100vh;
}

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

/* Background Elements */
.award-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-star {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.08;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,5 63,38 98,38 70,60 80,95 50,75 20,95 30,60 2,38 37,38" fill="%23f26522"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.star-1 {
  top: 12%;
  left: 8%;
  animation: floatStar 8s ease-in-out infinite;
}

.star-2 {
  top: 55%;
  right: 12%;
  animation: floatStar 10s ease-in-out infinite 2s;
}

.star-3 {
  bottom: 18%;
  left: 22%;
  animation: floatStar 12s ease-in-out infinite 4s;
}

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

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

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

.award-circles .circle-1 {
  width: 300px;
  height: 300px;
  border: 2px solid var(--primary-color);
  animation: breatheAward 6s ease-in-out infinite;
}

.award-circles .circle-2 {
  width: 500px;
  height: 500px;
  border: 2px solid var(--secondary-color);
  animation: breatheAward 8s ease-in-out infinite 1s;
}

.award-circles .circle-3 {
  width: 700px;
  height: 700px;
  border: 2px solid var(--primary-color);
  animation: breatheAward 10s ease-in-out infinite 2s;
}

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

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

.award-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);
}

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

.hero-title-award {
  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;
}

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

.award-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);
}

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

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

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

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

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

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

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

.stat-item-award {
  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);
}

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

.stat-icon-award {
  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);
}

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

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

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

.award-showcase {
  position: relative;
}

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

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

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

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

.showcase-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;
}

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

.showcase-detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.mini-showcase {
  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;
  border: 3px solid rgba(242, 101, 34, 0.4);
}

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

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

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

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

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

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

.highlight-item {
  background: var(--background-white, #fff);
  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);
}

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

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

.section-badge-award {
  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;
}

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

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

/* Gallery Section */
.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: 991px) {
  .hero-title-award {
    font-size: 2.2rem;
  }

  .hero-stats-award {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .award-hero-section {
    padding: 40px 0;
  }

  .hero-title-award {
    font-size: 1.8rem;
  }

  .award-date-banner {
    flex-direction: column;
    text-align: center;
  }

  .award-date-banner .date-info {
    border-right: none;
    padding-right: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    justify-content: center;
  }

  .hero-stats-award {
    grid-template-columns: 1fr;
  }

  .award-gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .floating-showcases {
    display: none;
  }

  .award-highlights {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
  }
}
