body {
  margin: 0;
  font-family: 'Poppins', sans-serif; 
 }

 #loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* Ensure it's above other content */
}
.white-bg{
  background-color: #fff; /* White background */
}
.white{
  color: #fff;
}
 .black{
  color: #000;
 }
 .light-green{
  background-color: #228B22;
 }
 .green{
  background-color: #408206;
 }
 .red{
  background-color: #B00A08;
 }
/* Vertical Navigation */
.vertical-nav {
position: fixed;
left: 0;
top: 0;
width: 80px;
height: 100vh;
background-color: #B00A08; /* Default green */
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
color: white;
border-right: solid 5px #fff; /* Default white border */
z-index: 1000;
transition: background-color 1s ease-in-out, border-right-color 1s ease-in-out;
}


.logo {
text-align: center;
margin-top: 50px;
}

.logo img {
width: 50px;
height: 50px;
display: block;
margin: 0 auto;
}

.menu-icon {
display: block;
font-size: 25px;
color: white;
cursor: pointer;
margin: 50px 0;
}
.menu-icon:hover{
color: #408206;
}
.social-icons {
text-align: center;
margin-bottom: 50px;
}

.icon {
display: block;
margin: 5px 0;
font-size: 20px;
text-decoration: none;
color: white;
}

.icon:hover {
color: #000; /* Hover effect */
}

/* Overlay Menu */
.overlay-menu {
position: fixed;
background-color: #fff;
top: 0;
left: -100%; /* Hidden initially */
width: 30%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
transition: left 0.5s ease;
z-index: 999;
}

#menu-toggle:checked ~ .overlay-menu {
left: 0; /* Show when checked */
}

.overlay-menu .container {
display: flex;
flex-wrap: nowrap;
height: 100%;
width: 100%;
border-right: #408206 9px solid;
}

/* Left side (logo side) */
.overlay-menu-left {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
height: 100%; /* Full height */
}


/* Right side (menu links) */
.overlay-menu-right {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
height: 100%; 
}

.overlay-menu-left ul {
list-style: none;
padding: 0;
margin: 10px;
text-align: left;
}

.overlay-menu-left ul li {
margin: 20px 0;
}
.overlay-menu-left ul li a span{
font-size: 20px;
}
.overlay-menu-left ul li a {
color: #B00A08; /* White text for links */
text-decoration: none;
font-size: 26px;
font-weight: bold;
text-transform: uppercase;
transition: color 0.3s ease;
}

.overlay-menu-left ul li a:hover {
text-decoration: line-through;
color: #408206; /* Yellow hover effect */
}

/* Ensure the close button is in the top right */
.close-btn {
position: absolute;
top: 20px;
right: 20px;
color: black;
font-size: 30px;
cursor: pointer;
}

/* Hide the checkbox */
#menu-toggle {
display: none;
}
section {
height: 100vh;
}
.section-title{
padding: 50px; 
display: flex;
}
.section-title h1{
  width: 60%;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  flex: 1;
}
.section-title.news-article h1{
  flex: 2;
  width: 100%;
  line-height: 1;
  margin-bottom: -40px;
}
.section-btn, .section2-btn, .section3-btn {
display: inline-block;
background-color: transparent;
border: 2px solid ;
padding: 20px 30px;
margin-left: 70px;
margin-top: 40px;
font-size: 16px;
border-radius: 16px;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;
}

.section-btn i, .section2-btn i, .section3-btn i {
margin-left: 10px;
}

.section-btn:hover {
text-decoration: line-through;
background-color: #B00A08;
color: #fff;
}
.section2-btn:hover {
text-decoration: line-through;
background-color: #408206;
color: #fff;
}
.section3-btn:hover {
text-decoration: line-through;
background-color: #B00A08;
color: #fff;
}
.section-button {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.section-subtitle{
  width: 60%;
  height: auto;
  display: inline-block;
  background-color: transparent;
  font-size: 14px;
  font-weight:700;
  position: relative;
  text-transform: capitalize;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.section-subtitle p{
  border: 2px solid;
  padding: 10px 20px;
  border-radius: 16px;
}

.breadcrumb {
  line-height: 0;
}

.breadcrumb a {
  background-color: #B00A08;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  padding: 15px 15px;
  margin-bottom: -10px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;  
  line-height: 0;
}
.breadcrumb a:hover{
  background-color: #228B22;
  text-decoration: line-through;
}
.breadcrumb span {
  color: black;
}

.breadcrumb-date-box {
  border: 2px solid black;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  width: fit-content;
}

.breadcrumb-date-box p {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
}

#section1 {
background-color: #f0f0f0;
}

#section2 {
background-color: #e0e0e0;
}

#section3 {
background-color: #d0d0d0;
}

