/* ===============================
   🔥 GLOBAL STYLES
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #ff7f27;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===============================
   🔥 NAVBAR
   =============================== */
.navbar {
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo a {
  color: #ffae42;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 1em;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffae42;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1em;
  }

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

  .hamburger {
    display: block;
  }
}

/* ===============================
   🔥 HERO SECTION
   =============================== */
.hero {
  position: relative;
  background: url("images/phoenix-hero.jpg") no-repeat center center / contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 3em 1em;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.hero h1, .hero p, .hero button {
  position: relative;
  z-index: 2;
}

/* Hero Title */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 0 0 25px rgba(255, 120, 0, 0.7);
  animation: flameText 3s infinite ease-in-out;
  color: #fff;
}

/* Hero Subtitle */
.hero p {
  font-size: 1.2rem;
  margin-top: 0.8em;
  color: #ffdfc9;
  animation: pulse 2.5s infinite alternate;
}

/* Enter Button */
.hero button {
  margin-top: 1.2em;
  background: linear-gradient(90deg, #ff4500, #ffae42);
  border: none;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 100, 0, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.8);
}

/* ===============================
   🔥 MAIN CONTENT
   =============================== */
section {
  padding: 3em 1.5em;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #ffae42;
}

section p {
  font-size: 1.05rem;
  margin-bottom: 1.2em;
  color: #ddd;
}

/* Learn More Link */
section a.learn-btn {
  display: inline-block;
  background: #ff7f27;
  color: #fff;
  padding: 0.7em 1.3em;
  border-radius: 4px;
  margin-top: 1em;
  transition: all 0.3s ease;
}

section a.learn-btn:hover {
  background: #ffae42;
  box-shadow: 0 0 15px rgba(255, 150, 0, 0.5);
}

/* ===============================
   🔥 FOOTER
   =============================== */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 69, 0, 0.3), transparent 70%);
  animation: slowGlow 10s infinite alternate;
}

/* ===============================
   🔥 ANIMATIONS
   =============================== */
@keyframes flameText {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.7), 0 0 25px rgba(255, 0, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 170, 0, 1), 0 0 40px rgba(255, 50, 0, 0.9);
  }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

@keyframes slowGlow {
  0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  100% { transform: scale(1.3) rotate(360deg); opacity: 0.7; }
}
/* ===============================
   ✨ Fade-in Animation
   =============================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   ✨ Button Glow on Click
   =============================== */
.glow {
  box-shadow: 0 0 25px 8px rgba(255, 120, 0, 0.6);
  transition: all 0.4s ease;
}






/* Override: Show only one phoenix image, width 360px */
.hero {
  background: none; /* remove background image duplication */
  height: auto;
  padding: 3em 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-img {
  width: 350px;
  max-width: 90vw;
  border-radius: 1em;
  box-shadow: 0 4px 20px rgba(255, 100, 0, 0.4);
  margin-bottom: 1.5em;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.7);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 100, 0, 0.8);
}

.tagline {
  font-size: 1.1rem;
  margin-top: 0.8em;
  color: #ffd9b3;
  font-weight: 400;
}

.enter-btn {
  margin-top: 1em;
  background: linear-gradient(90deg, #ff4500, #ffae42);
  border: none;
  padding: 0.7em 1.4em;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 100, 0, 0.6);
  transition: all 0.3s ease;
}

.enter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
}




/* ===============================
   🔥 PHOENIX PAGE
   =============================== */
.phoenix-hero {
  position: relative;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.phoenix-hero img {
  width: 350px;
  border-radius: 1em;
  box-shadow: 0 0 25px rgba(255, 100, 0, 0.5);
  animation: glowFlame 5s infinite alternate;
}

.phoenix-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  z-index: 1;
}

.phoenix-hero .hero-text {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.phoenix-hero h1 {
  font-size: 2.5rem;
  color: #ffae42;
  text-shadow: 0 0 20px rgba(255, 100, 0, 0.8);
}

.phoenix-hero .tagline {
  color: #ffe6cc;
  font-size: 1.2rem;
  margin-top: 0.5em;
}

.cycle {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 100, 0, 0.2);
  border-bottom: 1px solid rgba(255, 100, 0, 0.2);
  padding: 3em 1.5em;
}

.cycle h2 {
  color: #ff7f27;
  margin-bottom: 1em;
}

.cycle p {
  color: #ddd;
  max-width: 800px;
  margin: 0 auto 1.5em auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cycle-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
  margin-bottom: 1.2em;
  transition: transform 0.3s ease;
}

.cycle-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 150, 0, 0.6);
}

@keyframes glowFlame {
  0% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.5); }
  100% { box-shadow: 0 0 40px rgba(255, 80, 0, 0.9); }
}


.play-sound {
  display: inline-block;
  background: linear-gradient(90deg, #ff4500, #ffae42);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.2em;
  margin-top: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 120, 0, 0.5);
}

