/* =============================================
   SOUNDWAVE AWARDS 2025 — style.css
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #e63946;
  --primary-glow: rgba(230, 57, 70, 0.45);
  --gold: #f4c430;
  --gold-glow: rgba(244, 196, 48, 0.35);
  --bg-dark: #07080d;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f0;
  --text-muted: rgba(240, 240, 240, 0.55);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #fff;
  color: #2f2f2f;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Background Canvas ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Particles Overlay ---------- */
.particles-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.logo {
  border-radius: 12px;
  padding: 15px 10px;
  max-width: 70%;
}

.particle {
  position: absolute;
  bottom: -60px;
  opacity: 0;
  animation: floatUp linear infinite;
  color: var(--primary);
  font-size: 1rem;
  text-shadow: 0 0 8px currentColor;
  user-select: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-110vh) rotate(360deg) scale(1.1);
    opacity: 0;
  }
}

/* ---------- All sections above canvas ---------- */
nav,
section,
footer {
  position: relative;
  z-index: 10;
}

/* ---------- Glassmorphic Navbar ---------- */
.glass-nav {
  background: rgba(7, 8, 13, 1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: background var(--transition);
}

.glass-nav.scrolled {
  background: rgba(7, 8, 13, 0.92);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #d82b38 !important;
  text-shadow: 0 0 14px var(--gold-glow);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.brand-logo i {
  margin-right: 6px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.4rem 0.75rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.btn-nominate {
  background: linear-gradient(135deg, var(--primary), #c1121f);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  font-weight: 600;
  font-size: 110%;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px var(--primary-glow);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-nominate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px var(--primary-glow);
}

.navbar-toggler {
  border-color: var(--border) !important;
  filter: invert(1);
}

/* ---------- Hero Section ---------- */
.hero-section {
  min-height: 100vh;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section-inner {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: fadeDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title .highlight {
  color: var(--primary);
  text-shadow: 0 0 40px var(--primary-glow), 0 4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 1.2rem auto 0;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-year {
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  z-index: -1;
  white-space: nowrap;
  animation: yearPulse 6s ease-in-out infinite;
}

@keyframes yearPulse {
  0%,
  100% {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.06);
  }
  50% {
    -webkit-text-stroke-color: rgba(230, 57, 70, 0.12);
  }
}

/* Hero Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), #c1121f);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 28px var(--primary-glow);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--primary-glow);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 8px 28px var(--gold-glow);
  transform: translateY(-3px);
}

/* Countdown */
.countdown-wrap {
  color: var(--text-muted);
}

.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.count-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  min-width: 72px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.count-box span {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px var(--gold-glow);
}

.count-box small {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.count-sep {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  align-self: center;
  margin-top: -6px;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold-glow);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(14px);
    opacity: 0.4;
  }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.stat-item {
  padding: 0.5rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 24px var(--gold-glow);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section-block {
  padding: 60px 0;
  background: #ffffffcc;
}

.section-dark {
  background: rgba(0, 0, 0, 0.3);
}

.section-gradient {
  background: #f6f6f6d6;
}

.section-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #000;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: #000;
  font-size: 1.05rem;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- About Cards ---------- */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.about-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #c1121f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.about-card h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Nominee Cards ---------- */
.nominee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.nominee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.nominee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(230, 57, 70, 0.25);
}

.nominee-card:hover::before {
  opacity: 1;
}

.nominee-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
}

.nominee-avatar::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(135deg, var(--primary), var(--gold)) border-box;
}

.nominee-body {
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
}

.nominee-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.nominee-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nominee-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nominee-city i {
  color: var(--gold);
  margin-right: 3px;
}

/* ---------- Jury Cards ---------- */
.jury-card {
  background: rgb(236 236 236);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.jury-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  border-color: rgba(244, 196, 48, 0.3);
}

.jury-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  position: relative;
}

.jury-avatar img {
  border-radius: 100%;
}

.nav-link {
  font-size: 110%;
  color: #fff !important;
}

.jury-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #252525;
  margin-bottom: 4px;
}

.jury-title {
  font-size: 0.82rem;
  color: #474747;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jury-org {
  font-size: 0.85rem;
  color: rgb(0 0 0);
}

/* ---------- Nomination Form ---------- */
.nominate-form .glass-input {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgb(90 90 90 / 41%);
  border-radius: 10px;
  color: #000;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nominate-form .glass-input:focus {
  background: rgba(255, 255, 255, 1);
  border-color: rgb(90 90 90 / 41%);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
  color: #000;
  outline: none;
}
.thead-dark {
  background: #583638;
}

.nominate-form .glass-input::placeholder {
  color: #000;
}

.nominate-form select.glass-input option {
  background: #1a1a2e;
  color: var(--text-primary);
}

.form-success-msg {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ---------- Sponsors ---------- */
.sponsor-logo-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all var(--transition);
  min-width: 150px;
  text-align: center;
}

.sponsor-logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border-color: rgba(244, 196, 48, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sponsor-logo-item i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(0, 0, 0, 1);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.site-footer {
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 18px var(--primary-glow);
}

.footer-hr {
  border-color: var(--border);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Animations ---------- */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- AOS-style scroll reveal (custom) ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] {
  transition-delay: 0.1s;
}
[data-aos][data-aos-delay="200"] {
  transition-delay: 0.2s;
}
[data-aos][data-aos-delay="300"] {
  transition-delay: 0.3s;
}
[data-aos][data-aos-delay="400"] {
  transition-delay: 0.4s;
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="fade-down"] {
  transform: translateY(-24px);
}
[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 90px;
  }
  .count-box {
    min-width: 58px;
    padding: 0.6rem 0.8rem;
  }
  .count-box span {
    font-size: 1.6rem;
  }
  .count-sep {
    font-size: 1.6rem;
  }
  .section-block {
    padding: 70px 0;
  }
  .hero-title {
    letter-spacing: -1px;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    padding: 0.75rem 1.6rem;
    font-size: 0.92rem;
  }
  .countdown-boxes {
    flex-wrap: wrap;
    gap: 0.6rem !important;
  }
}

@media (max-width: 480px) {
  .count-sep {
    display: none;
  }
}

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.contact-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #ffffffbd;
}

.contact-section:before,
.contact-section:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact-section:before {
  width: 180px;
  height: 180px;
  top: 40px;
  left: 40px;
}

.contact-section:after {
  width: 220px;
  height: 220px;
  right: 60px;
  bottom: 120px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 50px;
}
.icon-box {
  color: #df313e;
  margin-right: 15px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-row span {
  color: #e5e5e5;
}

.sponsor-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 70px 0 50px;
}

.form-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0;
}