/* Banner Section */
.banner-index {
  margin-left: 80px; 
  width: calc(100% - 80px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #B00A08;
  color: white;
}

/* Banner Navigation */
.banner-nav {
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
align-items: center;
gap: 30px; 
z-index: 2;
}

.banner-nav-links ul {
display: flex;
gap: 30px;
margin: 0;
padding: 0;
}

.banner-nav-links li {
list-style: none;
}

.banner-nav-links a {
font-size: 18px;
color: white;
transition: color 0.3s;
text-decoration: none;
}
.banner-nav-links .active{
text-decoration: line-through;
}
.banner-nav-links a:hover {
text-decoration: line-through;}

.contact-us-btn {
position: fixed; 
left: 160%; 
padding: 10px 20px;
background-color: white;
color: #B00A08;
font-size: 18px;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
text-align: center;
white-space: nowrap; 
z-index: 1000;
text-decoration: none;
}

.contact-us-btn:hover {
background-color: #408206;
text-decoration: line-through;
color: white;
}


/* Banner Content */
.banner-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding: 40px;
}
.text-content-title{
  margin-top: 150px;
  width: 100%;
  margin-left: 70px;
  bottom: 100%;
}
.text-content-title.operation-status{
  margin-top: 70px;
}
.text-content-title.all-matches{
  width: 150%;
  margin-top: 70px;
}
.text-content-title.news{
  width: 150%;
}
.text-content-title.banner-leaderboard{
  margin-top: 100px;
}
.text-content h1 {
  text-transform: uppercase;
  font-size: 66px;
  font-weight: bold;
  line-height: 1.2;
}
.text-content .hashtag{
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
.text-content-news{
  margin-top: 100px;
}
.text-content-about{
  margin-top: 230px;
}
.text-content-subtitle{
  width: 100%;
  margin-top: 300px;
}
.text-content p {
  width: 70%;
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
}

.learn-more-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 16px;
  color: #fff;
  padding: 20px 30px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.learn-more-btn i {
  margin-left: 10px;
}

.learn-more-btn:hover {
  text-decoration: line-through;
  background-color: #408206;
  color: #fff;
}
/* Banner index */
.banner-bg {
  position: absolute;
  top: 50px; right: 10px;
  width: 100%;
  height: 90%;
  background-image: url('images/Bryce Easton.png');
  background-size: contain;      /* Ensures the full image fits */
  background-position: left center; /* Aligns the image to the left */
  background-repeat: no-repeat;
  z-index: 1;
}
.overlay-content-banner {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  align-items:end;
}
.news-reel-item, .today-tournament-item, .news-reel-carousel, .today-tournament-carousel {
  display: flex;
  margin-bottom: 20px;
  border-radius: 16px;
  width: 600px;
  overflow: hidden;
}
.news-reel-item {
  background-color: #228B22;
}
.today-tournament-item {
  background-color: white;
}
/* Image */
.news-reel-image, .today-tournament-image {
  width: 40%;
  aspect-ratio: 4 / 3; /* keeps height responsive */
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

.news-reel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.today-tournament-image img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  display: block;
}
/* Content */
.news-reel-content {
  width: 60%;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #228B22;
  box-sizing: border-box;
}
.today-tournament-content {
  width: 60%;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  box-sizing: border-box;
}

/* Badge */
.news-reel-content .badge {
  background-color: #B00A08;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}

/* Title */
.news-reel-content h2 {
  font-size: 20px;
  margin: 0 0 20px 0;
  text-align: left;
  line-height: 1.3;
  flex-grow: 1;
}

/* Button */
.news-reel-button {
  margin-top: auto;
}

.banner-index-more .learn-more-btn {
  margin-top: 0px;
  margin-left: 0px;
}
/* index ver3 */
.banner-index-ver3 {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.text-content-title.banner-index-headline{
  padding-left: 70px;
}
.text-content-title.banner-index-headline .text-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  width: 80%;
  margin: 1rem 0;
}
.banner-index-ver3 .banner-nav {
  left:47%
}
.index-ver3-item, .index-ver3-carousel, .index-ver3-content {
  position: relative;
  width: 100%;
  height: 100vh;
}

.index-ver3-item .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay-content {
  position: relative;
  z-index: 1;
  color: white;
  bottom: 10%;
  transform: translateY(-50%);
  padding: 0 20px;
}
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 7, 7, 0.4); /* adjust opacity as needed */
  z-index: 0.5;
}

