/*-------------------------------
  GLOBAL STYLES
--------------------------------*/
body.frovia-art {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #121825;
  color: #a9eeff;
  margin: 0;
  padding: 0;
}

a {
  color: #00ceff;
  text-decoration: none;
}

a:hover {
  color: #a9eeff;
}

/*--------------------------------------
  NAVBAR
---------------------------------------*/
.frovia-art-nav {
  background-color: #121825;
  padding: 1rem 0;
  border-bottom: 1px solid #00ceff33;
  position: flex;
  top: 0;
  z-index: 1000;
}

.frovia-art-brand {
  display: flex;
  align-items: center;
}

.frovia-art-brand img {
  height: 80px;
}

/* Navbar links */
.frovia-art-navlist {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.frovia-art-navlist .nav-link {
  color: #a9eeff;
  font-weight: 500;
  transition: 0.3s;
}

.frovia-art-navlist .nav-link:hover,
.frovia-art-navlist .nav-link.active {
  color: #00ceff;
}

/* Mobile toggle button */
.frovia-art-nav .navbar-toggler {
  border: 2px solid #00ceff;
  border-radius: 8px;
  background-color: #121825;
  padding: 6px 10px;
  transition: all 0.3s;
}

.frovia-art-nav .navbar-toggler:hover {
  background-color: #00ceff;
}

.frovia-art-nav .navbar-toggler i {
  color: #a9eeff;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.frovia-art-nav .navbar-toggler:hover i {
  color: #121825;
}

/* Mobile menu collapse */
.frovia-art-nav .navbar-collapse {
  background-color: #121825;
  border-top: 1px solid #00ceff33;
  padding: 1rem 0;
}

.frovia-art-nav .navbar-collapse .nav-item {
  margin-bottom: 0.5rem;
}

.frovia-art-nav .navbar-collapse .nav-link {
  color: #a9eeff;
  font-size: 1.1rem;
}

.frovia-art-nav .navbar-collapse .nav-link:hover {
  color: #00ceff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .frovia-art-navlist {
    flex-direction: column;
    gap: 0;
  }

  .frovia-art-nav .navbar-collapse {
    border-top: none;
  }
}

@media (max-width: 575px) {
  .frovia-art-brand img {
    height: 40px;
  }

  .frovia-art-nav .navbar-toggler {
    padding: 4px 8px;
  }

  .frovia-art-nav .navbar-toggler i {
    font-size: 1rem;
  }
}

/*--------------------------------------
  NAVBAR
---------------------------------------*/
.frovia-art-nav {
  background-color: #121825;
  padding: 0.8rem 1rem;
  font-family: 'Quicksand', sans-serif;
}

.frovia-art-nav .navbar-brand img {
  height: 80px;
}

.frovia-art-nav .nav-link {
  color: #00ceff;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.frovia-art-nav .nav-link:hover {
  color: #a9eeff;
}

.frovia-art-nav .nav-link.active {
  color: #50deff;
}

.frovia-art-nav .nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #50deff;
  border-radius: 2px;
  margin-top: 4px;
  transition: width 0.3s ease;
}

.frovia-art-nav .navbar-toggler {
  border: 1px solid #00ceff;
  color: #00ceff;
  transition: all 0.3s ease;
}

.frovia-art-nav .navbar-toggler:hover {
  background-color: #00ceff;
  color: #121825;
  border-color: #00ceff;
}

/*--------------------------------------
  SECTION TITLE
---------------------------------------*/
.frovia-art .section-title {
  font-family: 'Quicksand', sans-serif; /* or any unique web/system font */
  font-size: 2.4rem;
  font-weight: 700;
  color: #00ceff;
  text-align: center;
  text-shadow: 0 0 6px #00ceff;
  margin-bottom: 15px;
  position: relative;
}

