/*==================================================
  Sri Conventions
  availability.css
  Part 1
==================================================*/

/*=========================
 Google Font
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
 Variables
=========================*/

:root{

    --primary:#0d6efd;
    --secondary:#6c757d;
    --success:#198754;
    --danger:#dc3545;
    --warning:#ffc107;

    --dark:#1b1b1b;
    --light:#f8f9fa;

    --card-radius:22px;
    --transition:.35s ease;

}

/*=========================
 Global
=========================*/

body{

    font-family:'Poppins',sans-serif;

    background:#f4f7fb;

    color:#333;

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

section{

    position:relative;

}

/*=========================
 Hero Section
=========================*/

.availability-hero{

    position:relative;

    background:url("../images/banner.jpg") center center/cover no-repeat;

    min-height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(13,110,253,.88),
        rgba(18,35,60,.88)
    );

}

.availability-hero .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:8px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.18);

    color:#fff;

    font-weight:600;

    letter-spacing:.8px;

    margin-bottom:18px;

}

.hero-title{

    color:#fff;

    font-size:52px;

    font-weight:800;

    margin-bottom:18px;

}

.hero-subtitle{

    color:#eef3ff;

    font-size:20px;

    max-width:760px;

    margin:auto;

    line-height:1.8;

}

/*=========================
 Search Panel
=========================*/

.search-wrapper{

    margin-top:-70px;

    position:relative;

    z-index:10;

    margin-bottom:60px;

}

.search-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:
        0 15px 45px rgba(0,0,0,.08);

}

.search-card label{

    font-weight:600;

    color:#444;

    margin-bottom:8px;

}

.search-card label i{

    color:var(--primary);

    margin-right:5px;

}

.search-card .form-control,

.search-card .form-select{

    height:58px;

    border-radius:14px;

    border:1px solid #d9d9d9;

    transition:var(--transition);

}

.search-card .form-control:focus,

.search-card .form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

.search-btn{

    height:58px;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.search-btn:hover{

    transform:translateY(-3px);

}

/*=========================
 Hall Section
=========================*/

.hall-section{

    padding-bottom:70px;

}

.hall-wrapper{

    transition:.35s;

}

/*=========================
 Hall Card
=========================*/

.hall-card{

    background:#fff;

    border-radius:var(--card-radius);

    overflow:hidden;

    box-shadow:

        0 10px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.hall-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 20px 50px rgba(0,0,0,.15);

}

/*=========================
 Hall Image
=========================*/

.hall-image-wrapper{

    position:relative;

    overflow:hidden;

    height:300px;

}

.hall-image{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.hall-card:hover .hall-image{

    transform:scale(1.08);

}

/*=========================
 Availability Badge
=========================*/

.availability-badge{

    position:absolute;

    top:18px;

    right:18px;

}

.availability-badge .badge{

    padding:10px 16px;

    font-size:13px;

    border-radius:40px;

    font-weight:600;

}

/*=========================
 Hall Content
=========================*/

.hall-content{

    padding:28px;

}

.hall-title{

    font-size:28px;

    font-weight:700;

    color:#222;

    margin-bottom:10px;

}

.hall-address{

    color:#666;

    font-size:15px;

}

.hall-capacity{

    min-width:90px;

    height:90px;

    border-radius:50%;

    background:#f1f6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    color:var(--primary);

    font-weight:700;

    font-size:24px;

}

.hall-capacity i{

    font-size:22px;

    margin-bottom:6px;

}

/*=========================
 Features
=========================*/

.feature-list{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin:28px 0;

}

.feature-list span{

    padding:10px 18px;

    border-radius:50px;

    background:#eef5ff;

    color:#0d6efd;

    font-size:14px;

    font-weight:600;

}

.feature-list span i{

    margin-right:6px;

}

/*=========================
 Amenities
=========================*/

.amenity-box{

    background:#f8f9fa;

    border-left:4px solid var(--primary);

    padding:16px;

    border-radius:10px;

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

/*=========================
 Responsive
=========================*/

@media(max-width:992px){

.hero-title{

    font-size:40px;

}

.search-wrapper{

    margin-top:-45px;

}

}

@media(max-width:768px){

.hero-title{

    font-size:32px;

}

.hero-subtitle{

    font-size:17px;

}

.search-card{

    padding:20px;

}

.hall-image-wrapper{

    height:240px;

}

.hall-title{

    font-size:24px;

}

.hall-capacity{

    width:70px;

    height:70px;

    font-size:18px;

}

}
/*==================================================
  availability.css
  Part 2
==================================================*/

/*====================================
  Pricing Section
====================================*/

.pricing-wrapper{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin:30px 0;

}

.slot-card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    background:#fff;

    border-radius:18px;

    padding:18px 20px;

    border:1px solid #ececec;

    transition:all .35s ease;

    box-shadow:0 5px 15px rgba(0,0,0,.04);

}

.slot-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 28px rgba(0,0,0,.10);

}

.slot-card.available{

    border-left:6px solid #198754;

}

.slot-card.booked{

    border-left:6px solid #dc3545;

    opacity:.92;

}

.slot-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    flex-shrink:0;

}

