
body {
  margin: 0;
  font-family:  'Poppins', sans-serif;
}

/* Header */
header {
  background: #0a2a57;
  color: white;
  padding: 10px;
}

header h2 {
  font-size: 15px;
}

nav a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
  font-weight: normal;
  font-size: 20px;
}

nav a:hover {
  text-decoration: underline;
}

/* Page content */
.container {
  padding: 40px;
}


.card {
  margin-bottom: 25px;
}

.container h1 {
  font-size: 28px;
}

.container p,
.container li {
  font-size: 18px;
  line-height: 1.2;
}

/* Footer */
footer {
  background: #0a2a57;
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

footer {
  width: 100vw;          /* 🔥 force full screen width */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}


/* Inner page banner */
.page-banner {
  background: url('banner1.jpg') center/cover no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner h1 {
  color: white;
  font-size: 36px;
  background: rgba(0,0,0,0.5);
  padding: 10px 30px;
  border-radius: 5px;
}


.card {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h2 {
  margin-top: 0;
  color: #0a2a57;
}


.card {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h2 {
  margin-top: 0;
  color: #0a2a57;
}

.page-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin: 10px 0;
}


/* Mobile responsive */
@media (max-width: 768px) {

  header {
    padding: 10px;
    text-align: center;
  }

  nav {
    display: block;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .container {
    padding: 15px;
  }

  .page-image {
    height: 180px;
  }

  .card {
    padding: 15px;
  }
}


.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}


input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #0a2a57;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #06306d;
}




body {
  background: #f9f9f9;
}


.sports-layout {
  max-width: 1100px;
  margin: auto;
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
}




.site-header {
  background: #0a2a57;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {

  nav {
    display: none;
    flex-direction: column;
    background: #0a2a57;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 15px;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}



.card:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}



.page-image {
  transition: transform 0.4s ease;
}

.page-image:hover {
  transform: scale(1.03);
}


.card {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}


button {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}



.gallery img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}



.section {
  padding: 40px 20px;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #0a2a57;
  display: block;
  margin: 10px auto 0;
}



nav a {
  transition: 0.3s;
}

nav a:hover {
  color: #ffd700;   /* gold effect on hover */
}


img {
  image-rendering: auto;
}


.contact-map {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 60px;
  gap: 40px;
  background: #faf6ee;
}

/* MAP */
.map-box {
  flex: 1;
  min-width: 300px;
}

.map-box iframe {
  width: 100%;
  height: 420px;
  min-height: 350px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ADDRESS */
.address-box {
  flex: 1;
  background: #142c4f;
  color: white;
  padding: 60px;
  border-radius: 12px;
  

  height: 420px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.address-box h3 {
  margin-bottom: 20px;
}

.address-box p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SOCIAL ICONS */
.socials {
  margin-top: 30px;
}


.socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: white;
  color: #142c4f;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
}



html {
  scroll-behavior: smooth;
}




/* scroll animation */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* header shadow */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}



.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 80px;   /* adjust if needed */
  width: auto;
}

.logo span {
  color: #fff;
  line-height: 1.1;
}

.logo strong {
  font-size: 40px;
  letter-spacing: 1px;
}

.logo small {
  font-size: 11px;
  color: #d4af37; /* golden like example */
}

.logo {
  margin-left: 50px;   /* adjust as needed */
}



.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sport-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sport-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}



@media (max-width: 768px) {
  .sports-container {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }
}


.sports-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;   /* important */
}


.card h2 {
  min-height: 70px;
}


.special-layout {
  max-width: 1100px;
  margin: auto;
}


.container {
  padding: 40px;
}

/* ONLY Sports/Rooms/Facilities */
.special-layout {
  max-width: 1100px;
  margin: auto;
}


/* ONLY Sports / Rooms / Facilities layout */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Make cards look perfect inside grid */
.sports-grid .card {
  margin-bottom: 0; /* remove extra spacing */
}



/* ABOUT PAGE FIX */
body.about-page .card {
  display: block;
}

body.about-page .page-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 15px;
}


/* GALLERY PAGE FIX */
body.gallery-page .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  body.gallery-page .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}


body.about-page .container {
  display: block;   /* About page stays normal */
}