/* Optional: Underline accent */
.frovia-art .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #50deff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Section subtitle */
.frovia-art .section-subtitle {
  font-size: 1.1rem;
  color: #a9eeff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

/*-------------------------------
  HERO SECTION
--------------------------------*/
.frovia-art-hero {
  height: 80vh;
  padding: 80px 20px;
  text-align: center;
  background: 
    url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frovia-art-hero .hero-inner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

.frovia-art-hero .hero-title {
  font-size: 3rem;
  color: #00ceff;
  text-shadow: 0 0 8px #00ceff, 0 0 12px rgba(0, 206, 255, 0.5);
  margin-bottom: 1rem;
}

.frovia-art-hero .hero-copy {
  font-size: 1.3rem;
  color: #a9eeff;
  margin-bottom: 2rem;
}

.frovia-art-cta {
  background-color: #50deff;
  color: #121825;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.frovia-art-cta:hover {
  background-color: #a9eeff;
  color: #121825;
  transform: translateY(-3px);
}


/*--------------------------------------
  NOTICE SECTION
---------------------------------------*/
.frovia-art-notice {
  padding: 60px 20px;
  background: rgba(18, 24, 37, 0.85);
  backdrop-filter: blur(10px);
  text-align: center;
}

.frovia-art-notice .notice-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 25px;
  background: rgba(18, 24, 37, 0.75);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 206, 255, 0.2);
  border: 1px solid rgba(0, 206, 255, 0.3);
}

.frovia-art-notice .notice-title {
  font-size: 2rem;
  color: #00ceff;
  text-shadow: 0 0 6px #00ceff;
  margin-bottom: 20px;
  font-weight: 700;
}

.frovia-art-notice .notice-text {
  font-size: 1.1rem;
  color: #a9eeff;
  line-height: 1.7;
  margin-bottom: 25px;
}

.frovia-art-notice .frovia-art-ghost {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  color: #50deff;
  background: transparent;
  border: 2px solid #50deff;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.frovia-art-notice .frovia-art-ghost:hover {
  background-color: #50deff;
  color: #121825;
  transform: translateY(-2px);
}

/*-------------------------------
  PLAY / EXPERIENCE SECTION
--------------------------------*/
.frovia-art-play {
  padding: 60px 20px;
}

.frovia-art-main-frame iframe {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ceff33;
  transition: all 0.3s ease;
}

.frovia-art-selector {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.frovia-art-thumb {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.frovia-art-thumb.active,
.frovia-art-thumb:hover {
  border-color: #00ceff;
  box-shadow: 0 0 12px #00ceff88;
}

/*--------------------------------------
  FEATURES SECTION
---------------------------------------*/
.frovia-art-features {
  padding: 80px 20px;
  background: #121825;
  color: #a9eeff;
  text-align: center;
}

.frovia-art-features .section-title {
  font-size: 2.6rem;
  color: #00ceff;
  text-shadow: 0 0 6px #00ceff;
  margin-bottom: 0.5rem;
}

.frovia-art-features .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #a9eeff;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.frovia-art-features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.frovia-art-feature {
  flex: 1 1 22%;
  background: rgba(0, 206, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 220px;
}

.frovia-art-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 206, 255, 0.25);
}

.frovia-art-feature .feature-icon {
  font-size: 2.5rem;
  color: #00ceff;
  margin-bottom: 15px;
}

.frovia-art-feature .feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #00ceff;
  margin-bottom: 10px;
}

.frovia-art-feature .feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #a9eeff;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .frovia-art-feature {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .frovia-art-features .section-title {
    font-size: 2.2rem;
  }
  .frovia-art-feature {
    flex: 1 1 100%;
  }
}


/*-------------------------------
  ABOUT SECTION
--------------------------------*/
.frovia-art-about {
  padding: 60px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ceff33;
}

.about-title {
  color: #00ceff;
  text-shadow: 0 0 4px #00ceff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1rem;
  color: #a9eeff;
  margin-bottom: 0.5rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/*--------------------------------------
  REVIEWS SECTION
---------------------------------------*/
.frovia-art-reviews {
  padding: 80px 20px;
  background: linear-gradient(180deg, #121825 0%, #1a1f3a 100%);
  color: #a9eeff;
  text-align: center;
}

.frovia-art-reviews .reviews-title {
  font-size: 2.6rem;
  color: #00ceff;
  text-shadow: 0 0 6px #00ceff;
  margin-bottom: 0.5rem;
}

.frovia-art-reviews .reviews-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #a9eeff;
}

.frovia-art-reviews-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  flex: 1 1 22%;
  background: rgba(0, 206, 255, 0.05);
  border-radius: 12px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 240px;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 206, 255, 0.25);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-header .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00ceff;
  color: #121825;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.review-header h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #00ceff;
  font-weight: 600;
}

