*{
    margin: 0;
    padding: 0;
    font-family: "Host Grotesk";
}
/* common class */

.container-1{
  max-width: 97%;
  margin: auto;
}

.container-2{
  max-width: 83%;
  margin: auto;
}

.btn{
    border: none;
    font-family: "Host Grotesk";
    color: black;
    font-size: 16px;
    font-weight: 600;
    background-color: #E8BA2E;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 12px 12px 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.5s ease;
}
.btn:hover{
  background-color: #b81d24;
  color: #ffffff;
}



/* navbar section */
.nav-content{
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}
.nav-content ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 70px;
    font-size: 16px;
    font-weight: 500;
    color: gray;
    
}
.nav-content ul li:hover{
  color: black;
  cursor: pointer;
}


/* header section */

header{
  background-image: url(./images/banner.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  height: 110vh;
}
header div{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start; 
  gap: 30px;
  padding-left: 3%;
  padding-bottom: 80px;
  box-sizing: border-box;
}
header div h1{
  font-size: 88px;
  line-height: 1.05;
  font-weight: bold;
  color: #ffffff;
}
header div p{
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 90%;
}

/* information section */

.info{
  background-color: #F4C430;
  height: 200px;
  margin-top: 18px;
  width: 100%;
}
.info-content{
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.info-content div p{
  font-size: 16px;
  opacity: 70%;
}
.info-content div h1{
  font-size: 72px;
  font-weight: bold;
}


/* Host section */

.host-title{
  font-size: 56px;
  font-weight: 600;
  text-align: center;
  padding: 80px 0 56px 0;
  color: #8a1c2f;
}
.venues{
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.venue{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.venue-content{
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.venue-content h2{
  font-size: 40px;
  font-weight: bold;
}
.venue-content p{
  font-size: 17px;
  color: gray;
  line-height: 1.5;
}
.venue-content ul{
  list-style-position: inside;
  color: #4D4D4D;
  font-size: 17px;
  line-height: 1.5;
}
.btn-div{
  margin-top: 48px;
  text-align: center;
}


/* table section */

.match-container{
  margin-top: 100px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}
.match-content{
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.match-title{
  padding-top: 30px;
}
.match-title h2{
  font-size: 34px;
  font-weight: bold;
  padding-bottom: 8px;
}
.match-title p{
  font-size: 16px;
  color: #505F76;
}
.match-content table{
  border: 2.4px solid black;
  text-align: center;
  border-collapse: collapse;
}
thead tr th {
  background-color: #a83232; /* মেরুন রঙ */
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 18px;
  letter-spacing: 0.5px;
  border-right: 1.6px solid black;
}

thead th:last-child {
  border-right: none;
}

/* টেবিল ডেটা (সাধারণ ঘরগুলো) */
tbody td {
  padding: 18px 12px;
  border-bottom: 1.6px solid #2b2b2b;
  border-right: 1.6px solid #2b2b2b;
  font-size: 0.95rem;
}

tbody tr:last-child td {
  border-bottom: none; /* শেষ রো-এর নিচের বর্ডার থাকবে না */
}

tbody td:last-child {
  border-right: none; /* শেষ কলামের ডানপাশের বর্ডার থাকবে না */
}

/* কলাম ১: তারিখ (DATE) */
tbody td:nth-child(1) {
  color: #b81d24; /* লাল রঙ */
  font-weight: 600;
}

/* কলাম ২: ম্যাচ (MATCH) */
tbody td:nth-child(2) {
  font-weight: 700;
  color: #1a1a1a;
}

/* কলাম ৩: ভেন্যু (VENUE) */
tbody td:nth-child(3) {
  color: #5c6b73;
}

/* কলাম ৪: স্টেজ (STAGE) */
tbody td:nth-child(4) {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* বিশেষ রো ১: প্রথম রো-এর STAGE (OPENING - লাল) */
tbody tr:first-child td:nth-child(4) {
  color: #b81d24;
  font-weight: 700;
}

/* বিশেষ রো ২: শেষ রো-এর STAGE (FINAL - সোনালী হলুদ) */
tbody tr:last-child td:nth-child(4) {
  color: #a88513;
  font-weight: 700;
}


/* sponsor section */

.sponsors-section {
  padding: 80px 24px;
  background-color: #ffffff;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.sponsors-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 18px;
  font-weight: 600;
  color: #8a1c2f;
  margin: 0 0 8px;
  text-align: center;
}

.sponsors-title {
  font-size: 40px;
  font-weight: 700;
  color: #8a1c2f;
  margin: 0 0 12px;
  text-align: center;
}

.sponsors-subtitle {
  font-size: 15px;
  color: #666;
  margin: 0 0 48px;
  text-align: center;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.sponsor-logo:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-color: #8a1c2f;
  transform: scale(1.03);
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;

  /* If the image fails to load, this styles the alt-text fallback box */
  color: #333;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* footer section */

footer{
    background-color: black;
}
.footer-container{
    padding: 55px 0;
    max-width: 92%;
    margin: auto;
}
.f-before-divider{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
}
.social-icons{
    display: flex;
    gap: 10px;
}
.social-icons a img{
    height: 38px;
    width: 38px;
}
.social-icons a img:hover{
    opacity: 80%;
}
.footer-container hr{
    opacity: 20%;
}
.f-after-divider{
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    color: white;
    opacity: 40%;
}
.copyright{
    display: flex;
    gap: 20px;
}
.copyright a{
    text-decoration: none;
    color: white;
    opacity: 60%;
}
.copyright a:hover{
    opacity: 100%;
}
