/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  transition: all 0.25s ease-out;
}

body {
  margin: 0;
  padding: 0;
  min-width: 375px;
}

/* Header and Footer */
.header .text-right {
  padding: 15px 20px;
  font-size: 16px;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px; /* Space between buttons */
  flex-wrap: nowrap; /* Prevent wrapping */
}

.logo {
  height: 50px;
  margin-right: 8px;
  padding: 5px;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #06064C;
}

.login-btn,
.get-access-btn {
  display: flex;
  justify-content: center; /* Center text and icon */
  align-items: center;
  padding: 6px 15px;
  border-radius: 10px;
  border: 1px solid #D7D7D7;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08);
  white-space: nowrap; /* Prevent shrinking and forcing new line */
  text-decoration: none; /* Remove underline from links */
  cursor: pointer; /* Pointer cursor on hover */
}

.login-btn {
  color: rgba(0, 0, 0, 0.7);
  background-color: transparent;
}

.get-access-btn {
  background: radial-gradient(circle, rgba(125, 207, 182, 0.9) 0%, rgba(0, 160, 191, 0.63) 100%);
  color: #ffffff;
}

.login-btn:focus,
.get-access-btn:focus,
.login-btn:active,
.get-access-btn:active {
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove box shadow on focus/active */
}

/* Highlight Text */
.highlight-light {
  background: linear-gradient(90deg, #00A0BF 10.98%, #7DCFB6 56.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-dark {
  background: linear-gradient(90deg, #00A0BF 0%, #1111AB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blue-text {
  background: #060694;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blue-text-dark {
  background: #06064C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Titles and Descriptions */
.section-title {
  font-size: 24px; /* Consistent font size */
  font-weight: 600;
  margin-bottom: 10px;
}

.description {
  font-size: 16px; /* Consistent font size */
  margin-bottom: 20px;
}

.description-left {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}

/* Direct-to-fan Section */
.direct-to-fan {
  padding-top: 30px;
  padding-bottom: 30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 25%, rgba(0, 160, 191, 0.15) 100%);
}

.solution-graphic {
  width: 75%;
  max-width: 600px;
}

.learn-more-btn {
  color: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}

.learn-more-btn:hover {
  background-color: #f0f0f0;
}

.learn-more-btn:focus,
.learn-more-btn:active {
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove box shadow on focus/active */
}

.learn-more-icon {
  width: 16px; /* Size of the image */
  height: auto;
  margin-left: 8px; /* Space between text and image */
}

/* Fan-Focused Marketing Section */
.fan-focused-marketing {
  padding: 40px 10px;
  background-color: #ffffff;
}

.marketing-box {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.text-section {
  padding: 20px;
  border-top: 1px solid rgba(215, 215, 215, 1);
  border-left: 1px solid rgba(215, 215, 215, 1);
  border-right: 1px solid rgba(215, 215, 215, 1);
  border-radius: 25px 25px 0 0;
  position: relative;
  flex: none;
}

.marketing-subtitle {
  font-size: 16px; /* Consistent font size */
  font-weight: bold;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-text {
  font-size: 12px; /* Consistent font size */
  line-height: 1.4;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
  position: relative;
  -webkit-line-clamp: 2;
}

.marketing-text .read-more {
  color: #007BFF;
  text-decoration: none;
}

.marketing-text .read-more:hover {
  text-decoration: underline;
}

.image-section {
  position: relative;
}

.image-border {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 0 0 25px 25px;
  /* Gradient will be set via inline styles */
}

.image-layer {
  border-radius: 0 0 24px 24px;
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: white;
  overflow: hidden;
}

.image-container {
  border-radius: 0 0 24px 24px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  /* Background will be handled by the image itself */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
}

/* Icon Container and Icons */
.icon-container {
  position: absolute; /* Ensure the icon container is positioned correctly */
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
  z-index: 10; /* Ensure buttons are above the image */
}

.icon-button {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 6px 10px; /* Consistent padding */
  display: flex;
  align-items: center;
  font-size: 14px; /* Consistent font size */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none; /* Remove underline if button is a link */
}

.icon-button img {
  width: 18px; /* Consistent size */
  height: 18px; /* Consistent size */
  margin-right: 0; /* Reset margin */
  border-radius: 0;
  overflow: visible;
}

.icon-button span {
  font-size: 10px; /* Consistent font size */
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Styles for buttons with only icons */
.icon-button.icon-only {
  padding: 6px 10px; /* Same horizontal padding as regular buttons */
}

.icon-button.icon-only img {
  width: 14px; /* Smaller size for icon-only buttons */
  height: 14px; /* Smaller size for icon-only buttons */
  margin-right: 0 !important; /* Remove margin when there's no label */
}

.icon-button.icon-only span {
  display: none !important; /* Hide the label */
}

.icon-button:focus,
.icon-button:active {
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove box shadow on focus/active */
}

/* Explore Tools Button */
.explore-tools-button {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none; /* Remove underline if button is a link */
}

.explore-tools-button:hover {
  background-color: #f0f0f0;
}

.explore-tools-button:focus,
.explore-tools-button:active {
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove box shadow on focus/active */
}

.arrow-icon {
  width: 16px; /* Size of the arrow icon */
  height: auto;
  margin-left: 8px; /* Space between text and image */
  vertical-align: middle; /* Align the image with the text */
}

/* Modal Styles */
.modal-dialog {
  margin: auto;
  height: 100vh; /* Increased height for better content display */
  padding: 0 25px;
}


.modal-content.modal-background  {
  background-color: #ffffff; /* Solid background for the modal */
  border-radius: 25px;
  display: flex;
  height: 80vh; /* Increased height for better content display */
  flex-direction: column;
  overflow: hidden; /* Hide overflowing content */
  position: relative; /* Keep content inside the modal */
}

.modal-header {
  border-bottom: 1px solid #e0e0e0; /* Bottom border for separation */
}

.close-button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-button:focus,
.close-button:active {
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove box shadow on focus/active */
}

.tool-image-modal {
  width: 100%; /* Ensure full width */
  height: 40%; /* 40% of modal height */
  position: relative;
  overflow: hidden;
}

.tool-image-modal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-icon-container {
  position: absolute; /* Positioned within the image section */
  bottom: 10px; /* Positioned slightly above the bottom */
  left: 10px;
  display: flex;
  gap: 6px; /* Consistent gap */
  z-index: 10; /* Above image */
}

.tool-icon-container .icon-button {
  padding: 6px 10px; /* Maintain horizontal padding */
}

.icon-button{
  gap: 6px;
}



.tool-icon-container .icon-button img {
  width: 18px !important; /* Fixed size */
  height: 18px !important; /* Fixed size */
  flex: 0 0 auto; /* Prevent flex-grow and flex-shrink */
  
}

.icon-button img {
  width: 18px; /* General icon size */
  height: 18px; /* General icon size */
  margin-right: 0; /* Reset margin */
  border-radius: 0;
  overflow: visible;
  flex: 0 0 auto; /* Prevent flex-grow and flex-shrink */

}

.tool-icon-container .icon-button span {
  font-size: 10px;
  
}

.tool-text-modal {
  flex-grow: 1; /* Take remaining space */
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 0;
  overflow-y: auto; /* Enable vertical scrolling */
  position: relative; /* Needed for the fade overlay */
}

.tool-title-modal{
  font-size: 20px; /* Consistent font size */
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.modal-title{
  font-weight: bold;
}

.tool-description-modal {
  font-size: 14px; /* Consistent font size */
  line-height: 1.5em;
  position: relative; /* To position the fade overlay */
}



.tool-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-top: 16px;
  background-color: white;
  border-top: none; /* Remove top border */
  border-bottom-left-radius: 25px; /* Curved bottom left */
  border-bottom-right-radius: 25px; /* Curved bottom right */
  
  /* Flex properties */
  flex-shrink: 0; /* Prevent navigation from shrinking */
  
  /* Overflow and z-index */
  overflow: hidden; 
  z-index: 10; 
}

.indicator-container {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.indicator-dot {
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  opacity: 1; /* Default opacity for visible dots */
  transition: opacity 0.3s ease; /* Smooth transition for transparent dots */
}

.indicator-dot.small {
  width: 4px; /* Consistent size */
  height: 4px;
}

.indicator-dot.medium {
  width: 8px; /* Consistent size */
  height: 8px;
}

.indicator-dot.large {
  width: 12px; /* Consistent size */
  height: 12px;
  background-color: var(--dot-bg-color, rgb(0, 0, 0)); /* Variable background color */
  box-shadow:
    0 0 0 1px rgb(255, 255, 255),
    0 0 0 2px var(--dot-shadow-color, rgb(0, 0, 0)); /* Variable shadow color */
}

/* Transparent dots when reaching the end or beginning */
.indicator-dot.transparent {
  opacity: 0; /* Make dot semi-transparent when out of range */
}

/* Nav Arrow */
.nav-arrow {
  background-color: transparent; /* Remove button background */
  border: none; /* Remove button border */
  width: 40px; /* Consistent size */
  height: 40px; /* Consistent size */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.nav-arrow img {
  width: 40%; /* Adjusted for consistency */
  height: auto;
  object-fit: contain; /* Keep the aspect ratio */
}

.nav-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Remove focus outlines and shadows from all buttons */
button,
.btn {
  outline: none;
  box-shadow: none;
}

button:focus,
.btn:focus,
button:active,
.btn:active {
  outline: none;
  box-shadow: none;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 20px 0;
  border-top: 2px solid #e0e0e0;
  font-family: Arial, sans-serif;
  width: 100%;
}

.footer .logo {
  width: 40px;
  height: auto;
}

.footer .brand-name {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  margin-right: 15px;
  flex-grow: 1;
}

.footer .footer-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer .footer-link:hover {
  color: #000;
}

.footer .footer-link.small-text {
  font-size: 10px; /* Consistent size */
  color: #888;
}

.footer .footer-link.small-text:hover {
  color: #666;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap; /* No wrapping */
}

.footer-bottom-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap; /* No wrapping */
}

.footer .col-6.d-flex.flex-column {
  align-items: flex-end;
}

.mt-2 {
  margin-top: 10px;
}

/* Fan Engagement Section */
.fan-engagement {
  padding: 40px 20px;
  background-color: #ffffff;
}

.engagement-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 0 auto 20px auto;
  overflow: hidden;
  border: 1px solid rgba(215, 215, 215, 1);
  text-align: left;
}

.filter-section {
  margin: 20px -22px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
}

.filter-section img {
  width: 100%;
}

.message-section {
  margin-top: 20px;
}

.message-section p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}

.message-box {
  background-color: #e0f5f9;
  border: 1px solid #00a0bf;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Aligns the text to the top */
  position: relative; /* Allows the message icon to be positioned absolutely within this box */
}

.message-box p {
  margin: 0;
  font-weight: 400;
  font-size: 12px; /* Consistent font size */
  text-align: left;
  padding-bottom: 30px;
}

.message-icon {
  position: absolute;
  bottom: 10px; /* Keeps the icon at the bottom */
  right: 10px; /* Adjust this to control horizontal position */
  width: 20px; /* Adjust the size of the image */
  height: auto;
  z-index: 1;
}

/* Reward Fans Section */
.reward-fans {
  padding: 40px 20px;
  background-color: #ffffff;
}

/* Scrollable container with horizontal scrolling */
.scroll-container {
  display: flex; /* Flex layout to keep items in a row */
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Disable vertical scrolling */
  white-space: nowrap; /* Prevent line breaks */
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
  width: 100vw; /* Make the container span the entire viewport width */
  position: relative;
  left: 50%; /* Offset by 50% to align with the screen */
  right: 50%;
  transform: translateX(-50%); /* Center the container */
  scroll-behavior: smooth; /* Optional smooth scrolling effect */
}

.scroll-container img {
  height: 400px; /* Set the desired height for the images */
  width: auto; /* Allow the width to adjust based on the image's aspect ratio */
  object-fit: cover; /* Ensure the image covers the area properly while maintaining aspect ratio */
  flex-grow: 0; /* Prevent the image from stretching */
  flex-shrink: 0; /* Prevent the image from shrinking */
  margin-right: 0; /* Remove any right margin to eliminate space between images */
}

.scroll-container .scroll-item {
  flex: 0 0 auto; /* Ensure the items don't shrink */
}

/* Tabs Navigation */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.tab {
  padding: 10px 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
  opacity: 50%;
  display: flex;
  align-items: center;
}

.tab:hover {
  background-color: #e0e0e0;
}

.tab.active {
  background-color: #ffffff;
  color: #000000;
  opacity: 1;
}

.tab-icon {
  width: 18px; /* Adjust size as needed */
  height: auto;
  margin-right: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .header .text-right {
    padding: 15px 20px;
    font-size: 16px;
  
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px; /* Space between buttons */
    flex-wrap: nowrap; /* Prevent wrapping */
  }
  
  .logo {
    height: 40px;
    margin-right: 5px;
    padding: 5px;
 
    padding-left: 0;
  }
  
  .brand-name {
    font-size: 15px;
    font-weight: 600;
    color: #06064C;
  }

  .footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 2px solid #e0e0e0;
    font-family: Arial, sans-serif;
    width: 100%;

  }
  
  .footer .logo {
    width: 40px;
    margin-right: 0;
    padding-left: 0;
    padding-left: 0;
    
  }
  
  .footer .brand-name {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    margin-right: 5px;
    flex-grow: 1;
    
  }
}
