/* /assets/css/style.css */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
}

.btn {
  @apply bg-secondary text-white py-2 px-4 rounded-full font-semibold mt-2 shadow;
}
.bg-background {
  background-color: #F5F2EA;
}
.text-primary {
  color: #006D75;
}
.bg-white {
  background-color: white;
}


.bg-primary, .bg-secondary{
    background: #3192a2;
}

.header-bg{
    background:#012427;
}

  @keyframes pulse-fast {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
  }
  .animate-pulse-fast {
    animation: pulse-fast 1.5s infinite ease-in-out;
  }


.ground-hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1547347298-4074fc3086f0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
    }
    
    .court-card {
      transition: all 0.3s ease;
    }
    
    .court-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .section-title {
      position: relative;
      padding-bottom: 10px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: #2a4365;
    }
    
    
    body .bg-blue-600 {
        background-color: rgb(34 151 109);
    }
    
    
    
    
    
    