*{
    font-family: "Outfit", sans-serif;
}

body{
    color: black!important;
    
    
}

h1, h3, a {
    font-family: "Caveat", cursive;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.35); */
}


/* p, li{
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
} */
/* 
.form-label, .card-title{
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
} */


.nav-link{
    font-size: 27px;
    color: rgb(128, 72, 0);
}

.home {
    background-image: url('/images/home_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed; /* 🔥 THIS creates parallax */

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.glass {
    background: rgba(255, 255, 255, 0.1); /* transparent white */
    backdrop-filter: blur(10px);          /* the blur effect */
    -webkit-backdrop-filter: blur(10px);  /* Safari support */

    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    padding: 30px;
    
}

.expert{
    background-image: url('/images/expert.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    color: white; /* ensure text is readable */
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:bold;
    transition:0.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}

.whatsapp-btn i{
    font-size:22px;
}

/* Optional: center button on mobile */
@media (max-width:768px){
    .whatsapp-btn{
        margin:auto;
    }
}

#myCarousel {
    height: 500px; /* choose your preferred fixed height */
    overflow: hidden;
}

#myCarousel .carousel-item {
    height: 500px;
}

#myCarousel .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;   /* key: crops image evenly */
    display: block;
}

#myCarousel .carousel-indicators li {
    list-style: none;
}

.carousel-caption {
    position: absolute;
    color: black;
    width: 80%;
    height: 80%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px;
}

.glass-image-card {
    position: relative;
    /* border-radius: 24px; */
    overflow: hidden;
    height: 850px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transform: translateZ(0);
    transition: all 0.4s ease;
}

.glass-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-image-card:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.glass-image-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;

    width: 200%;
    height: 200%;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15),
        transparent 70%
    );

    transform: rotate(25deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.glass-image-card:hover::before {
    opacity: 1;
    animation: shine 1.2s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

.glass-image-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        inset 0 0 80px rgba(255, 255, 255, 0.08),
        inset 0 0 120px rgba(0, 0, 0, 0.4);

    z-index: 1;
}

.b-example-divider {
    width: 100%;
    height: 4rem;
    
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08),
        rgba(255, 255, 255, 0.02)
    );

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(8px);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: rgba(60, 35, 15, 0.85);
    color: #f5e6c8;

    padding: 10px 14px;
    border-radius: 30px;

    text-decoration: none;
    font-size: 14px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.4);

    z-index: 9999;

    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(120, 80, 40, 0.95);
    transform: translateY(-2px);
}

/* EXPERIENCES SECTION */

#experiences {
    position: relative;
    z-index: 2;
}

.experience-title {
    font-size: 3rem;
    font-weight: 700;
    color: #f5e6c8;

    text-shadow:
        2px 2px 0 rgba(60,35,15,0.9),
        4px 4px 10px rgba(0,0,0,0.4);
}

.experience-subtitle {
    color: rgba(245, 230, 200, 0.85);
    max-width: 700px;
    margin: auto;
}

/* CARDS */

.experience-card {
    overflow: hidden;

    background: rgba(40, 25, 15, 0.72);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 1px 1px rgba(255,255,255,0.05);

    transition: all 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.45),
        0 0 25px rgba(201, 148, 84, 0.15);
}

/* IMAGE */

.experience-card img {
    height: 260px;
    object-fit: cover;
    width: 100%;

    filter:
        saturate(80%)
        contrast(92%)
        brightness(88%)
        sepia(12%);
}



/* TEXT */

.experience-card .card-body {
    padding: 1.5rem;
}

.experience-card .card-title {
    color: #f5d8a8;

    font-weight: 700;

    text-shadow:
        1px 1px 0 rgba(0,0,0,0.6);

    margin-bottom: 1rem;
}

.experience-card .card-text {
    color: rgba(255,255,255,0.82);

    line-height: 1.7;
}

/* PRICE */

.tour-price {
    margin-top: 1.5rem;

    display: inline-block;

    padding: 8px 16px;

    background: rgba(201, 148, 84, 0.18);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50px;

    color: #f5d8a8;

    font-weight: 700;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.08),
        0 4px 10px rgba(0,0,0,0.2);
}

/* ==========================
   Testimonials
========================== */

#testimonials{
    background:#f8f9fa;
}

#testimonials .masonry{
    column-count:3;
    column-gap:1.5rem;
}

@media (max-width:991px){
    #testimonials .masonry{
        column-count:2;
    }
}

@media (max-width:576px){
    #testimonials .masonry{
        column-count:1;
    }
}

#testimonials .masonry-item{
    display:inline-block;
    width:100%;
    margin:0 0 1.5rem;
}

#testimonials .card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
}

#testimonials .card:hover{
    transform:translateY(-6px);
    box-shadow:0 1rem 2rem rgba(0,0,0,.15);
}

#testimonials .card img{
    /* width:100%; */
    display:block;
}

#testimonials .avatar{
    width: 45px;
    border-radius:50%;
    object-fit:cover;
}

#testimonials .stars{
    color:#ffc107;
    letter-spacing:2px;
}

#testimonials blockquote{
    margin:0;
    font-size:1.15rem;
    font-style:italic;
}
