﻿
body, html {
    overflow-x: hidden;
}

.image-section {
    background-image: url('/images/Home.jpg'); /* put your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw; /* full viewport width */
    height: 85vh; /* adjust height as you want */
    margin-left: calc(-50vw + 50%); /* breaks out of container if inside one */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.7); /* to make text readable on image */
}
body {
    padding-top: 98px;
}

.welcome-text {
    position: relative;
    z-index: 2;
    
}

.hometitle {
    font-family: "bootstrap-icons";
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.6), 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.text-start {
    color: #333 !important;
    font-family: 'Rubik', sans-serif !important;
    font-weight: bold;
    font-size:2.5rem;
}
.text-justify.description {
    color: #333 !important;
    font-family: 'Rubik', sans-serif;  
    font-size: 1rem;
}
.reasontxt {
    font-family: 'Rubik', sans-serif;
}
.reasontitle {
    font-family: "Rubik";
}
/* === Image Location Label === */
.image-location {
    position: absolute;
    bottom: 80px;
    left: 120px;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-size: 1rem;
    z-index: 2;
}

    .image-location i {
        margin-right: 8px;
        font-size: 1.2rem;
    }
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}
/*--------------------------------------------------------------------------------------*/
.title-gloria {
    font-family: 'Rubik';
}

.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    background-color: #ffffff;
}

    .tour-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
.view-more-btn {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

    .view-more-btn .triangle {
        display: inline-block;
        margin-left: 6px;
        transition: transform 0.3s ease;
    }
    .view-more-btn:hover {
        color: #b4166a; /* Change this to any color you prefer */
        
    }
    .view-more-btn:hover .triangle {
        transform: translateX(5px);
    }

.view-more-btn-sm.vm {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

    .view-more-btn-sm.vm .triangle {
        display: inline-block;
        margin-left: 6px;
        transition: transform 0.3s ease;
    }

    /* Hover state: change text color and move triangle */
    .view-more-btn-sm.vm:hover {
        color: #b4166a; /* Change this to any color you prefer */

    }

        .view-more-btn-sm.vm:hover .triangle {
            transform: translateX(5px);
        }



.tour-card {
    height: 320px;
    position: relative;
    overflow: hidden;
    background-color: #000;
    transition: none !important;
    transform: none !important; /* Prevent container shift */
}

    .tour-card:hover {
        transform: none; /* Do not move container */
        
    }

/* Image zoom effect inside the fixed container */
.tour-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
.tour-card:hover .tour-info {
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay on hover */
}
.tour-card:hover .tour-img {
    transform: scale(1.08); /* Only zoom the image */
}

/* Hover text slide-up effect */
.tour-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    transition: bottom 0.6s ease;
    z-index: 2;
}

.tour-card:hover .tour-info {
    bottom: 0;
}
@media (max-width: 991.98px) {
    .tour-info {
        bottom: 0 !important;
    }

}
@media (max-width: 768px) {
    .tour-info {
        background-color: rgba(0, 0, 0, 0.8) !important; /* Strong black */
    }

    .tour-card:hover .tour-info {
        background-color: rgba(0, 0, 0, 0.8) !important; /* Prevent hover effect */
    }
    /*-------------------------------------------------------------------------------------*/

    /* === Fade In Animation === */
    .fade-in {
        animation: fadeInAnimation 1s ease-in-out forwards;
    }

    @keyframes fadeInAnimation {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /* === Scrollbar === */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #555;
        border-radius: 10px;
        transition: background-color 0.3s ease;
    }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #444;
        }

    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .food-slider-wrapper {
        margin-top: 160px;
       
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 80px; /* adjusted for medium screens */
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px; /* adjusted for small/mobile screens */
    }
}

.sigslogan {
    font-weight: 900;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}
}
/*------------------------SEO tags---------------------------------*/
.headingdescription,
.headbdy {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 100;
}


.tourtext,
.sigtour {
    font-weight: 100; 
    font-family: 'Rubik', sans-serif;
}

/* Base font and spacing */
/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h2 {
    font-weight: 700;
    color: #2c3e50;
}

.package-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.card-body {
    padding: 1.2rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #0056b3, #003d80);
        transform: scale(1.05);
    }

.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    color: #2c3e50;
}

.modal-body h6 {
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1rem;
}

.modal-body ul {
    padding-left: 1.2rem;
}

.modal-body p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modal-footer {
    border-top: none;
}*/

/* Responsive heading sizing */
/*@media (max-width: 576px) {
    .card-title {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}*/
.promotion {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
}

/* Card styles */
.promotion-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .promotion-card:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }

    .promotion-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .promotion-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        transition: opacity 0.3s ease;
    }

/* See More button */
.promotion-see-more-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .promotion-see-more-btn:hover {
        background: rgba(255,255,255,0.45);
        color: #000;
        border-color: rgba(0,0,0,0.3);
    }

/* Modal styles */
.promotion .promotion-modal .modal-content {
    border-radius: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.promotion .promotion-modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.promotion .promotion-modal .modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem 0 1.5rem;
}

.promotion .promotion-modal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2a9d8f;
    text-align: center;
    width: 100%;
}

.promotion .promotion-modal .btn-close {
    background: none;
    color: #000;
    opacity: 1;
    font-size: 1.3rem;
}

.promotion .promotion-modal .modal-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333;
}

.promotion .promotion-modal .modal-section {
    margin-bottom: 1rem;
    padding: 15px;
    border-radius: 12px;
    background: #e9f5f2;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

    .promotion .promotion-modal .modal-section h6 {
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #264653;
        border-bottom: 2px solid #a8dadc;
        padding-bottom: 4px;
    }
/* Modal styles */
.promotion-modal .modal-content {
    border-radius: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.promotion-modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.promotion-modal .modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem 0 1.5rem;
}

.promotion-modal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2a9d8f;
    text-align: center;
    width: 100%;
}

.promotion-modal .btn-close {
    background: none;
    color: #000;
    opacity: 1;
    font-size: 1.3rem;
}

.promotion-modal .modal-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333;
}

.promotion-modal .modal-section {
    margin-bottom: 1rem;
    padding: 15px;
    border-radius: 12px;
    background: #e9f5f2;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

    .promotion-modal .modal-section h6 {
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #264653;
        border-bottom: 2px solid #a8dadc;
        padding-bottom: 4px;
    }