.slot-info{

    flex:1;

}

.slot-info h6{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#222;

}

.slot-info small{

    color:#6c757d;

    font-size:13px;

}

.slot-price{

    font-size:24px;

    font-weight:700;

    color:#0d6efd;

    white-space:nowrap;

}

/*====================================
  Action Buttons
====================================*/

.action-buttons{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.action-buttons .btn{

    height:54px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    transition:all .3s ease;

}

.action-buttons .btn:hover{

    transform:translateY(-3px);

}

.btn-outline-primary{

    border-width:2px;

}

.btn-danger{

    background:linear-gradient(135deg,#ff4d4d,#dc3545);

    border:none;

}

.btn-danger:hover{

    background:linear-gradient(135deg,#dc3545,#b52b38);

}

/*====================================
  Quick Booking
====================================*/

.slot-buttons{

    margin-top:35px;

    padding-top:25px;

    border-top:1px dashed #ddd;

}

.slot-buttons h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:20px;

}

.slot-buttons .btn{

    height:52px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.slot-buttons .btn:hover{

    transform:translateY(-2px);

}

/*====================================
  Status Badges
====================================*/

.badge{

    border-radius:30px;

    padding:8px 14px;

    font-size:13px;

    font-weight:600;

    letter-spacing:.3px;

}

/*====================================
  Fully Booked Alert
====================================*/

.alert-danger{

    border:none;

    border-radius:14px;

    font-weight:600;

    padding:18px;

}

/*====================================
  Empty State
====================================*/

.empty-state{

    padding:80px 20px;

    text-align:center;

}

.empty-state img{

    max-width:280px;

    margin-bottom:30px;

}

.empty-state h2{

    font-weight:700;

    color:#222;

}

.empty-state p{

    color:#666;

    font-size:17px;

    margin:20px auto;

    max-width:500px;

}

/*====================================
  Card Animation
====================================*/

.hall-card{

    animation:fadeUp .6s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*====================================
  Scrollbar
====================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#0d6efd;

    border-radius:50px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

/*====================================
  Utility Classes
====================================*/

.shadow-soft{

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.rounded-xl{

    border-radius:22px;

}

.bg-gradient-primary{

    background:linear-gradient(135deg,#0d6efd,#4a8dff);

    color:#fff;

}

/*====================================
  Responsive
====================================*/

@media(max-width:1200px){

.slot-price{

    font-size:20px;

}

}

@media(max-width:992px){

.action-buttons{

    flex-direction:column;

}

.slot-card{

    flex-wrap:wrap;

}

.slot-price{

    width:100%;

    text-align:left;

    margin-top:10px;

}

}

@media(max-width:768px){

.pricing-wrapper{

    gap:14px;

}

.slot-card{

    padding:16px;

}

.slot-icon{

    width:52px;

    height:52px;

    font-size:20px;

}

.slot-info h6{

    font-size:16px;

}

.slot-price{

    font-size:18px;

}

.slot-buttons .btn{

    margin-bottom:10px;

}

.action-buttons .btn{

    width:100%;

}

}

@media(max-width:576px){

.slot-card{

    flex-direction:column;

    align-items:flex-start;

}

.slot-icon{

    margin-bottom:10px;

}

.slot-price{

    margin-top:0;

}

.badge{

    margin-top:10px;

}

}
/* JavaScript Animation Support */

.hall-card{

    opacity:0;

    transform:translateY(40px);

}

.show-card{

    opacity:1 !important;

    transform:translateY(0) !important;

    transition:.6s ease;

}

.hall-image{

    transition:.5s;

}