image-rendering: optimizeQuality;

/* === FULL PAGE BACKGROUND IMAGE === */
body {
  background: url("../teamphoto3.jpg") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}



.center-image {
  display: block;
  margin: 0 auto;
}

 .white-space {
      height: 1000px; /* adjust height for more or less white space */
      width: 100%;
    }

/* Basic reset / base styles */
* {
  box-sizing: border-box;
  margin: 5px;
  padding: 0PX	;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
	color: inherit;
	font-size: large;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header & Nav */
.site-header {
	background-color: #fafafa;
	border-bottom: medium solid #ddd;
	border-top-width: medium;
	border-right-width: medium;
	border-left-width: medium;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.site-nav a:hover {
	color: #007ACC;
	width: 10px;
}

/* Hero section */
.hero {
  background: url("../images/hero-bg.jpg") center center / cover no-repeat;
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* About / features */
.about {
  padding: 3rem 0;
}
.features {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature {
  flex: 1;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
}

/* Events / competition section */
.events {
  padding: 3rem 0;
}
.event-blocks {
  display: flex;
  gap: 2rem;
}
.event {
  flex: 1;
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 4px;
}
.event ul {
  list-style: disc inside;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 1.5rem 0;
  text-align: center;
}
/* CSS Document */





/* === FOR IMAGES === */

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-item {
  width: 200px;  /* fixes container size */
  text-align: center;
}

.image-item img {
  width: 100%;    /* fills container */
  height: 200px;
  object-fit: cover;
}

.image-item p {
  margin-top: 5px;
  font-weight: bold;
  color: #333;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 200px; /* same height as image */
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Flip on hover */
.image-item:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front and back sides */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

/* Back side: icons */
.flip-card-back {
  background-color: #f1f1f1;
  color: black;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.flip-card-back a {
  text-decoration: none;
  font-size: 24px;
  color: #333;
  transition: color 0.3s;
}

.flip-card-back a:hover {
  color: #0073b1; /* example hover color */
}

/* Optional: adjust paragraph below card */
.image-item p {
  margin-top: 10px;
  font-weight: bold;

}




/* ============For Contact Us=======*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.contact-section {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

p {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.btn {
  background: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #007bff;
}

.contact-info p {
  margin-bottom: 10px;
}

.instagram-link {
  display: inline-block;
  color: #e1306c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}

.instagram-link:hover {
  color: #b62e62;
  transform: scale(1.05);
}

.social-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info {
    margin-top: 30px;
  }
}





/*OUR SPONSORS HTML*/
/* 🔷 GENERAL PAGE STYLE (namespaced to .sponsors-page so it won't override your other HTML) */
.sponsors-page {
  font-family: "Poppins", sans-serif;
  /*background: #0d1117;*/
  color: hotpink;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* 🔹 HEADER SECTION */
.sponsors-header {
  /*background: linear-gradient(135deg, #161b22, #0d1117);*/
  padding: 50px 20px 30px;
}

.sponsors-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00bfff;
}
/*We're grateful for the support...*/
.sponsors-header p {
  color: darkgoldenrod;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.sponsors-header img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

/* 🔸 SPONSOR SECTION */
.sponsor-tier {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.sponsor-tier h2 {
  color: #00bfff;
  border-bottom: 2px solid #00bfff;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

/* 🔸 SPONSOR GRID (works with or without logos) */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-bottom: 50px;
}

.sponsor-card {
  background: #D3D3D3;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
	
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
}

.sponsor-card:hover {
  background: #1f242c;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.sponsor-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}
/*CARD TEXT*/
.sponsor-card a {
  color: darkgoldenrod;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
	align-items: center
}

.sponsor-card a:hover {
  color: #00bfff;
}

/* 🔸 FOOTER */
.sponsors-footer {
  padding: 20px;
  
  font-size: 0.9rem;
  color: #8b949e;
 
}




/*****************Gallery*************************/

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 wide */
  gap: 15px; /* spacing between images */
  width: 100%;
  padding: 10px; /* optional: space around the whole grid */
}

.photo-gallery figure {
  margin: 0;
  padding: 0;
}

.photo-gallery img {
  width: 100%;
  height: 450px;        /* adjust to any height you want */
  object-fit: cover;    /* keeps image from stretching */
  display: block;
  border-radius: 4px;   /* optional: soft corners */
}

.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin-top: 5%;
}

#caption {
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 1.2rem;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

