/* Apply Google Fonts */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  /* background: linear-gradient(135deg, #1e3c72, #2a5298); /* cool gradient background */
  /* color: #fff;  */
  overflow-x: hidden; /* hides accidental horizontal scroll */
  background-color: RGB(220,221,215);
  color: RGB(42,46,47);

  background-image: url("../images/pattern3.jpg");
  background-repeat: repeat;

}


/* Headings */
h1, h2 {
    font-family: 'Abril Fatface', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 42px;
    /* text-transform: uppercase; */
    color: RGB(42,46,47);
    padding-bottom: 10px;
}

h2::after {
  content: "";
  display: block;
  height: 5px; /* thickness of the line */
  margin: 0 0px; /* left/right padding for breathing room */
  background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0));
  margin-top:10px;
}

/* Navbar */
.navbar {
    font-family: 'Poppins', sans-serif;
    max-width: 100%; /* ensures navbar doesn’t exceed viewport */
}

ul {
  list-style: none;
  padding: 0;
}



/* Header image */
.header-img {
  width: 80%;       /* limit to 80% of screen width */
  max-width: 1200px; /* optional: cap it so it doesn’t get too huge on big monitors */
  height: auto;     /* keep aspect ratio */
  display: block;
  margin: 0 auto;   /* center the image */
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.3); */
}

/* Section styling with translucent cards */
section {
  /* background: rgba(252,0,220, 0.41); */
  background: rgba(216, 211, 208, 0.95);
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 1000px;
  backdrop-filter: blur(6px);
  min-width: 85%;
  /* color: rgb(37,31,84) */
  color: RGB(42,46,47);
}


/* Tournament list */
.flex-li {
  list-style: none;              /* remove default bullet */
  display: flex;                 /* enable flexbox */
  align-items: center;           /* vertically center image + text */
  gap: 8px;                      /* space between image and text */
  margin-bottom: 10px;
}
.flex-li img {
  width: 20px;                   /* control image size */
  height: 20px;
}
.list-group a {
  text-decoration: underline;
}

/* Gallery thumbnails */
.gallery img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

/* Lightbox overlay */
#lightbox {
  backdrop-filter: blur(6px);
}

/* img {
  margin: 15px;
} */


.card-header-pink {
padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
margin-bottom: 0;
/* color: var(--bs-card-cap-color); */
color: #fff;
/* background-color: var(--bs-card-cap-bg); */
background-color: rgb(238,73,150,1);
border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}