/* style.css - Updated styles for Furux Stadium main page to match Events page color scheme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f4f8;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: #facc15;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 58, 138, 0.6), rgba(0, 0, 0, 0.8));
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  color: #facc15;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {

  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {

  background-color: #facc15;
  color: #1a1a1a;
}

.btn-secondary {

  background-color: transparent;
  color: #ffffff;
  border: 2px solid #facc15;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }

  50% {
    transform: translateY(10px) rotate(45deg);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

.section-header p {
  font-size: 1.1rem;
  color: #4b5563;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.5teller;
  transform: translateY(-5px);
}

.stadium-image {
  position: relative;
  width: 100%;
  height: 300px;
}

.stadium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stadium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.pinco-rating {
  color: #ffffff;
  font-weight: 600;
}

.rating-stars {
  color: #facc15;
}

.rating-text {
  background: #facc15;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.stadium-content {
  padding: 1.5rem;
}

.stadium-content h3 {
  font-size: 1.4rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.stadium-content p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.stadium-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.stadium-stats i {
  color: #facc15;
  margin-right: 0.3rem;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  background-color: #ffffff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar i {
  font-size: 2rem;
  color: #1e3a8a;
}

.reviewer-details h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
}

.reviewer-details .reviewer-title {
  font-size: 0.9rem;
  color: #4b5563;
}

.review-rating .stars {
  color: #facc15;
}

.review-rating .pinco-badge {
  background: #1e3a8a;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.review-content h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.review-content p {
  font-size: 1rem;
  color: #4b5563;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 1rem;
}

.review-footer i {
  color: #facc15;
  margin-right: 0.3rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.map-container {
  position: relative;
}

.map-placeholder {
  background: #ffffff;
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-overlay {
  text-align: center;
  padding: 2rem;
}

.map-overlay h3 {
  font-size: 1.8rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.map-overlay p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.map-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3a8a;
}

.stat-label {
  font-size: 1rem;
  color: #4b5563;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 2.5rem;
  color: #facc15;
  margin-bottom: 1rem;
}

.stat-content .stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.stat-content .stat-label {
  font-size: 1rem;
}

/* Experiences Section */
.experiences {
  padding: 4rem 0;
  background-color: #ffffff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.experience-card {
  background: #f0f4f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-image {
  width: 100%;
  height: 300px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-content {
  padding: 1.5rem;
}

.experience-content h3 {
  font-size: 1.4rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.experience-content p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.experience-features {
  list-style: none;
  margin-bottom: 1rem;
}

.experience-features li {
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.experience-features i {
  color: #facc15;
  margin-right: 0.5rem;
}

.experience-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experience-price .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
}

.experience-price .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

/* Community Section */
.community {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s ease;
}

.testimonial-card:not(.active) {
  display: none;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar i {
  font-size: 2rem;
  color: #1e3a8a;
}

.author-info h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
}

.author-info span {
  font-size: 0.9rem;
  color: #4b5563;
}

/* News Section */
.news {
  padding: 4rem 0;
  background-color: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: #f0f4f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card.featured {
  grid-column: span 2;
}

.news-image {
  width: 100%;
  height: 200px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-category {
  font-size: 0.8rem;
  color: #facc15;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-content h3 {
  font-size: 1.4rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.news-content p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.news-meta i {
  color: #facc15;
  margin-right: 0.3rem;
}

/* Membership Section */
.membership {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
}

.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.membership-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.membership-card.premium {
  background: #facc15;
  color: #1a1a1a;
}

.membership-header {
  margin-bottom: 1rem;
}

.membership-header h3 {
  font-size: 1.8rem;
}

.membership-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
}

.membership-description {
  margin-bottom: 1.5rem;
}

.membership-price .price {
  font-size: 2rem;
  font-weight: 700;
}

.membership-price .period {
  font-size: 1rem;
}

.membership-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.membership-features li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.membership-features i {
  color: #facc15;
  margin-right: 0.5rem;
}

.membership-card .btn {

  font-size: 1rem;
  padding: 0.8rem 1.5rem;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon i {
  font-size: 1.8rem;
  color: #1e3a8a;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
}

.contact-details p {
  font-size: 1rem;
  color: #4b5563;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #1e3a8a;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #facc15;
}

.contact-form-container {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #4b5563;
  border-radius: 8px;
  background: #ffffff;
  color: #1a1a1a;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-container input {
  width: 16px;
  height: 16px;
}

.checkbox-container .checkmark {
  display: none;
}

.checkbox-container .link {
  color: #facc15;
  text-decoration: none;
}

.checkbox-container .link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #e5e7eb;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #facc15;
}

.footer-logo .logo-subtitle {
  font-size: 1rem;
  color: #e5e7eb;
}

.footer-section p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #e5e7eb;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #facc15;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: #facc15;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #facc15;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  border-top: 1px solid #4b5563;
  padding-top: 1rem;
}

.footer-copyright p {
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #facc15;
}

/* Accordion Styles */
.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border-bottom: 1px solid #4b5563;
}

.accordion-header {
  background: #f0f4f8;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #e5e7eb;
}

.accordion-header i {
  color: #facc15;
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #ffffff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  max-height: 200px;
  padding: 1rem;
}

.accordion-content p {
  font-size: 1rem;
  color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1e3a8a;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stadium-grid,
  .review-grid,
  .experience-grid,
  .membership-cards,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-overlay iframe {
    width: 100%;
    height: 300px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .map-overlay {
    padding: 0;
  }
}