/* ==========================
   GLOBAL STYLES
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
    color:#333;
}

a{
    text-decoration:none;
}

/* ==========================
   HERO SECTION
========================== */

.hero{
    background:url("images/hero.jpeg") center center/cover no-repeat;
    height:100vh;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero h1{
    color:#fff;
    font-size:3.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    color:#fff;
    font-size:1.2rem;
    margin-bottom:35px;
}

.search-box{
    max-width:700px;
    margin:auto;
}

.search-box input{
    padding:18px;
    font-size:18px;
    border-radius:50px;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* ==========================
   FILTERS
========================== */

.filters{
    margin-top:-40px;
    z-index:100;
    position:relative;
}

.filters .row{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.filters select{
    height:50px;
    border-radius:10px;
}

/* ==========================
   DIRECTORY
========================== */

.card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.25),
        0 0 25px rgba(255,20,147,.35);

}


    


.card img{
    width:100%;
    height:300px;
    object-fit:cover;

    transition:transform .7s ease, filter .4s ease,
box-shadow .4s ease;
}

.card:hover img{
    transform: scale(1.08) rotate(360deg);
    filter: brightness(1.05);
}


.card-body{
    padding:20px;
}

.card-title{
    font-size:1.3rem;
    font-weight:bold;
}

.card-text{
    color:#0077b6;
    font-weight:600;
    margin-bottom:10px;
}

.location{
    color:#666;
    font-size:.95rem;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#003049;
    color:#fff;
    padding:25px;
    margin-top:60px;
}

footer p{
    margin:0;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.hero h1{
    font-size:2.8rem;
}

.hero p{
    font-size:1.1rem;
}

}

@media(max-width:768px){

.hero{
    height:80vh;
}

.hero h1{
    font-size:2.2rem;
}

.hero p{
    font-size:1rem;
}

.search-box input{
    font-size:16px;
    padding:15px;
}

.filters{
    margin-top:20px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:1.8rem;
}

.hero p{
    font-size:.95rem;
}

.card img{
    height:220px;
}

}

/* ==========================
   AGE VERIFICATION POPUP
========================== */

.age-modal{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.85);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

}


.age-box{

    background:white;

    width:90%;
    max-width:450px;

    padding:40px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.4);

}


.age-box h2{

    color:#003049;

    margin-bottom:15px;

}


.age-box p{

    margin-bottom:30px;

}


.age-box button{

    margin:10px;

    min-width:120px;

    border-radius:25px;

}

/* ==========================
   WHATSAPP FLOATING BUTTON
========================== */

.whatsapp-button{

    position:fixed;

    bottom:25px;
    right:25px;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;
    gap:10px;

    padding:15px 22px;

    border-radius:50px;

    font-size:18px;

    font-weight:bold;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}


.whatsapp-button:hover{

    background:#128C7E;

    transform:translateY(-5px);

    color:white;

}


.whatsapp-button i{

    font-size:28px;

}


@media(max-width:576px){

.whatsapp-button span{

    display:none;

}


.whatsapp-button{

    width:60px;
    height:60px;

    justify-content:center;

    padding:0;

}

}

/* ==========================
   NAVIGATION BAR
========================== */


.navbar{

    position:absolute;

    top:0;

    width:100%;

    z-index:1000;

    padding:20px 0;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(10px);

}


.navbar-brand{

    font-size:1.5rem;

    font-weight:bold;

    color:white!important;

}


.nav-link{

    color:white!important;

    font-weight:600;

    margin-left:20px;

    transition:.3s;

}


.nav-link:hover{

    color:#ffd166!important;

}


.navbar-toggler{

    border:none;

}


.navbar-toggler:focus{

    box-shadow:none;

}


@media(max-width:991px){

.navbar-collapse{

    background:rgba(0,0,0,.85);

    padding:20px;

    border-radius:15px;

    margin-top:15px;

}


.nav-link{

    margin:10px 0;

}

}

/* Banner section */

.responsive
{
  width: 100%;
  height: 400px;
  background-size: center center/ cover no-repeat;
  border: 1px solid black;
  height:100vh;
  position:relative;
}


/* ==========================================
   Advert Grid
   Unique Prefix: adgridx-
   ========================================== */

.adgridx-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.adgridx-item a {
    display: block;
    width: 300px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    transition: transform .3s ease, box-shadow .3s ease;
}

.adgridx-item a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.adgridx-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablets */
@media (max-width: 768px) {

    .adgridx-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .adgridx-item a {
        width: 100%;
    }
}

/* Phones */
@media (max-width: 600px) {

    .adgridx-container {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 15px;
    }

    .adgridx-item a {
        width: 100%;
        max-width: none;
    }
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-header{

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("images/hero.jpeg") center center/cover no-repeat;

    height:50vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.contact-header h1{

    font-size:3rem;

    font-weight:700;

    margin-bottom:15px;

}

.contact-header p{

    font-size:1.1rem;

}

.contact-section{

    padding:70px 0;

}

.contact-card{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    height:100%;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.contact-card h3{

    color:#003049;

    margin-bottom:25px;

    font-weight:bold;

}

.contact-info p{

    font-size:1.05rem;

    margin-bottom:18px;

}

.contact-info i{

    color:#0077b6;

    width:30px;

    font-size:20px;

}

.contact-card .form-control{

    margin-bottom:18px;

    padding:14px;

    border-radius:10px;

}

.btn-contact{

    background:#003049;

    color:white;

    border:none;

    padding:14px 35px;

    border-radius:30px;

    transition:.3s;

}

.btn-contact:hover{

    background:#0077b6;

    color:white;

}

@media(max-width:768px){

.contact-header{

    height:40vh;

}

.contact-header h1{

    font-size:2.2rem;

}

.contact-header p{

    font-size:1rem;

}

}




.video-container {
    width: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}


