/* Why Wysteria Section */
.why-section {
  min-height: 100vh;
  width: 100vw;
  background-color: #000000;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgba(139, 69, 19, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(139, 69, 19, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.why-content {
  padding: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Corner Ornaments */
.why-section .corner-ornament {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.4;
  z-index: 1;
}

.why-section .corner-ornament::before,
.why-section .corner-ornament::after {
  content: "";
  position: absolute;
  background: rgba(139, 69, 19, 0.3);
}

.why-section .top-left {
  top: 2rem;
  left: 2rem;
}

.why-section .top-left::before {
  width: 60px;
  height: 2px;
  top: 0;
  left: 0;
}

.why-section .top-left::after {
  width: 2px;
  height: 60px;
  top: 0;
  left: 0;
}

.why-section .top-right {
  top: 2rem;
  right: 2rem;
}

.why-section .top-right::before {
  width: 60px;
  height: 2px;
  top: 0;
  right: 0;
}

.why-section .top-right::after {
  width: 2px;
  height: 60px;
  top: 0;
  right: 0;
}

.why-section .bottom-left {
  bottom: 2rem;
  left: 2rem;
}

.why-section .bottom-left::before {
  width: 60px;
  height: 2px;
  bottom: 0;
  left: 0;
}

.why-section .bottom-left::after {
  width: 2px;
  height: 60px;
  bottom: 0;
  left: 0;
}

.why-section .bottom-right {
  bottom: 2rem;
  right: 2rem;
}

.why-section .bottom-right::before {
  width: 60px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.why-section .bottom-right::after {
  width: 2px;
  height: 60px;
  bottom: 0;
  right: 0;
}

/* Main Content */
.why-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Header */
.why-header {
  margin-bottom: 3rem;
  position: relative;
}

.why-header .section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(139, 69, 19, 0.2);
  filter: contrast(1.2);
}

.why-header .title-underline {
  width: 200px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 69, 19, 0.6) 20%,
    rgba(139, 69, 19, 0.6) 80%,
    transparent 100%
  );
  margin: 0 auto;
  position: relative;
}

.why-header .title-underline::before,
.why-header .title-underline::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(139, 69, 19, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.why-header .title-underline::before {
  left: -4px;
}

.why-header .title-underline::after {
  right: -4px;
}

/* Text Content */
.why-text {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.why-paragraph {
  font-family: "Crimson Text", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.9;
  color: #d4d4d4;
  margin-bottom: 1.8rem;
  text-align: center;
}

.why-paragraph.emphasis {
  font-style: italic;
  color: #e8e8e8;
  font-weight: 600;
}

.why-closing {
  font-family: "Crimson Text", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.9;
  color: #e8e8e8;
  text-align: center;
  margin-top: 2.5rem;
  font-style: italic;
}

.why-closing strong {
  color: #c9a876;
  font-weight: 700;
  font-style: normal;
}

.highlight {
  color: #c9a876;
  font-weight: 600;
  position: relative;
}

/* Discord CTA */
.discord-cta {
  text-align: center;
  margin-top: 4rem;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.2) 0%,
    rgba(88, 101, 242, 0.1) 100%
  );
  border: 2px solid rgba(88, 101, 242, 0.5);
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 1.2rem 3rem;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.2);
}

.discord-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 101, 242, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.discord-btn:hover::before {
  left: 100%;
}

.discord-btn:hover {
  border-color: rgba(88, 101, 242, 0.8);
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.3) 0%,
    rgba(88, 101, 242, 0.15) 100%
  );
  box-shadow:
    0 6px 30px rgba(88, 101, 242, 0.4),
    0 0 40px rgba(88, 101, 242, 0.2);
  transform: translateY(-3px);
}

.discord-btn:active {
  transform: translateY(-1px);
}

.discord-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.discord-btn:hover .discord-icon {
  transform: scale(1.1);
}

.btn-arrow {
  font-size: 1.5em;
  opacity: 0.8;
  transition: transform 0.3s;
}

.discord-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.discord-note {
  font-family: "Crimson Text", serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #b8b8b8;
  font-style: italic;
  margin-top: 1rem;
}

/* Decorative Ink Splashes */
.why-section .ink-splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.why-section .ink-splash-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 69, 19, 0.4) 0%,
    transparent 70%
  );
  top: -100px;
  left: -150px;
}

.why-section .ink-splash-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(139, 69, 19, 0.3) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
}

/* Particles */
.why-section .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.why-section .particles::before,
.why-section .particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.why-section .particles::before {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.why-section .particles::after {
  top: 60%;
  right: 25%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10%,
  90% {
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -100px);
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-content {
    padding: 2rem 1.5rem;
  }

  .why-section .corner-ornament {
    width: 60px;
    height: 60px;
  }

  .why-section .corner-ornament::before {
    width: 40px !important;
  }

  .why-section .corner-ornament::after {
    height: 40px !important;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 3rem 0;
  }

  .why-header {
    margin-bottom: 2rem;
  }

  .why-header .section-title {
    letter-spacing: 0.2em;
  }

  .why-text {
    margin-bottom: 2rem;
  }

  .why-paragraph {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .why-closing {
    text-align: left;
    margin-top: 2rem;
  }

  .discord-cta {
    margin-top: 3rem;
  }

  .discord-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }

  .why-section .corner-ornament {
    width: 40px;
    height: 40px;
  }

  .why-section .top-left,
  .why-section .top-right {
    top: 1rem;
  }

  .why-section .top-left,
  .why-section .bottom-left {
    left: 1rem;
  }

  .why-section .top-right,
  .why-section .bottom-right {
    right: 1rem;
  }

  .why-section .bottom-left,
  .why-section .bottom-right {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .why-main {
    padding: 1.5rem;
  }

  .why-header .title-underline {
    width: 150px;
  }

  .discord-icon {
    width: 24px;
    height: 24px;
  }

  .discord-btn {
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
}
