:root {
    --primary-color:#544769;
    --secondary-color: #565656;
    --accent-color: #ffc107;
  }
  

  /* darker #679f81
   lighter #90c4a8

   darker #565656
   lighter #565656
 */
 
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  
  .navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .hero {
    /* background: linear-gradient(rgba(84,71,105, 1), rgba(84,71,105, 0.6)), url('discoveringu.svg') center/cover no-repeat; */
    background:  url('usa.svg') center/cover no-repeat;
    background-size: 50%;
    color: white;
    padding: clamp(24px, 4rem, 40px) 0;
    margin-bottom: 2rem;
    position: relative;

  }
  .hero img {
    width: 70%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  h1, h2{
    font-family: BebasNeue, sans-serif
  }
  
 h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    
  }
  p {

    color: var(--secondary-color);
  }
p.lead.mb-4 {
    color: white;
}

  .page-header p.lead {
    color: white;
    font-size: 1.5cqw;
  }
  .intro, .page-header {
    background-color: #679f81;
    color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .process p{
    font-size: 26px;
    color: var(--secondary-color);
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

.discuss {
    font-size: 16px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 900;
}
.home .card {
    background-color:#679f81;
    color: white;
}
.home .card h4{
    font-size: clamp(18px, 1.5cqw, 36px);
    font-weight: 600;

}
.home .card p {
    color: white;
}
  .card, .session-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;

  }

  .col-md-6.col-lg-3 {
    display: flex;
  }
  
  .card:hover, .session-card:hover {
    transform: translateY(-5px);
  }
  
  .btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
  }
  
  footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
  }

  .page-header {
    background: url('/api/placeholder/1200/300') center/cover no-repeat;
    background-color: #679f81;
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
  }
  
  .session-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
  }
  
  .session-card:hover {
    transform: translateY(-5px);
  }
  
  .session-card .card-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
  }
  
  .session-card .location {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .btn-register {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background-color: #679f81;
    border: none;
  }
  .btn-register:hover{
    background-color: #5d846f;
  }

  @media screen and (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }
    .process {
      font-size: 20px;
    }
    .discuss {
      font-size: 14px;
    }
    
  }