* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {

    --text-color: #ffffff;
    --secondary-color: #6c757d;
    --background-color: #1a1a1a;
}


.hero {
    background: url('https://png.pngtree.com/background/20250124/original/pngtree-new-event-management-outdoor-background-picture-image_15562724.jpg') no-repeat center center/cover;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 30rem;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
}

.hero .btn {
    margin-bottom: 60px;
}

.search-section {
    margin-top: -40px;
    z-index: 10;
    position: relative;
    border-radius: 15px;
}

.card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card {
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 20px 0;
}

.modal-content {
    border-radius: 10px;
}

footer {
    background-color: var(--background-color);
    color: #aaa;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


  .hover-scale {
    transition: transform 0.3s ease;
  }

  .hover-scale:hover {
    transform: scale(1.05);
  }

  .card i {
    display: block;
  }

  .card {
    border-radius: 10px;
  }

  .card-body {
    padding: 1.5rem 1rem;
  }



/* Venues.php */

.venue-card img {
    height: 200px;
    object-fit: cover;
}

.venue-card:hover {
    transform: scale(1.02);
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.filter-bar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}


  .owl-carousel .card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
  }