/* Image Content */
.image-content{
  margin-top: -50px;
  height: 630px;
  z-index: 1;
}
.image-content.about img{
  width: 700px;
  height: auto;

}
.image-content.news{
  margin-top: 40px;
}
.image-content.index{
  margin-left: -150px;
  width: 100%;
  height: 90vh;
}
.image-content img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

  /* match schedule */
  .match-schedule {
    height: auto;
    padding: 10px 0;
  }
  .match-schedule-content{
    margin-left: 30px;
  }
  .match-schedule .owl-carousel{
    margin: 40px auto;
  }
  .player-content{
    margin-top: 50px;
  }
  .match-schedule-item {
    padding: 15px;
    width: 400px;
    margin: 0 auto;
    border: #eaeaea solid 1px;
    height: 180px; /* Set a fixed height for all items */
    display: flex;
    justify-content: space-between; /* Space out the logo and details */
    position: relative;
    border-radius: 16px;
    margin: 10px;
  }
  .match-card {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    height: 100%; 
    box-sizing: border-box; 
    justify-content: space-between; /* Space out the logo and details */
    position: relative;
  }
  .match-logo {
    width: 45%;
    height: 100%; 
    margin-right: 20px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .match-logo img {
    max-width: 100%; 
    max-height: 100%; 
  }
  
  .match-details {
    flex: 1;
    height: 100%; /* Make sure the details fit the container */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .match-date {
    font-size: 14px;
    color: #666;
    margin: 0;
  }
  
  .match-title {
    font-size: 18px;
    margin: 5px 0;
    font-weight: bold;
    color: #333;
  }
  
  .match-location {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .live-score-btn {
    background-color: #408206;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: auto; /* Push the button to the bottom */
  }
  
  .live-score-btn:hover {
    background-color: #B00A08;
  }
  .live-score-btn a{
    text-decoration: none;
    color: #ffffff;
  }

/* Position Owl Navigation */
.owl-nav {
  position: absolute;
  top: -80px;
  right: 10px;
  display: flex;
  align-items: center;
}

/* Style Navigation Buttons */
.owl-nav button {
  background: none;
  border: none;
  color: #000; 
  font-size: 30px; 
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Divider Styling */
.owl-nav .custom-divider {
  color: #000;
  font-size: 25px;
  margin: 0 10px; 
  line-height: 0; 
}

/* Hover Effects */
.owl-nav i:hover {
  color: #408206; /* Change color on hover */
  transform: scale(1.5);
}
.owl-dots {
  text-align: center;
  padding-top: 45px;
}
.owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #0f922c;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #408206;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
/* news- today's highlights */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.news-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 5px;
}
/* index-news */
.index-news{
  height: auto;
  padding-bottom: 70px;
}
.custom-grid {
  display: grid;
  gap: 15px; 
  grid-template-columns: repeat(4, 1fr); 
  grid-template-rows: auto auto; 
  margin-left: 30px;
}
/* Top Row: Layout Adjustments */
.item1 {
  grid-column: span 2; 
  background-color: #408206;
  color: #fff;
  position: relative;
  border-radius: 16px;
  height: 250px; 
  overflow: hidden;
}

.item2, .item3, .item4, .item5, .item6, .item7 {
  border-radius: 16px;
  position: relative;
  height: 250px; 
  overflow: hidden;
}
.news1 {
  grid-column: span 2; 
  grid-row: span 2; 
  background-color: #408206;
  border-radius: 16px;
  color: #fff;
  position: relative;
  height: 515px; 
  overflow: hidden;
}

.news2, .news3 {
  grid-column: span 1; /* Each occupies one column */
  grid-row: span 1; /* Each occupies one row */
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
}

.news4, .news5 {
  border-radius: 16px;
  grid-column: span 1; /* Each occupies two columns side-by-side */
  grid-row: span 1; /* Both appear on the bottom row */
  position: relative;
  height: 250px;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  font-size: 12px;
  color: #FFFFFF;
  z-index: 2;
}
.overlay-content small{
  color: #eaeaeab8;
}
.item2::before, .item3::before,.item4::before, .item5::before,.item6::before, .item7::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}
.news1::before, .news2::before, .news3::before, .news4::before, .news5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}
/* .headline {
  font-size: 12px;
  line-height: 1.1;
  margin: 0;
} */

.grid-item-btn {
  position: absolute;
  bottom: 50%; 
  left: 45%;
  border-radius: 16px;
  transform: translate(-50%, 50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  z-index: 3;
}
.grid-item-btn:hover{
  background-color: #408206;
}
.grid-item-link {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  border-radius: 16px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 16px;
  text-transform: uppercase;
}
.grid-item-link:hover{
  text-decoration: line-through;
}
.grid-item-link span {
  margin-left: 10px; /* Spacing for the arrow */
}

/* Hover Effect */
.item2:hover .grid-item-btn, .item3:hover .grid-item-btn, .item4:hover .grid-item-btn, .item5:hover .grid-item-btn,.item6:hover .grid-item-btn,.item7:hover .grid-item-btn{
  bottom: 20%; /* Adjust position to be visible */
  opacity: 1;
  visibility: visible;
}

.item2:hover::before, .item3:hover::before, .item4:hover::before, .item5:hover::before, .item6:hover::before, .item7:hover::before {
  background-color: #B00A08;
}
/* Hide Headline on Hover */
.item2:hover .headline, .item3:hover .headline, .item4:hover .headline , .item5:hover .headline , .item6:hover .headline , .item7:hover .headline{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* Hover Effect */
.news2:hover .grid-item-btn, .news3:hover .grid-item-btn, 
.news4:hover .grid-item-btn, .news5:hover .grid-item-btn {
  bottom: 40%; 
  opacity: 1;
  visibility: visible;
}
.news1:hover .grid-item-btn{
  bottom: 70%;
  left: 25%;
  opacity: 1;
  visibility: visible;
}
.news1:hover::before, .news2:hover::before, .news3:hover::before, 
.news4:hover::before, .news5:hover::before {
  background-color: #B00A08;
}

/* Hide Headline on Hover */
.news1:hover .headline, .news2:hover .headline, .news3:hover .headline, 
.news4:hover .headline, .news5:hover .headline {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.news1:hover small, .news2:hover small, .news3:hover small, 
.news4:hover small, .news5:hover small {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* Smooth transition for the headline */
.headline {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* Typography & Read More Button */
.news-index-item-content{
  display: flex;
}
.news-index-item1-content{
  margin: 30px;
}
.news-index-item-content img{
  width: 300px;
  height: 250px;
  object-fit: cover; /* Ensures the image fills the container */
  display: block;
}
.news-index-item-content .badge {
  background-color: #2AA344;
  color: #fff;
  display: inline-block;
  padding: 7px 7px;
  font-size: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.small-date{
  color: #818181;
}
.index-news h2, .index-news h3, .all-news h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: regular;
}

.news-index-item1-content .read-more{
  margin-top: 10px;
}
.read-more {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 30px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #fff;
  color: #408206;
  border-color: #408206;
  text-decoration: line-through;
}

/* index-video */
.index-videos{
  margin-top: 50px;
  color: #000;
}
.video-carousel{
  margin-top: 60px;
}
/* Video Item Container */
.video-item {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  color: inherit;
  background-color: #B00A08;
  margin: 10px;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 170px;
  background-color: #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button i {
  font-size: 20px;
  color: #8B0000;
}

/* Video Details */
.video-details {
  padding: 10px 15px;
  color: #fff;
}

.video-category {
  background-color: #8B0000;
  color: #fff;
  display: inline-block;
  padding: 7px 7px;
  font-size: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-weight: bold;
  text-transform:none;
}

.video-title {
  font-size: 16px;
  margin: 0 0 10px 0;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ddd;
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* index-players */
.index-players{
  height: auto;
  padding-bottom: 50px;
}
.golfer-card {
  position: relative;
  width: 310px;
  height: 430px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.golfer-card-front, 
.golfer-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    transition: opacity 0.6s ease, z-index 0.6s ease;
}

.golfer-card-front {
  z-index: 2;
}

.golfer-card:hover .golfer-card-front {
  z-index: 1;
  opacity: 0;
}

.golfer-card-back {
  z-index: 0;
  opacity: 0;
  background-color: #fff;
}

.golfer-card:hover .golfer-card-back {
  z-index: 2;
  opacity: 1;
}

.flag-background {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.flag-background .flag-icon {
  width: 350px; 
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 5px solid red; 
  transition: transform 0.8s ease;
}

.golfer-card:hover .flag-background .flag-icon {
  transform: translateX(150%);
}
.golfer-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  z-index: 1;
  transition: transform 0.8s ease;
}

.golfer-card:hover .golfer-image {
  transform: translateX(-150%);
}
.golfer-name {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  height: 70%; 
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff; 
  padding: 10px 15px;
  text-align: center;
  display: flex;
  align-items: flex-end; /* Keeps text at the bottom */
  justify-content: center; /* Centers text horizontally */
}
.golfer-card-ranking{
  position: absolute;
  width: 100%;
  top: 0rem;
  left: 0rem;
  z-index: 2;
  color: #524f4f; 
  padding: 10px 15px; /* Padding around text */
  transition: transform 1s ease, opacity 1s ease; 
}
.golfer-card-ranking h2{
  font-size: 30px;
  font-weight: bold;
}
.golfer-card:hover .golfer-card-ranking {
  transform: translateX(-250px);
  opacity: 0;
  background: none; /* Removes the linear gradient */
  }
  

.golfer-card:hover .golfer-name {
transform: translateY(-250px);
opacity: 0;
background: none; /* Removes the linear gradient */
}


.golfer-card-back-content {
    padding: 20px;
}
.golfer-card-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #000 solid 1px;
    margin: 0 0;
}

.golfer-card-title-name h3 {
    text-transform: uppercase;
    line-height: 1;
    color: #D9D9D9;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}

.golfer-card-title-country {
    width: 24px;
    height: 16px;
}
.golfer-card-title-details{
    display: flex;
    justify-content: space-between;
    align-items: left;
    text-align: left;
    border-bottom: #000 solid 1px;
    padding-bottom: 10px;
}
.golfer-card-details-block p{
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.3;
}
.golfer-card-details-block .top{
    color: #818181;    
}
.golfer-card-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.golfer-card-stat-row {
    display: flex;
    justify-content: space-between;
}

.golfer-card-stat-title {
    font-size: 12px;
    color: #666;
}

.golfer-card-stat-value {
    font-size: 12px;
    color: #000;
}
.golfer-card-section-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}
/* Container Styles */
.pokemon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Pokemon Card */
.pokemon-card {
  width: 350px;
  height: 430px;
  margin-bottom: 20px;
  border-radius: 16px;
  perspective: 1000px;
  transition: transform 0.3s ease;
  position: relative;
  box-shadow: 0px 10px 14px -10px rgba(0,0,0,0.1);}

.pokemon-card:hover {
  transform: scale(1.05);
}

/* Flip Card */
.pokemon-card-front,
.pokemon-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.pokemon-card.is-flipped .pokemon-card-front {
  transform: rotateY(180deg);
}

.pokemon-card.is-flipped .pokemon-card-back {
  transform: rotateY(0deg);
}

/* Front of the Card */
.pokemon-card-front {
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}

/* Back of the Card */
.pokemon-card-back {
  background-color: #FDFCFA;
  border-radius: 16px;
  transform: rotateY(180deg);
}

/* pokemon-front */
.pokemon-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title and info positioning */
.pokemon-card-title {
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  border-radius: 16px;
}
.pokemon-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: #000 solid 1px;
  margin: 10px 0;
}

.pokemon-title-name h2 {
  color: #1E1E1E;
  font-size: 20px;
  margin: 5px 0;
  font-weight: regular;
}

.pokemon-title-name h3 {
  color: #1e1e1e5b;
  font-weight: regular;
  font-size: 14px;
  margin: 0;
}

.pokemon-title-country {
  width: 24px;
  height: 16px;
}
.pokemon-button{
  margin: 20px 0;
}
.pokemon-btn {
  background-color: #408206;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  margin-top: auto; 
}

.pokemon-btn:hover {
  background-color: #B00A08;
  text-decoration: line-through;
}
.pokemon-card-content {
  padding: 20px;
}
.pokemon-title-details{
  display: flex;
  justify-content: space-between;
  align-items: left;
  text-align: left;
  border-bottom: #000 solid 1px;
  padding-bottom: 10px;
}
.pokemon-details-block p{
  margin: 0;
  line-height: 1.3;
}
.pokemon-details-block .top{
  color: #818181;
}
.pokemon-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.pokemon-stat-row {
  display: flex;
  justify-content: space-between;
}

.pokemon-stat-title {
  font-size: 14px;
  color: #666;
}

.pokemon-stat-value {
  font-size: 14px;
  color: #000;
}
.pokemon-section-title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
.footer {
  margin-top: 15px;
  margin-left: 40px;
  background-color: #fff;
  box-shadow: 0px -10px 27px -6px rgba(0,0,0,0.1);
}
.footer h3{
  font-size: 1.2rem;
  font-weight: bold;
}
.footer-logo img {
  max-width: 70%; /* Ensure responsiveness */
  height: auto;
}


.footer ul {
  padding: 0;
  margin: 0;
  list-style:circle;
}
.footer .get-in-touch {
  list-style: none;
}
.footer a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  font-size: 0.8rem;
  margin: 0;
}
.footer-social a {
  color: #333;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #008000; /* Change to your preferred hover color */
}

.footer-social i {
  font-size: 1.5rem;
}
footer .samaita-logo img {
  height: 30px; /* Adjust height as needed */
  width: auto;  /* Maintain aspect ratio */
  margin-left: 5px; /* Add spacing if needed */
}


/* country-players */
.country-players{
  height: auto;
}
.country-players-title{
  padding-top: 40px;
}

/* about-section */
.about{
  height: 110vh;
}
.about-section {
  display: grid;
  gap: 0px; 
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto; 
  margin-left: 30px;
}

.about-grid-item {
  overflow: hidden;
  text-align: center;
}
.about-grid-item.image{
  height: 300px;
}

.about-grid-item img {
  width: 100%;
  min-height: 250px;
}

.about-grid-item h2 {
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 10px 5px 10px;
}

.about-grid-item p {
  text-align: left;
  padding: 0px 10px;
  font-size: 14px;
  color: #f0f0f0;
}

.about-logo-section {
  grid-column: span 2;
  text-align: center;
  padding: 20px 0;
}

.about-logo-section img {
  max-width: 290px;
}

.about-logo-section h1 {
  font-size: 2rem;
  color: #900;
  margin-top: 10px;
}

.about-grid-item.green {
  background-color: #008000;
  color: white;
}

.about-grid-item.red {
  height: 250px;
  background-color: #900;
  color: white;
}
.news-players{
  height: auto;
}
.news-player-item {
  display: flex;
  align-items: center;
  background-color: #ffffff; 
  border-radius: 16px;
  color: #000;
  max-width: 700px;
  height: 250px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 0;
  margin-bottom: 20px;
}

.news-player-image {
  width: 250px; /* Adjust for better fit */
  height: 100%;
  background: #B00A08; /* White background */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure proper scaling */
}

.news-player-info {
  flex: 1;
  padding: 20px; 
}

.news-player-name {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.news-player-description {
  font-size: 12px;
  line-height: 1.5;
  color: #818181;
}

/* news-all */
.all-news{
  height: auto;
}
.all-news-content{
  margin-left: 40px;
  padding-bottom: 50px;
}
.news-all {
  border-radius: 16px;
  position: relative;
  margin-bottom: 20px;
  height: 250px;
  overflow: hidden;
}        
.news-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}
/* Hover Effect */
.news-all:hover .grid-item-btn {
  bottom: 40%; 
  opacity: 1;
  visibility: visible;
}

.news-all:hover::before {
  background-color: #B00A08;
}

/* Hide Headline on Hover */
.news-all:hover .headline, .news-all:hover small {
  opacity: 0;
  visibility: hidden;
}
 /* contact-form */
 .contact-form-section{
  height: auto;
 }
.contact-container {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto;
  border-radius: 16px;
  max-width: 1200px;
  background-color: #fff;
  box-shadow: 0px 0px 27px 5px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1;
  background-color: #fff;
  color: black;
  padding: 40px;
}
.contact-info.admin-form{
  flex: 0.5;
}
.contact-info img{
  padding: 20px;
  margin-bottom: 30px;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  font-size: 20px;
}

.contact-info span {
  font-size: 14px;
}

.contact-form {
  color: #fff;
  background-color: #408206;
  flex: 2;
  padding: 40px;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: regular;
  margin-bottom: 5px;
}

input,
select,
option,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

textarea, text {
  height: 400px;
  resize: none;
}

.contact-form-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid ;
  padding: 20px 30px;
  margin-left: 0px;
  margin-top: 40px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.contact-form-btn:hover {
  text-decoration: line-through;
  background-color: #B00A08;
  color: #fff;
}

/* news-article */
.news-article{
  height: auto;
}
.news-article-content {
  margin-top: 20px;
  margin-bottom: 50px;
}
.section-news-article-badge{
  margin-left: 50px;
}
.news-article-badge{
  display: inline-block;
  color: #FFFFFF;
  padding: 7px 7px;
  border-radius: 4px;
  font-size: 10px;
}
.image-container {
  text-align: center;
  margin: 0px 0px 20px 0px;
}
.image-wrapper {
  position: relative;
  border-radius: 16px;
  width: 100%;
  padding-top: 56.25%; 
  overflow: hidden;
}
.image-wrapper img {
  position: absolute;
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:contain; 
}

.image-caption {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}

.article-text{
  margin-left: 50px;
}
.article-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-text strong {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: bold;
  color: #000;
}
/* player-sub */
.banner-index.player-sub{
  overflow: hidden;
}
.banner-content.player-sub {
  position: relative; 
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding: 40px;
}

/* Circular Background */
.circular-image-container {
  width: 850px;
  height: 770px;
  background-color: #408206; 
  border-radius: 50%;
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 1; 
  pointer-events: none; 
}

/* Text Content Title */
.text-content-title.player-sub {
  position: absolute; 
  width: 40%;
  top: 40%;
  left: 0%; 
  z-index: 2; 
  color: white; 
}

.text-content-subtitle.player-sub {
  width: 20%;
  position: absolute; 
  z-index: 2;
  color: white; 
}

/* Image Content */
.image-content.banner-leaderboard img{
  width: 500px;
  height: 500px;
  margin: 130px 0 0 50px;
  border-radius: 50%;
  object-fit: cover;
}
.image-content.all-matches{
  z-index: 1; 
}
.image-content.all-matches img {
  height: 130%;
  max-width: 100%;
  margin-left: 17em;
  object-fit: cover;
}
.image-content.player-sub {
  z-index: 1; 
}

.image-content.player-sub img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.image-content.player-sub {
  position: relative;
}
/* Container */
.info-container {
  margin-left: -70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 150px;
  color: white;
  text-align: center;
  padding: 20px;
}
.info-container.all-matches{
  margin-top: 50px;
  gap: 30px;
}
/* Info Block */
.info-block {
  flex: 1;
}
.info-block img{
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 16px;
}
.info-block p {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}

.info-block h1 {
  font-size: 72px;
  margin: 0 0 0 -70px;
}
/* Breadcrumb Container */
.breadcrumb-container.player-sub {
  position: relative;
  width: 200%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Breadcrumb Text */
.breadcrumb.player-sub {
  font-size: 14px;
  margin: 0 0 -30px 0;
}

.breadcrumb.player-sub a {
  color: white;
  text-decoration: underline;
  margin-right: 5px;
}
.breadcrumb.player-sub a:hover {
  text-decoration: line-through;
}
/* Learn More Container */
.learn-more-container.player-sub {
  position: relative;
  display: inline-block;
}

.learn-more-btn.player-sub {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn-more-btn.player-sub .arrow {
  margin-left: 10px;
  font-size: 18px;
}
.learn-more-btn.player-sub:hover {
  text-decoration: line-through;
  color: white;
}
/* player-story */
.player-story{
  height: auto;
  padding-bottom: 30px;
}
.player-story.section-title{
  width: 200%;
}
.player-story-content{
  margin-left: 40px;
  padding: 20px 50px ;
  border: #000 1px solid;
}
.player-story-image {
  margin-top: 30px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Card container styling */
.statistic-player{
  height: auto;
}
.stat-card {
  background-color: #4CAF50; /* Green background */
  color: #FFFFFF; /* White text */
  padding: 20px;
  width: 250px;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Title styling */
.stat-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Divider styling */
.stat-divider {
  border: 1px solid #FFFFFF;
  margin: 10px 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Percentage styling */
.stat-percentage {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Label styling */
.stat-label {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Description styling */
.stat-description {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1); /* Subtle transparent background */
}
.player-game {
  background-color: #8B0000; /* Dark red background */
  color: white;
  padding: 20px;
  border-radius: 8px; /* Rounded corners */
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.player-game-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.player-game-description {
  font-size: 16px;
  line-height: 1.6;
}
/* all-matchers */

.current-match-container {
  margin-left: -70px;
  width: 200%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background-color: #FFFFFF;
}

.current-match-block {
  color: #000; 
  padding: 15px;
  flex: 1 1 200px; 
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  min-height: 150px; 
  position: relative;
}
.current-match-block::after {
  content: '';
  position: absolute;
  top: 30%; 
  bottom: 10%; 
  right: 0; 
  width: 2px; 
  background-color: #000; 
}

.current-match-block:last-child::after {
  display: none; /* Remove border for the last block */
}
.current-match-block img {
  border-radius: 16px;
  padding: 15px;
  width: 100px;
  height: auto;
  margin-top: 10px;
}
.current-match-block h3{
  font-size: 20px;
}
.current-match-block .label {
  font-weight: regular;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #008000;
  margin-top: 20px; 
  margin-bottom: 10px; 
  align-self:center; 
}
/* Pagination Container */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  margin: 20px 40px;
}

/* Pagination Links */
.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #408206;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.pagination-link:hover {
  background-color: #f0f0f0;
}

.pagination-link.active {
  background-color: #408206;
  color: #ffffff;
}

/* Pagination Arrows */
.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #408206;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
}

.pagination-arrow:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

/* match-calendar */
.match-calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.calendar-container {
  width: 100%;
  max-width: 1250px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-left h1 {
  font-size: 90px;
  font-weight: bold;
  margin: 0;
}

.calendar-right {
  text-align: right;
}

.calendar-right h2 {
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.calendar-right h3 {
  font-size: 24px;
  margin: 0;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th {
  border: 1px solid #eaeaea;
  text-align: left;
  position: relative; 
  padding: 20px;
}
.calendar-table td {
  height: auto;
  vertical-align: top;
  position: relative; 
  padding-bottom: 10px; 
  border: 1px solid #eaeaea;
  text-align: left;
  position: relative; 
  padding: 10px;
}
.calendar-table th {
  font-weight: bold;
  color: #FFFFFF;
  background-color: #B00A08;
  text-align: center;
}

.calendar-table td {
  height: 100px;
  vertical-align: top; /* Ensures the content aligns properly */
}

.date-number {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
/* Style for the container holding multiple logos */
/* Style for the container holding multiple logos */
.tour-logos {
  display: flex;
  flex-wrap: wrap; /* Allows logos to wrap to the next line */
  gap: 10px;
  align-items: center; /* Centers the logos vertically */
  justify-content: flex-start; /* Aligns logos to the left */
  position: relative; /* Remove absolute positioning to let the row expand */
  margin-top: 10px; /* Adds some spacing from other content */
}

/* Styling for the individual logos */
.tour-logo {
  width: 50px; 
  height: auto; 
  display: block;
}
.loading-bar {
  position: absolute; /* Position it relative to the number-container */
  top: 0;
  left: 0;
  width: 100%; /* Ensure it spans the full width of the container */
  height: 4px;
  background-color: red;
  z-index: 10;
  transition: width 0.3s ease-in-out;
}

.number-container {
  width: 90%;
  max-width: 400px;
  margin: 20px;
  background-color: #408206;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  color: white;
  display: flex;
  position: relative; /* Needed for positioning the loading bar */
  flex-direction: column;
  justify-content: flex-start; /* Ensures the content starts from the top */
  position: relative;
  overflow-y: auto; /* Allows scrolling if there is too much content */
}

.date-container {
  display: flex;
  align-items: left;
  justify-content: left;
  margin-bottom: 10px;
}

.day-number {
  font-size: 60px;
  font-weight: bold;
  margin-right: 10px;
}

.day-name {
  font-size: 24px;
  text-transform: capitalize;
}

.match-container {
  background: white;
  padding: 10px;
  border-radius: 10px;
  text-align: left;
  margin-left: 70px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.match-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 10px;
}

.match-info {
  flex-grow: 1;
}

.match-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  color: #222;
}

.match-location {
  font-size: 12px;
  color: #555;
}
.pre-footer{
  height: auto;
}
.pre-footer-content{
  margin-left: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #FFFFFF;
  border-radius: 16px;
}
.pre-footer-text{
  padding: 50px 50px ;
}
.pre-footer-text h1{
  font-size: 48px;
  font-weight: bold;
}
.pre-footer-img{
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: fill;
}
.pre-footer-img img{
  padding: 20px;
  width: 70%;
}
.today-highlight {
  background-color: #eaeaea; /* Highlight color */
  color: #fff; /* Text color */
  font-weight: bold;
  text-align: center;
}
/* leaderboard */
.banner.banner-leaderboard {
  margin-top: 2%;
}

.banner.banner-leaderboard h4 {
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 10px;
  color: #fff;
}

.scoreboard {
  width: 90%;
  max-width: 600px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.scoreboard table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.scoreboard thead th {
  text-align: left;
  font-size: 1em;
  border-bottom: 2px solid #fff;
  padding: 10px;
}

.scoreboard tbody tr {
  border-bottom: 1px solid #fff;
}

.scoreboard td {
  padding: 10px;
  font-size: 20px;
  vertical-align: middle;
}
td .leaderboard-rank{
  font-size: 20px;
  font-weight: bold;
}
td .flag-icon {
  font-size: 2.5rem;
  display: inline-block;
  border-radius: 5px;
  margin: auto;
}

.scoreboard td .first-name, .full-leaderboard td .first-name {
  text-align: left;
  display: block;
  font-size: 0.7em;
  font-weight: lighter;
}

.scoreboard td .last-name, .full-leaderboard td .last-name {
  text-align: left;
  display: block;
  font-size: 1em;
  font-weight: bold;
}

.leaderboard-section{
  height: auto;
}
.leaderboard {
  width: 100%;
  max-width: 1400px;
  border-radius: 10px;
  padding: 20px;
}

/* Podium Section */
.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-top: 150px;
}
.step {
  width: 140px;
  height: auto;
  position: relative;
  text-align: center;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  cursor: pointer;
  overflow: visible;
}
.step1 { height: 100px; background-color: #28a745; }
.step2 { height: 65px; background-color: #B00A08; }
.step3 { height: 45px; background-color: #B00A08; }
.podium-number { position: absolute; top: 10px; width: 100%; font-size: 1.5em; font-weight: bold; }

.podium-golfer-container {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100px;
  height: 150px;
  transition: transform 0.5s ease;
  z-index: 2;
}

.podium-golfer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.podium-card {
  position: absolute;
  bottom: 100%;
  width: 150px;
  height: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #000;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  z-index: 0;
}

.podium-card .podium-stat {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: right;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.podium-stat-label {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 15px;
}

.podium-stat-value {
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
  font-weight: bold;
}

.podium-flag {
  position: absolute;
  bottom: calc(100% + 50px); 
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
}
.podium-card .podium-name{
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: right;
  position: absolute;
  top: 10px;
  right: 10px;
}
.first-name{
  text-align: left;
  display: block;
  font-size: 0.7em;
  font-weight: lighter;
}
.last-name {
  text-align: left;
  display: block;
  font-size: 1em;
  font-weight: bold;
}

/* Hover Effects */
.step:hover .podium-golfer-container {
  transform: translateX(-40px);
}
.step:hover .podium-flag{
  font-size: 2rem;
  transform: translate(-70px, -100px);
  z-index: 1;
}
.step:hover .podium-card {
  margin-bottom: 10px;
  opacity: 1;
}
/* Scoreboard Section */
.full-leaderboard {
  margin-left: 3%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 95%;
  border-collapse: collapse;
  border-radius: 16px;
  padding: 20px;
}
.full-leaderboard  table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.full-leaderboard thead th {
  text-align: center;
  font-size: 1em;
  padding: 10px;
}

.full-leaderboard tbody tr {
  border-bottom: 1px solid #cecece;
}

.full-leaderboard td {
  padding: 10px;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
}
.full-leaderboard th:nth-child(3){
  text-align: left;
  width: 40%;
}
.scorecard th:nth-child(3){
  text-align: left;
  width: 0%;
}

.full-leaderboard td:nth-child(n+6) {
  position: relative;
}

.full-leaderboard td:nth-child(n+6):not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: -1px;
  width: 2px;
  background-color: #ccc;
  border-radius: 4px;
}

.scorecard td:nth-child(6)::after, .scorecard td:nth-child(7)::after, .scorecard td:nth-child(8)::after, .scorecard td:nth-child(9)::after{
  display: none;
}

.scorecard-row {
  border-top: 1px solid #ddd;
  padding: 30px;
  display: none; /* Initially hidden */
}

.scorecard {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
  overflow: hidden;
}

.scorecard table tr th {
  width: 100%; 
  overflow: hidden; 
}

.scorecard table, .scorecard tr, .scorecard th {
  border-top: 1px solid black;
}

.scorecard th, .scorecard td {
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  padding: 0.5rem; /
}

.scorecard table tr td:first-child, 
.scorecard table tr th:first-child {
  border-left: 1px solid black;
}

.scorecard tr:nth-child(1), .scorecard th:nth-child(1) {
  border-top-left-radius: 0.8rem;
}

.scorecard td {
  font-size: 12px;
  padding: 8px;
}
.scorecard tr:nth-child(6), .scorecard tr:nth-child(7){
  background-color: #eeedea  ;
}
.scorecard-greenbg{
  background-color: #4CAF50;
  font-weight: bold;
  color: #FFFFFF;
}
.scorecard-redbg{
  background-color: #ca7776;
  font-weight: bold;
  color: #FFFFFF;
}
.update-time {
  text-align: right;
  font-size: 0.8em;
  color: #888;
}
.score_bg {
  font-size: 1em;
  font-weight: bold;
  color: #000;
  background: #cecece;
  border-radius: 16px;
  padding: 5px 10px;
  width: 60px;
  height: 45px;
  line-height: 1;
  margin: 10px;
  text-align: center;
  display: inline-flex; 
  justify-content: center; 
  align-items: center; 
}
.round_score_bg {
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  border-radius: 50%; 
  width: 20px; 
  height: 20px; 
  font-size: 12px; 
  text-align: center;
}

.hole-in-one { background-color: #fcc200 ; color: white; font-weight: bold; }
.eagle { background-color: #ffdf00 ; color: white; font-weight: bold; }
.birdie { background-color: #B00A08; color: white; font-weight: bold; }
.bogey { background-color: #6F7378; color: white; font-weight: bold; }
.double_bogey { background-color: #0C0404; color: white; font-weight: bold; }

.positive { background-color: #408206; color: white; font-weight: bold; }
.negative { background-color: #B00A08; color: white; font-weight: bold; }
.par { background-color: #1A1A97; color: white; font-weight: bold; }

.missing-score-row {
  background-color: #eeeeee; /* Light red background for missing scores */
}
.scorecard-key {
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.key-box {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.wide-input{
  width: 100px;
}
.scorecard-transposed {
  display: none;
}
.phone-calender{
  display: none;
}
/* Responsive Styling */
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .vertical-nav {
    position: sticky; 
    top: 0;
    width: 100%;
    height: 80px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: solid 5px #fff;
    padding: 0 10px;
  }
  .overlay-menu {
    width: 100%;
  }

  .logo {
    display: none;
  }
  .vertical-nav.banner-index-nav .menu-icon {
    color: #000;
  }
  .vertical-nav.banner-index-nav .menu-icon:hover {
    color: #B00A08;
  }
  .menu-icon {
    margin: 0 20px;
    font-size: 20px;
  }
  .vertical-nav.banner-index-nav .icon {
   color: #000;
  }
  .vertical-nav.banner-index-nav .social-icons:hover {
   color: #B00A08;
  }
  .social-icons {
    margin-top: 0px;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    margin-right: 10px;
  }
  .icon {
    margin: 0;
    font-size: 16px;
  }
  .banner-index {
    margin-left: -80px;
    width: 150%;
  }
  .text-content-title.banner-index-headline{
  padding-left: 0px;
  }
  .banner-nav{
    display: none;
  }
  .text-content-title{
    width: 80%;
    z-index: 1;
  }
  .text-content-title.banner-index-headline{
    margin-top: -100px;
    width: 100%;
  }
  .text-content-title.news{
    margin-top: -150px;
    width: 40%;
  }
  .text-content-about{
    width: 50%;
  }
  .text-content-title.all-matches{
    margin-top: -100px;
    width: 80%;
  }
  .text-content-title.banner-leaderboard{
    margin-top: 0px;
  }
  .image-content{
    margin-top: 0px;
  }
  .image-content.index{
    margin-top: -600px;
    margin-left: 0px;
    z-index: -1;
  }
  .image-content.news{
    margin-top: -300px;
  }
  .image-content.about{
    margin-left: 80px;
    height: 450px;
    margin-top: -800px;
  }
  .image-content.players{
    margin-top: -500px;
  }
  .image-content.all-matches{
    display: none;
  }
  .image-content.banner-leaderboard img{
    display: none;
  }
  .image-content.contact-image{
    margin-top: -400px;
    margin-left: -100px;
    height: 80vh;
  }
  .section-title h1{
    flex: 2;
    width: 95%;
    font-size: 1.7rem;
  }
  .section-btn, .section2-btn, .section3-btn {
   display: none;
  }
  .section-subtitle{
    display: none;
  }
  .index-news, .index-videos, .news-players, .all-news, .match-schedule{
    height: auto;
  }
  .news-article-content{
    margin-left: -20px;
  }
  .section-title.news-article {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
  }
  .section-title.news-article h1{
    width: 95%;
    font-size: 1.7rem;
    margin-bottom: 10px;
    padding: -50px;
  }
  .section-button.news-article {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
  }
  .article-text{
    margin-left: 15px;
  }
 .custom-grid {
    grid-template-columns: 1fr;
    margin-left: 10px;
  }
  .footer{
    margin-left: 0;
  }
  .footer ul{
    display: none;
  }
  .footer h3{
    display: none;
  }
  .overlay-content-banner {
    padding: 10px;
  }

  .overlay-content-banner .row {
    flex-direction: column;
  }

  .overlay-content-banner .col-3,
  .overlay-content-banner .col-9 {
    width: 100% !important;
    max-width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 20px;
  }
  .banner-index-headline{
    width: 50%;
    font-size: 1rem;
  }

  .news-reel-carousel,
  .today-tournament-carousel {
    align-items: center;
  }

  .news-reel-item,
  .today-tournament-item {
    width: 65% !important;
    border-radius: 16px;
    margin-left: 50px;
  }

  .news-reel-image,
  .today-tournament-image {
    aspect-ratio: auto;
  }

  .today-tournament-image img {
    padding: 10px;
  }

  .news-reel-content,
  .today-tournament-content {
    width: 100%;
    padding: 15px;
    border-radius: 0 0 16px 16px;
  }

  .news-reel-content h2,
  .today-tournament-content h2 {
    font-size: 18px;
  }

  .news-reel-content .badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  .banner-index-more {
    display: none;
  }
  .banner-bg {
    background-size: cover;
    background-position: center;
  }
  .golfer-card, .video-item {
    align-items: center;
    justify-content: center;
    margin-left: 40px;
  }
  .about-section {
    grid-template-columns: 1fr; /* One column for mobile */
    gap: 10px;
    margin-left: 10px;
  }
  .about-grid-item img {
    min-height: 150px; /* Adjust image size for mobile */
  }

  .about-logo-section img {
    max-width: 200px; /* Scale down logo for smaller screens */
  }

  .about-logo-section h1 {
    font-size: 1.5rem; /* Reduce heading size */
  }

  .about-grid-item h2 {
    font-size: 24px; /* Further reduce heading size */
    padding: 5px 10px;
  }

  .about-grid-item p {
    font-size: 12px; /* Smaller paragraph text */
    padding: 5px 10px;
  }
  .news-player-image {
    display: none;
  }
  .news-all{
    margin-bottom: 20px;
  }
  .banner-all-matches{
    height: auto;
  }
  .current-match-container {
    display: flex;
    margin-left: 7px;
    flex-direction: column;
    align-items: center;
    width: 80%;
    gap: 5px; 
  }
  
  .current-match-block {
    flex: none; 
    width: 100%; 
    min-height: 120px; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
  }
  .current-match-block::after {
    display: none; /* Remove border for mobile */
  }
  .current-match-block img {
    width: 100%; 
    height: auto; /* Maintain aspect ratio */
    margin-top: 5px; /* Add some spacing above */
    border-radius: 16px; /* Retain rounded corners */
  }
  
  .current-match-block h3 {
    font-size: 18px; /* Adjust heading size */
    margin: 10px 0; /* Add spacing above and below the heading */
  }
  
  .current-match-block .label {
    font-size: 0.8rem; /* Adjust label size */
    color: #008000; /* Keep the green color */
    margin: 10px 0; /* Add some spacing around the label */
  }
  .match-calendar, .pre-footer-img{
    display: none;
  }
  .phone-calender {
    height: auto;
    display: block !important;
  }
  .banner-leaderboard .learn-more-btn{
    display: none;
  }
  .text-content-subtitle .banner-leaderboard{
    display: none;
  }
  .full-leaderboard {
    width: 100%;
    padding: 5px;
  }

  .full-leaderboard.article-leaderboard {
    width: 100%;
    margin-left: 0%;
    margin: 10px;
  }
  .full-leaderboard table {
    min-width: 400px;
  }

  .full-leaderboard th,
  .full-leaderboard td {
    white-space: wrap; /* Prevents breaking */
    font-size: 14px;
    padding: 6px;
  }
  .full-leaderboard .flag-icon{
    width: 30px;
    height: auto;
  }
  .full-leaderboard th:nth-child(3){
    text-align: left;
    width: 0%;
  }
  .full-leaderboard th,
  .full-leaderboard td:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)):not(:last-child) {
    display: none;
  }
  .full-leaderboard thead th {
    text-align: center;
    font-size:0.7rem;
    padding: 0px;
  }
  td .leaderboard-rank{
    font-size: 10px;
    font-weight: bold;
  }
  .score_bg {
    width: 50px;
    height: auto;
  }
  .full-leaderboard{
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    margin-left: -20px;
  }
  .scorecard{
    table-layout: fixed;
    margin-left: -15px;
  }
  .scorecard-default {
    display: none;
  }
  .scorecard-transposed {
      display: block;
      overflow-x: auto;
      margin-right: 10px;
      width: 90%;
      white-space: nowrap;
  }

  /* Reduce padding & font size for mobile */
  .scorecard td, .scorecard th {
      padding: 5px 0;
      font-size: 10px;
      width: 0px;
  }
  .scorecard-key {
    display: block;

  }
  .news-index-item-content img{
    width: 100%;
  }
  .news-index-item1-content .read-more{
    margin-top: 20px;
  }
  .match-schedule-item {
    width: 300px;
  }

}

@media (max-width: 900px) {
  .overlay-content-banner .row {
    flex-direction: column;
  }

  /* Force col-3 (title) to appear first */
  .overlay-content-banner .col-3 {
    order: 1;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  /* col-9 (carousels and buttons) comes after */
  .overlay-content-banner .col-9 {
    order: 2;
    width: 100%;
  }
  .news-reel-item,
  .today-tournament-item {
    width: 100%;
  }

  .news-reel-image,
  .today-tournament-image {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .news-reel-content,
  .today-tournament-content {
    width: 100%;
    padding: 16px;
  }

  .news-reel-content h2,
  .today-tournament-content h2 {
    font-size: 18px;
  }

  .news-reel-content .badge {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .live-score-btn {
    width: 100%;
  }

  .banner-index-more .learn-more-btn {
    margin-top: 15px;
    font-size: 14px;
  }
}

