/* Base Colors for Elvyn.world */
:root {
  --e-world-heading: #ffdca8; /* Headings */
  --e-world-text: #ffffff; /* Main text */
  --e-world-accent: #ffdca8; /* Accent color */
  --e-world-btn-bg: #ffdca8; /* Button background */
  --e-world-btn-text: #1d4b52; /* Button text */
  --e-world-btn-hover: #e0c38b; /* Button hover (slightly darker/lighter) */
  --e-world-link-active: #ffdca8; /* Active link */
  --e-world-bg: #1d4b52; /* Site background */
}

/* Global Typography */
body {
  background-color: var(--e-world-bg);
  color: var(--e-world-text);
  font-family: "Your New Font", sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--e-world-heading);
}

/* Links */
a {
  color: var(--e-world-text);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--e-world-accent);
}

a.active {
  color: var(--e-world-link-active);
}

/* Buttons */
.e-world-btn {
  background-color: var(--e-world-btn-bg);
  color: var(--e-world-btn-text) !important;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.e-world-btn:hover {
  background-color: var(--e-world-btn-hover);
  color: var(--e-world-btn-text) !important;
}

/* Navbar Base */
.e-world-navbar {
  background-color: var(--e-world-bg);
  padding: 1rem 0;
}

.e-world-logo {
  max-height: 80px;
}

.e-world-nav-link {
  color: var(--e-world-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.e-world-nav-link:hover,
.e-world-nav-link.active {
  color: var(--e-world-accent) !important;
}

.e-world-toggler-icon {
  color: var(--e-world-text);
  font-size: 1.5rem;
}

.e-world-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.e-world-hero-title {
  color: var(--e-world-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.e-world-hero-subtext {
  color: var(--e-world-text);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.e-world-hero-content a.e-world-btn {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
}

.e-world-disclaimer-card {
  background: linear-gradient(135deg, #1d4b52, #4a3f2d);
  color: var(--e-world-text);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--e-world-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.e-world-disclaimer-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.e-world-disclaimer-title {
  color: var(--e-world-accent);
  font-weight: 700;
  font-size: 2rem;
}

.e-world-disclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--e-world-text);
  margin-bottom: 1.5rem;
}

.e-world-section-title {
  color: var(--e-world-heading);
  font-weight: 700;
  font-size: 2rem;
}

.e-world-section-subtitle {
  color: var(--e-world-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.e-world-game-card {
  border: 2px solid var(--e-world-accent);
  background-color: #4f3d2d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.e-world-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.e-world-game-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.e-world-features-section {
  background-color: var(--e-world-bg);
  color: var(--e-world-text);
}

.e-world-section-title {
  color: var(--e-world-heading);
  font-weight: 700;
  font-size: 2rem;
}

.e-world-section-subtitle {
  color: var(--e-world-text);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.e-world-feature-card {
  background-color: #4b3a2e;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.e-world-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.e-world-feature-icon i {
  color: var(--e-world-accent);
}

.e-world-feature-title {
  color: var(--e-world-heading);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.e-world-feature-text {
  color: var(--e-world-text);
  font-size: 0.95rem;
}

/* About Section */
.e-world-about-section {
  padding: 5rem 1rem;
  background-color: #1d4b52;
}

.e-world-about-content {
  max-width: 800px;
  margin: 0 auto 3rem auto; /* centers content and adds bottom spacing */
  text-align: center;
}

.e-world-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffdca8;
}

.e-world-about-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.e-world-accent-text {
  color: #ffdca8;
  font-weight: 600;
}

.e-world-about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Reviews Section - Elvyn.world */
.e-world-reviews-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4b52;
}

.e-world-section-title {
  color: #ffdca8;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.e-world-section-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.e-world-review-card {
  background-color: #705d4b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem;
  border-radius: 1rem;
}

.e-world-review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.e-world-review-card i {
  color: #ffdca8;
  margin-bottom: 1rem;
}

.e-world-review-card p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.e-world-review-card h5 {
  color: #ffdca8;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .e-world-section-title {
    font-size: 2rem;
  }
  .e-world-section-subtitle {
    font-size: 1rem;
  }
  .e-world-review-card {
    padding: 1.5rem;
  }
}

/* Footer Section */
.e-world-footer {
  background-color: #1d4b52;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.e-world-footer .footer-logo img {
  max-width: 180px;
}

.e-world-footer .footer-link {
  color: #ffdca8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.e-world-footer .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.e-world-footer .footer-disclaimer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0;
}

.e-world-footer .footer-heading {
  color: #ffdca8;
  font-weight: 600;
}

.e-world-footer .footer-links li {
  margin-bottom: 0.5rem;
}

.e-world-footer .footer-bottom {
  font-size: 0.9rem;
  color: #ffffff;
}

.e-world-footer .border-top {
  border-color: rgba(255, 220, 168, 0.3) !important;
}

@media (max-width: 768px) {
  .e-world-footer .footer-links,
  .e-world-footer .footer-disclaimer {
    text-align: center;
  }

  .e-world-footer .footer-links li {
    display: inline-block;
    margin: 0 0.5rem;
  }
}

/* Age Verification / Disclaimer Popup */
.e-world-age-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: #1d4b52; /* site background with overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.e-world-age-popup-box {
  background-color: #1d4b52;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.e-world-age-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffdca8;
  margin-bottom: 1rem;
}

.e-world-age-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.e-world-age-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.e-world-age-btn {
  background-color: #ffdca8;
  color: #1d4b52;
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.e-world-age-btn:hover {
  background-color: #e6c890;
}

.e-world-age-btn.no {
  background-color: #a3754b;
  color: #ffffff;
}

.e-world-age-btn.no:hover {
  background-color: #8c5f3d;
}

/* Scroll to Top Button */
.e-world-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #ffdca8;
  color: #1d4b52;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.e-world-scroll-top:hover {
  background-color: #e6c890;
  transform: translateY(-3px);
}

.e-world-scroll-top .scroll-arrow {
  font-weight: bold;
}

/* Contact Section */
.e-world-contact-section .contact-form input,
.e-world-contact-section .contact-form textarea {
  background-color: #ffffff1a;
  color: #ffffff;
  border: 1px solid #ffdca8;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.e-world-contact-section .contact-form input:focus,
.e-world-contact-section .contact-form textarea:focus {
  border-color: #ffdca8;
  background-color: #ffffff25;
  outline: none;
}

.e-world-contact-section .contact-btn {
  background-color: #ffdca8;
  color: #1d4b52;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.e-world-contact-section .contact-btn:hover {
  background-color: #e6c890;
  transform: translateY(-2px);
}

.e-world-contact-section .form-label {
  font-weight: 600;
}

/* Disclaimer Section */
.e-world-disclaimer-section {
  background-color: #1d4b52;
  padding: 5rem 0;
}

.e-world-disclaimer-section .section-title {
  color: #ffdca8;
  font-size: 2.5rem;
  font-weight: 700;
}

.e-world-disclaimer-section .section-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.e-world-disclaimer-section .disclaimer-card {
  background-color: #4f3f2e;
  color: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.e-world-disclaimer-section .disclaimer-card h4 {
  color: #ffdca8;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.e-world-disclaimer-section .disclaimer-card p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.e-world-disclaimer-section a {
  color: #ffdca8;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.e-world-disclaimer-section a:hover {
  color: #fff1d9;
  text-decoration: none;
}

/* Privacy & Terms Sections */
.e-world-privacy-section,
.e-world-terms-section {
  background-color: #1d4b52;
  padding: 5rem 0;
}

.e-world-privacy-section .section-title,
.e-world-terms-section .section-title {
  color: #ffdca8;
  font-size: 2.5rem;
  font-weight: 700;
}

.e-world-privacy-section .section-subtitle,
.e-world-terms-section .section-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.privacy-card,
.terms-card {
  background-color: #4f3f2e;
  color: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.privacy-card h4,
.terms-card h4 {
  color: #ffdca8;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.privacy-card p,
.terms-card p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.privacy-card a,
.terms-card a {
  color: #ffdca8;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-card a:hover,
.terms-card a:hover {
  color: #fff1d9;
  text-decoration: none;
}
