/* ===============================
   Base Styles
================================= */
body.nordiqo-art {
  background-color: #4d2f1d;
  color: #e8d0a6;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* General Links */
a {
  color: #ffb430;
  text-decoration: none;
}
a:hover {
  color: #e8d0a6;
}

/* Section Titles */
.nordiqo-art-section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffb430;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.nordiqo-art-btn {
  background-color: #ffb430;
  color: #4d2f1d;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}
.nordiqo-art-btn:hover {
  background-color: #e8d0a6;
  color: #4d2f1d;
}

/* ===============================
   Navbar
================================= */
.nordiqo-art-navbar {
  background-color: rgba(77, 47, 29, 0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.nordiqo-art-navbar .nav-link {
  color: #e8d0a6 !important;
  margin: 0 8px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.nordiqo-art-navbar .nav-link:hover,
.nordiqo-art-navbar .nav-link.active {
  color: #ffb430 !important;
}
.nordiqo-art-logo {
  height: 80px;
}

/* ===============================
   Hero Section
================================= */
.nordiqo-art-hero {
  min-height: 80vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: #e8d0a6;
  padding: 0 20px;
}
.nordiqo-art-hero-heading {
  font-size: 3rem;
  font-weight: bold;
  color: #ffb430;
  margin-bottom: 20px;
}
.nordiqo-art-hero-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===============================
   Disclaimer Section
================================= */
.nordiqo-art-disclaimer-card {
  background-color: rgba(77,47,29,0.9);
  border: 1px solid #ffb430;
  border-radius: 20px;
  max-width: 800px;
}
.nordiqo-art-disclaimer-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ===============================
   Game Section
================================= */
.nordiqo-art-game-card {
  background-color: #3b2315;
  border: 2px solid #ffb430;
  border-radius: 20px;
  padding: 15px;
  max-width: 900px;
}
.nordiqo-art-game-card iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
}

/* ===============================
   Features Section
================================= */
.nordiqo-art-feature-card {
  background-color: #3b2315;
  border: 1px solid rgba(255,180,48,0.4);
  border-radius: 20px;
  padding: 30px 20px;
  color: #e8d0a6;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.nordiqo-art-feature-card:hover {
  transform: translateY(-8px);
  border-color: #ffb430;
}
.nordiqo-art-feature-card i {
  color: #ffb430;
}

/* ===============================
   About Section
================================= */
.nordiqo-art-about p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}
.nordiqo-art-about-img-wrapper img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

/* ===============================
   Reviews Section
================================= */
.nordiqo-art-review-card {
  background-color: #3b2315;
  border: 1px solid rgba(255,180,48,0.4);
  border-radius: 20px;
  color: #e8d0a6;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.nordiqo-art-review-card:hover {
  transform: translateY(-8px);
  border-color: #ffb430;
}
.nordiqo-art-review-card i {
  color: #ffb430;
}

/* ===============================
   Footer
================================= */
.nordiqo-art-footer {
  background-color: #3b2315;
}
.nordiqo-art-footer-logo {
  height: 40px;
}
.nordiqo-art-footer-link {
  color: #e8d0a6;
  transition: color 0.3s ease;
}
.nordiqo-art-footer-link:hover {
  color: #ffb430;
}
.nordiqo-art-footer p {
  font-size: 0.95rem;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .nordiqo-art-hero-heading {
    font-size: 2.3rem;
  }
  .nordiqo-art-hero-text {
    font-size: 1rem;
  }
  .nordiqo-art-game-card iframe {
    height: 350px;
  }
}


/* ===========================
   Popup Styles
=========================== */
.nordiqo-art-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none; /* Hidden until JS shows it */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.nordiqo-art-popup-card {
  background: #3b2315;
  color: #e8d0a6;
  border: 2px solid #ffb430;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  text-align: center;
}
/* ===========================
   Scroll to Top Button
=========================== */
.nordiqo-art-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffb430;
  color: #4d2f1d;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: background 0.3s ease;
}
.nordiqo-art-scroll-top:hover {
  background: #e8d0a6;
  color: #4d2f1d;
}



/* ==============================
   Contact Section
============================== */
.nordiqo-art-contact {
  background: #4d2f1d; /* site background */
  color: #e8d0a6;
}

.nordiqo-art-contact-form {
  background: #3a2215;
  border: 1px solid rgba(255, 180, 48, 0.2);
}

.nordiqo-art-contact-form .form-label {
  color: #ffb430;
  font-weight: 600;
}

.nordiqo-art-contact-form .form-control {
  background: #4d2f1d;
  border: 1px solid #ffb430;
  color: #e8d0a6;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.nordiqo-art-contact-form .form-control:focus {
  border-color: #e8d0a6;
  box-shadow: 0 0 8px rgba(255, 180, 48, 0.4);
  outline: none;
}

.nordiqo-art-btn {
  background: #ffb430;
  color: #4d2f1d;
  font-weight: bold;
  border-radius: 12px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.nordiqo-art-btn:hover {
  background: #e8d0a6;
  color: #4d2f1d;
}



/* ==============================
   Legal Pages - Nordiqo.art
============================== */
.nordiqo-art-legal {
  background: #4d2f1d; /* site background */
  color: #e8d0a6;      /* text color */
  padding: 60px 20px;
  line-height: 1.7;
}

.nordiqo-art-legal .container {
  max-width: 900px;
  margin: 0 auto;
}

.nordiqo-art-legal h2 {
  color: #ffb430; /* heading color */
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.nordiqo-art-legal h4 {
  color: #ffb430;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.nordiqo-art-legal p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #e8d0a6;
}

/* Links inside legal pages */
.nordiqo-art-legal a {
  color: #ffb430;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.nordiqo-art-legal a:hover {
  color: #e8d0a6;
}

/* Divider style */
.nordiqo-art-legal hr {
  border: 0;
  border-top: 1px solid rgba(232, 208, 166, 0.3);
  margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nordiqo-art-legal h2 {
    font-size: 1.8rem;
  }
  .nordiqo-art-legal h4 {
    font-size: 1.2rem;
  }
  .nordiqo-art-legal p {
    font-size: 0.95rem;
  }
}