body.gallery-page .gallery {
  grid-template-columns: repeat(4, 1fr); /* 4 photos in one row */
}


/* FIX Gallery Page Layout */
body.gallery-page .container {
  display: block;      /* remove 2-column grid */
  padding: 40px;
}


/* Gallery images should take full width */
body.gallery-page .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.contact-center .card {
  width: 100%;
  max-width: 800px;
}


section h1 {
  text-align: center;
  font-size: 40px;
  margin-top: 40px;
  margin-bottom: 30px;
}



.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 8px;
  border-radius: 50%;
  background: white;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}


.social-icons a.facebook i {
  color: #1877f2; /* Facebook Official Blue */
}


.social-icons a.instagram i {
  background: radial-gradient(circle at 30% 30%,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.social-icons a:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .contact-map {
    flex-direction: column;
    padding: 20px;
  }

  .map-box iframe,
  .address-box {
    height: 320px;
  }
}



.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}


.sports-grid .card {
  margin-bottom: 0;
}


@media (max-width: 768px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
}

.sports-grid {
  align-items: stretch;
}



.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.sports-grid .card h2 {
  min-height: 60px;
}

.sports-grid .card h2 {
  min-height: 70px;   /* same height for all headings */
  line-height: 1.3;
}


.sports-grid .card h2 {
  min-height: 80px;
  line-height: 1.3;
  margin-bottom: 15px;
}


.sports-grid .card h2 {
  min-height: 90px;   /* adjust if heading is longer */
}


/* IMAGE POPUP STYLE */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


@media (max-width: 768px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
}



/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Mobile menu */
@media (max-width: 768px) {

  nav {
    display: none;
    flex-direction: column;
    background: #0a2a57;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s ease;
  }

  nav a {
    padding: 12px 0;
    display: block;
    font-size: 18px;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    position: relative;
  }
}




.card h2 {
  margin-bottom: 5px;
}

.card p {
  margin-bottom: 15px;
}



.mission-card h2 {
  margin: 0 0 5px 0;
}

.mission-card p {
  margin: 0 0 20px 0;
}


.card h2 {
  margin-bottom: 0;
}

.card p {
  margin-top: 0;
}


.mission-vision p {
  font-size: 19px;
  line-height: 1.7;
}

body.about-page .mission-vision p {
  font-size: 20px !important;
  line-height: 1.1;
}


.mission-vision p {
  font-size: 20px;
}

.mission-vision h2 {
  margin-bottom: 5px;
}

.mission-vision p {
  margin-top: 0;
}


.about-container {
  display: block;
}


.card h2 {
  margin-bottom: 0 !important;
}

.card p {
  margin-top: 0 !important;
}


.mission-vision h2 {
  min-height: auto !important;
}


body.contact-page .contact-map {
  padding-left: 0;
  padding-right: 0;
}


/* ONLY ABOUT PAGE IMAGE */
body.about-page .about-image {
  width: 100%;
  height: 450px;  /* increase as you want */
  object-fit: cover;
  border-radius: 8px;
}



.login-btn {
  background: #d4af37;
  color: #0a2a57 !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.login-btn:hover {
  background: #ffd700;
}


.rooms-page .card p{
  font-size: 5px;
  line-height: 0;
  margin: 2px 0;
}

.card li{
line-height: 1.5;
}


.card ul{
padding-left: 18px;
}



/* Make everything flexible */
*{
  box-sizing: border-box;
}

/* Images responsive */
img{
  max-width: 100%;
  height: auto;
}



@media (max-width: 768px){

  #main-menu{
    display: none;
    flex-direction: column;
    background: #0f2c4d;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
  }

  #main-menu.show{
    display: flex;
  }

  .menu-toggle{
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
} 



@media (max-width: 768px){

  h2{
    font-size: 18px;
  }

  .card p{
    font-size: 13px;
    line-height: 1.3;
  }

}



.container{
  padding: 20px;
}

@media (max-width: 768px){
  .container{
    padding: 10px;
  }
}


.address-box p {
  word-break: break-word;
  overflow-wrap: break-word;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Mobile smaller arrows */
@media (max-width: 600px) {
  .prev, .next {
    font-size: 30px;
  }
}