.play-sound:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 150, 0, 0.7);
}

.play-sound.active {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 180, 0, 1);
}








/* ==============================================
   🔥 ABOUT PAGE HERO - The Soul of Ashes Style
   ============================================== */

.about-hero {
  position: relative;
  text-align: center;
  background: radial-gradient(circle at center, #1a0f0a 10%, #000 90%);
  padding: 3em 1.5em;
  overflow: hidden;
}

.about-hero .about-img {
  width: 320px;
  max-width: 85vw;
  height: auto;
  border-radius: 50%;
  border: 4px solid rgba(255, 90, 0, 0.7);
  box-shadow: 
    0 0 25px rgba(255, 100, 0, 0.6),
    0 0 50px rgba(255, 150, 0, 0.4),
    0 0 80px rgba(255, 200, 0, 0.2);
  animation: emberGlow 4s ease-in-out infinite alternate;
  z-index: 2;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 100, 0, 0.15), transparent 70%);
  filter: blur(60px);
  animation: soulWave 12s linear infinite;
  z-index: 1;
}

.about-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffae42;
  margin-top: 1em;
  text-shadow: 0 0 25px rgba(255, 90, 0, 0.8);
  letter-spacing: 1px;
  animation: flicker 3s infinite ease-in-out;
  position: relative;
  z-index: 3;
}

.about-hero .tagline {
  font-size: 1.1rem;
  color: #ffd9a3;
  margin-top: 0.5em;
  text-shadow: 0 0 12px rgba(255, 150, 0, 0.6);
  z-index: 3;
}

/* 🔥 Animations */
@keyframes emberGlow {
  0% {
    box-shadow: 
      0 0 15px rgba(255, 90, 0, 0.4),
      0 0 30px rgba(255, 130, 0, 0.3),
      0 0 45px rgba(255, 180, 0, 0.2);
    transform: scale(1);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(255, 100, 0, 0.7),
      0 0 70px rgba(255, 160, 0, 0.6),
      0 0 100px rgba(255, 200, 0, 0.4);
    transform: scale(1.03);
  }
}

@keyframes soulWave {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.1); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 25px rgba(255, 120, 0, 0.9); }
  50% { opacity: 0.9; text-shadow: 0 0 15px rgba(255, 80, 0, 0.6); }
}
/* ===============================================
   🔥 WHATSAPP SECTION STYLING
   =============================================== */
.whatsapp-section {
  text-align: center;
  padding: 3em 1.5em;
  background: linear-gradient(180deg, #0a0a0a, #1a0a00);
  border-top: 2px solid rgba(255, 100, 0, 0.4);
  color: #ffdfc9;
}

.whatsapp-section h2 {
  color: #ffae42;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
  margin-bottom: 0.5em;
}

.whatsapp-section p {
  color: #ddd;
  margin-bottom: 1em;
  font-size: 1.1rem;
}

.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: #fff;
  padding: 0.8em 1.6em;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
}
/* ===============================
   🔥 CONTACT FORM - PHOENIX EDITION
   =============================== */
.contact-section {
  max-width: 600px;
  margin: 3em auto;
  padding: 2.5em;
  background: linear-gradient(180deg, #0a0a0a, #1a0a00);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 120, 0, 0.3);
  box-shadow: 0 0 25px rgba(255, 80, 0, 0.25);
}

/* 🕊️ Flickering Ember Frame */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  border: 2px solid rgba(255, 90, 0, 0.4);
  box-shadow: 
    0 0 15px rgba(255, 100, 0, 0.6),
    inset 0 0 25px rgba(255, 120, 0, 0.4);
  animation: emberPulse 4s infinite alternate ease-in-out;
  z-index: 1;
}

/* Flickering animation */
@keyframes emberPulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 80, 0, 0.4),
                inset 0 0 25px rgba(255, 100, 0, 0.3);
    opacity: 0.8;
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.8),
                inset 0 0 40px rgba(255, 150, 0, 0.5);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 18px rgba(255, 90, 0, 0.5),
                inset 0 0 20px rgba(255, 110, 0, 0.4);
    opacity: 0.9;
  }
}

/* ===============================
   🔥 FORM ELEMENTS
   =============================== */
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 600;
  color: #ffae42;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(255, 90, 0, 0.4);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9em 1em;
  margin-bottom: 1.3em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focus glow */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff7f27;
  box-shadow: 0 0 15px rgba(255, 100, 0, 0.7);
}

/* Placeholder */
::placeholder {
  color: #aaa;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* 🔥 Send Button */
.send-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #ff4500, #ffae42);
  border: none;
  padding: 1em;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 80, 0, 0.4);
}

.send-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.9);
  background: linear-gradient(90deg, #ff6a00, #ffc15e);
}

/* 🔥 Responsive */
@media (max-width: 480px) {
  .contact-section {
    padding: 1.8em;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
  }
  .send-btn {
    font-size: 0.95rem;
  }
}