@charset "utf-8";
/* CSS Document */

   /* Navbar styling */
.navbar {
  background-color: #111;
  padding: 0.8rem 1.5rem;
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease-in-out;
  margin: 0 10px;
}

.nav-link i {
  margin-right: 6px;
}

.nav-link:hover {
  color: #FFD700 !important;
}

/* Shiny hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #fff);
  transition: width 0.4s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
    /* Dropdown menu */
    .dropdown-menu {
      background-color: #222;
      border: none;
      border-radius: 8px;
    }

    .dropdown-item {
      color: #fff;
      transition: 0.3s;
    }

    .dropdown-item:hover {
      background: #FFD700;
      color: #111;
    }

/* Phone button */
.phone-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #111;
  font-weight: bold;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
  font-size: 0.95rem;
  white-space: nowrap; /* prevents breaking */
}

.phone-btn:hover {
  background: linear-gradient(45deg, #FFA500, #FFD700);
  transform: scale(1.05);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .phone-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }
}

    /* Fullscreen slider */
    .carousel-item {
      height:85vh;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomEffect 12s ease-in-out infinite alternate;
    }

    /* Zoom animation */
    @keyframes zoomEffect {
      from { transform: scale(1); }
      to { transform: scale(1.15); }
    }

    /* Caption overlay */
    .carousel-caption {
      bottom: 18%;
      background: rgba(0, 0, 0, 0.55);
      padding: 20px 30px;
      border-radius: 12px;
      backdrop-filter: blur(5px);
      animation: fadeInUp 1.5s ease;
      max-width: 90%;
    }

    .carousel-caption h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #FFD700;
    }

    .carousel-caption p {
      font-size: 1.2rem;
      color: #fff;
    }

    @keyframes fadeInUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Custom control buttons */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: auto;
      padding: 12px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      transition: background 0.3s ease-in-out;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: rgba(255, 215, 0, 0.8);
    }

    .carousel-control-prev i,
    .carousel-control-next i {
      font-size: 1.6rem;
      color: #fff;
    }

    /* Responsive styles */
    @media (max-width: 992px) {
      .carousel-caption h2 {
        font-size: 2rem;
      }
      .carousel-caption p {
        font-size: 1rem;
      }
      .carousel-caption {
        bottom: 12%;
        padding: 15px 20px;
      }
    }

    @media (max-width: 576px) {
      .carousel-caption h2 {
        font-size: 1.5rem;
      }
      .carousel-caption p {
        font-size: 0.9rem;
      }
      .carousel-caption {
        bottom: 8%;
        padding: 10px 15px;
      }
      .carousel-control-prev i,
      .carousel-control-next i {
        font-size: 1.2rem;
      }
      .carousel-control-prev,
      .carousel-control-next {
        padding: 8px;
      }
	    .carousel-item {
      height:250px;
      min-height:250px;
      position: relative;
      overflow: hidden;
    }

    .carousel-item img {
      width: 100%;
      height:250px;
      object-fit: cover;
      animation: zoomEffect 12s ease-in-out infinite alternate;
    }
    }

  /* Background with overlay */
  .content-section {
    position: relative;
    background: url('exterior.jpg') no-repeat center center/cover;
  }

  .content-section .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
    z-index: 1;
  }

  .content-section .container {
    position: relative;
    z-index: 2;
  }

  /* Typography */
  .content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f1f1f1;
    margin-bottom: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
  }

  .amenities-section {
    background: url(bg.jpg) #000; /* dark background */
    color: #fff;
  }
  .amenity-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
  }
  .amenity-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
  }
  .amenity-icon {
    font-size: 1.2rem;
    color: #FFD700;
    margin-right: 10px;
  }
  body, .stadium-section {
    font-family: 'Poppins', sans-serif;
  }
  .stadium-section h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .stadium-section p {
    line-height: 1.7;
  }
  .image-wrapper img {
    transition: transform 0.5s ease;
  }
  .image-wrapper:hover img {
    transform: scale(1.05);
  }

  body {
    font-family: 'Poppins', sans-serif;
  }
  .map-section h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .map-wrapper iframe {
    border: none;
    width: 100%;
    height: 400px;
  }
  .btn-warning {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
  }
  .btn-warning:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: scale(1.05);
    color: #000;
  }
 .footer-section {
    background: #111;
  }
  .footer-link {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
  }
  .footer-link:hover {
    color: #FFD700;
  }
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
  }
  .social-link:hover {
    background: #FFD700;
    color: #111;
    transform: scale(1.1);
  }
  .back-to-top {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #111;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
  }
  .back-to-top:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-3px);
  }