



:root{
  --font-display-Roboto:'Roboto Condensed', Arial, sans-serif; 
  --font-display-Open:'Open Sans', Arial, sans-serif; 

 
 
 

}



@layer base {
    html{
    font-family:var( --font-display-Roboto);
      font-size: 16px; /* Default: 1rem = 16px */
 -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    }


/* Body text */
body {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  font-family:var(--font-display-Roboto);
  color: #333;
    font-size: 1rem; /* Use rem units for consistency */
    zoom: reset; /* Reset any zoom applied */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Headings */
h1 {
  font-size: 3rem; /* 48px */
  font-weight: bold;
}

h2 {
  font-size: 2.5rem; /* 40px */
  font-weight: bold;
}

h3 {
  font-size: 2rem; /* 32px */
  font-weight: bold;
}

h4 {
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
}

h5 {
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
}

h6 {
  font-size: 1rem; /* 16px */
  font-weight: bold;
}

  a {
        font-family:var( --font-display-Roboto);
  }

p, ul,li{
     font-family:var( --font-display-Open);
}
.blue-header {
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #97DFFC;
}
@media (min-width: 776px) {
    .blue-header {
        color: transparent;
        -webkit-text-stroke-width: 4px;
        -webkit-text-stroke-color: #97DFFC;
    }
}

 /* Bento grid item styles */
  .bento-item {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-color: rgba(230, 230, 230, 0.7);
  }
  
  .bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  
  /* Title and text styles */
  .bento-title {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1a237e;
    position: relative;
    display: inline-block;
  }
  
  .bento-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: rgb(54, 55, 144);
    border-radius: 2px;
  }
  
  .bento-description {
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
  }
  
  /* Hover effects */
  .hover-overlay {
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
    background: linear-gradient(to bottom, 
                rgba(255,255,255,0) 0%, 
                rgba(54, 55, 144, 0.08) 100%);
    backdrop-filter: blur(0px);
  }
  
  .bento-item:hover .hover-overlay {
    opacity: 1;
    backdrop-filter: blur(0px);
  }
  
  .cta-button {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 20px rgba(54, 55, 144, 0.25);
    background-color: rgb(54, 55, 144);
  }
  
  .bento-item:hover .cta-button {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Image container styles */
  .image-container {
    overflow: hidden;
    border-radius: 0.75rem;
    transition: transform 0.5s ease;
  }
  
  .bento-item:hover .image-container img {
    transform: scale(1.05);
  }
  
  .image-container img {
    transition: transform 0.5s ease;
  }
  
  /* Gradient backgrounds with improved subtlety */
  .bg-highlights-gradient {
    background: linear-gradient(360deg, #FFFFFF 0%, #97DFFC 180%);
  }
  
  .bg-registration-gradient {
    background: linear-gradient(360deg, #FFFFFF 0%, #ffcce6 180%);
  }
  
  .bg-sponsor-gradient {
    background: linear-gradient(360deg, #FFFFFF 0%, #ACADFB 180%);
  }
  
  /* For touch devices */
  @media (hover: none) {
    .hover-overlay {
      opacity: 0.5;
      background: linear-gradient(to bottom, 
                  rgba(255,255,255,0) 60%, 
                  rgba(54, 55, 144, 0.08) 100%);
    }
    
    .cta-button {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Custom accent color for links and interactive elements */
  .text-accent {
    color: rgb(54, 55, 144);
  }
  
  /* Make the entire bento item a link */
  .bento-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
  }