.review-header .stars {
  font-size: 1rem;
  color: #50deff;
  margin-top: 4px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #a9eeff;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .review-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .frovia-art-reviews .reviews-title {
    font-size: 2.2rem;
  }
  .review-card {
    flex: 1 1 100%;
  }
  .review-header .avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/*-------------------------------
  CONTACT FORM
--------------------------------*/
.frovia-art-contact {
  padding: 60px 20px;
}

.frovia-art-contact-form .form-control {
  background: rgba(0, 206, 255, 0.05);
  border: 1px solid #00ceff33;
  border-radius: 8px;
  color: #a9eeff;
}

.frovia-art-contact-form .form-control:focus {
  border-color: #00ceff;
  box-shadow: 0 0 10px #00ceff33;
  background: rgba(0, 206, 255, 0.1);
}

.frovia-art-submit {
  background-color: #50deff;
  color: #121825;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.frovia-art-submit:hover {
  background-color: #a9eeff;
  color: #121825;
}

/*-------------------------------
  FOOTER
--------------------------------*/
.frovia-art-footer {
  padding: 40px 20px;
  background-color: #121825;
  color: #a9eeff;
}

.frovia-art-footer-links li {
  margin: 0 10px;
}

.frovia-art-footer-links li a {
  color: #00ceff;
}


.footer-disclaimer {
  margin-top: 20px;
  background: rgba(0, 206, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.footer-disclaimer .disclaimer-title {
  color: #00ceff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer .disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/*-------------------------------
  POPUP
--------------------------------*/
.frovia-art-popup {
  position: fixed;
  inset: 0;
  background: rgba(18,24,37,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.frovia-art-popup.active {
  display: flex;
}

.frovia-art-popup-inner {
  background: rgba(0, 206, 255, 0.05);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  max-width: 500px;
  text-align: center;
}

.frovia-art-popup .popup-title {
  color: #00ceff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-shadow: 0 0 4px #00ceff;
}

.frovia-art-popup .popup-text {
  font-size: 1rem;
  margin-bottom: 20px;
}

.frovia-art-popup .popup-actions button {
  margin: 0 10px;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.frovia-art-accept {
  background-color: #50deff;
  color: #121825;
}

.frovia-art-accept:hover {
  background-color: #a9eeff;
    color: #121825;

}

.frovia-art-exit {
  background-color: #121825;
  color: #a9eeff;
  border: 1px solid #00ceff;
}

.frovia-art-exit:hover {
  background-color: #00ceff;
  color: #121825;
}

/*-------------------------------
  SCROLL TO TOP
--------------------------------*/
.frovia-art-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #50deff;
  color: #121825;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease;
}

.frovia-art-scroll-top.show {
  opacity: 1;
}



/*--------------------------------------
  LEGAL PAGES (Disclaimer / Privacy / Terms)
---------------------------------------*/
.frovia-art-legal {
  padding: 80px 20px;
  background-color: #121825;
  color: #a9eeff;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.7;
}

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

.frovia-art-legal .legal-main-title {
  font-size: 2.8rem;
  color: #00ceff;
  text-align: center;
  text-shadow: 0 0 6px #00ceff;
  margin-bottom: 1rem;
}

.frovia-art-legal .legal-intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #a9eeff;
}

.frovia-art-legal .legal-heading {
  font-size: 1.8rem;
  color: #00ceff;
  text-shadow: 0 0 4px #00ceff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.frovia-art-legal p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #a9eeff;
}

.frovia-art-legal strong {
  color: #00ceff;
}

.frovia-art-legal a {
  color: #50deff;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.frovia-art-legal a:hover {
  color: #a9eeff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .frovia-art-legal {
    padding: 60px 15px;
  }

  .frovia-art-legal .legal-main-title {
    font-size: 2.2rem;
  }

  .frovia-art-legal .legal-heading {
    font-size: 1.5rem;
  }

  .frovia-art-legal p {
    font-size: 0.95rem;
  }
}