.person-card {
  position: relative;
  padding-left: 15px;
}

.person-name {
  color: #d32532;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.person-card p {
  margin-bottom: 6px;
  color: #161616;
}

.person-card i {
  margin-right: 8px;
}

.corner-line {
  position: absolute;
  right: 10px;
  bottom: -20px;
  width: 35px;
  height: 35px;
  border-right: 2px solid #dc2f3c;
  border-bottom: 2px solid #dc2f3c;
}

.corner-line:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #de313e;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  bottom: -6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.footer-links a:hover {
  color: #f4c430;
}

.innerpage-box .small-head {
  font-size: 18px;
  color: #da2d3a;
  font-weight: 600;
}

.table .thead-dark th {
  color: #fff;
}
.table > :not(caption) > * > * {
  background-color: transparent;
}
label {
  font-weight: 500;
}

.guid{font-size: 1.05rem; line-height: 1.8;}
.title-name{    color: #d32532;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;}
.nav-right{display: flex; flex-direction: row; list-style: none; margin: 0;}
.jury-col{
    width:20%;
}

@media (max-width:991.98px){
    .jury-col{
        width:33.333%;
    }
}

@media (max-width:767.98px){
    .jury-col{
        width:50%;
    }
    .nav-right {position: absolute;
    right: 10px;
    top: 10px;}
}