@charset "utf-8";
/* CSS Document */

    body{
        font-family: 'Poppins', sans-serif;
    }

    /* Topbar */
    .topbar{
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        color: #fff;
        font-size: 14px;
        padding: 10px 0;
    }

    .topbar a{
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .topbar a:hover{
        color: #ffd700;
    }

    /* Header */
    .main-header{
        background: #fff;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .navbar-brand img{
        max-height: 80px;
    }

    /* Navbar */
    .navbar-nav .nav-link{
        color: #7b0f1c;
        font-weight: 600;
        margin: 0 8px;
        position: relative;
        transition: all 0.3s ease;
        padding: 10px 18px !important;
        border-radius: 30px;
    }

    .navbar-nav .nav-link:hover{
        background: #7b0f1c;
        color: #fff;
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active{
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        color: #fff !important;
        box-shadow: 0 5px 15px rgba(123,15,28,0.3);
    }

    /* Book Button */
    .book-btn{
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        color: #fff;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
        display: inline-block;
    }

    .book-btn:hover{
        background: linear-gradient(90deg, #b22234, #7b0f1c);
        color: #fff;
        transform: scale(1.05);
    }

    @media(max-width:991px){
        .navbar-nav{
            margin-top: 15px;
        }

        .book-btn{
            margin-top: 15px;
        }
    }
    .hero-slider .carousel-item{
        height: 90vh;
        min-height: 600px;
        position: relative;
    }

    .hero-slider .carousel-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Overlay */
    .hero-slider .carousel-item::before{
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 1;
    }

    /* Caption */
    .hero-caption{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        text-align: center;
        width: 90%;
        max-width: 850px;
        color: #fff;
    }

    .hero-caption .txt1{
        font-size: 20px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #ffd700;
    }

    .hero-caption .txt{
        font-size:48px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-caption p{
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    /* Buttons */
    .slider-btn{
        display: inline-block;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        margin: 5px;
        transition: all 0.3s ease;
    }

    .btn-primary-custom{
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        color: #fff;
    }

    .btn-primary-custom:hover{
        background: linear-gradient(90deg, #b22234, #7b0f1c);
        transform: translateY(-3px);
        color: #fff;
    }

    .btn-outline-custom{
        border: 2px solid #fff;
        color: #fff;
    }

    .btn-outline-custom:hover{
        background: #fff;
        color: #7b0f1c;
    }

    /* Navigation Buttons */
    .carousel-control-prev,
    .carousel-control-next{
        width: 70px;
        opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        background-image: none;
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.15);
        border: 2px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        transition: 0.3s;
    }

    .carousel-control-prev-icon::after{
        content: "\f104";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #fff;
        font-size: 24px;
    }

    .carousel-control-next-icon::after{
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #fff;
        font-size: 24px;
    }

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover{
        background: #7b0f1c;
        transform: scale(1.1);
    }

    /* Indicators */
    .carousel-indicators [data-bs-target]{
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0.7;
        margin: 0 6px;
    }

    .carousel-indicators .active{
        background-color: #ffd700;
        opacity: 1;
    }

    @media(max-width:991px){
        .hero-caption .txt{
            font-size: 45px;
        }

        .hero-slider .carousel-item{
            min-height: 500px;
        }
    }

    @media(max-width:767px){
        .hero-caption .txt{
            font-size: 32px;
        }

        .hero-caption p{
            font-size: 15px;
        }

        .slider-btn{
            padding: 12px 25px;
        }

        .hero-slider .carousel-item{
            min-height: 450px;
        }
    }
    .about-section{
        padding:60px 0;
        background: #fffaf7;
        overflow: hidden;
    }

    /* Image Section */
    .about-image-wrapper{
        position: relative;
    }

    .about-main-img{
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.12);
        object-fit: cover;
    }

    .about-small-img{
        position: absolute;
        bottom: -30px;
        right: -20px;
        width: 220px;
        border-radius: 20px;
        border: 8px solid #fff;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* Content */
    .about-tag{
        display: inline-block;
        background: rgba(123, 15, 28, 0.1);
        color: #7b0f1c;
        padding: 10px 22px;
        border-radius: 50px;
        font-size:20px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .about-title{
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        color: #222;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .about-title span{
        color: #7b0f1c;
    }

    .about-text{
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        line-height: 1.9;
        color: #666;
        margin-bottom: 30px;
    }

    /* Feature Box */
    .about-feature{
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .about-feature i{
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-right: 18px;
        box-shadow: 0 5px 15px rgba(123,15,28,0.25);
    }

    .about-feature span{
        font-size: 18px;
        margin-bottom: 5px;
        color: #222;
        font-weight: 600;
    }

    .about-feature p{
        margin: 0;
        color: #666;
        font-size: 14px;
    }

    /* Button */
    .about-btn{
        display: inline-block;
        padding: 15px 35px;
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
        margin-top: 15px;
    }

    .about-btn:hover{
        background: linear-gradient(90deg, #b22234, #7b0f1c);
        transform: translateY(-3px);
        color: #fff;
        box-shadow: 0 10px 20px rgba(123,15,28,0.2);
    }

    @media(max-width:991px){
        .about-section{
            padding:30px 0;
        }

        .about-title{
            font-size: 38px;
        }

        .about-small-img{
            width: 170px;
            right: 0;
        }
    }

    @media(max-width:767px){
        .about-title{
            font-size: 30px;
        }

        .about-small-img{
            display: none;
        }

        .about-image-wrapper{
            margin-bottom: 40px;
        }
    }
    .ada-section{
        padding: 70px 0;
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        position: relative;
        overflow: hidden;
    }

    .ada-section::before{
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        top: -120px;
        right: -100px;
    }

    .ada-section::after{
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        bottom: -100px;
        left: -80px;
    }

    .ada-wrapper{
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 950px;
        margin: auto;
    }

    .ada-icon{
        width: 90px;
        height: 90px;
        background: rgba(255,255,255,0.15);
        border: 2px solid rgba(255,255,255,0.25);
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .ada-icon i{
        font-size: 40px;
        color: #fff;
    }

    .ada-title{
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .ada-text{
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: rgba(255,255,255,0.9);
        line-height: 1.9;
        margin-bottom: 35px;
    }

    .ada-phone{
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        color: #7b0f1c;
        padding: 15px 35px;
        border-radius: 60px;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .ada-phone i{
        font-size: 20px;
    }

    .ada-phone:hover{
        background: #ffd700;
        color: #7b0f1c;
        transform: translateY(-3px);
    }

    @media(max-width:991px){
        .ada-title{
            font-size: 34px;
        }

        .ada-text{
            font-size: 16px;
        }
    }

    @media(max-width:767px){
        .ada-section{
            padding: 60px 20px;
        }

        .ada-title{
            font-size: 28px;
        }

        .ada-phone{
            font-size: 17px;
            padding: 14px 25px;
        }
    }
    .services-section{
        padding: 100px 0;
        background: #fffaf7;
        position: relative;
        overflow: hidden;
    }

    .section-subtitle{
        display: inline-block;
        background: rgba(123,15,28,0.1);
        color: #7b0f1c;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .section-title{
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }

    .section-title span{
        color: #7b0f1c;
    }

    .section-text{
        max-width: 750px;
        margin: auto;
        font-size: 16px;
        color: #666;
        line-height: 1.9;
        font-family: 'Poppins', sans-serif;
    }

    /* Service Card */
    .service-card{
        background: #fff;
        border-radius: 25px;
        padding: 35px 30px;
        height: 100%;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        position: relative;
        overflow: hidden;
    }

    .service-card::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        top: 0;
        left: 0;
    }

    .service-card:hover{
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .service-icon{
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        box-shadow: 0 8px 20px rgba(123,15,28,0.25);
    }

    .service-icon i{
        font-size: 34px;
        color: #fff;
    }

    .service-card h3{
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        color: #222;
        margin-bottom: 18px;
    }

    .service-list{
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-list li{
        position: relative;
        padding-left: 32px;
        margin-bottom: 14px;
        color: #666;
        font-size: 15px;
        line-height: 1.7;
        font-family: 'Poppins', sans-serif;
    }

    .service-list li::before{
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #7b0f1c;
    }

    .highlight{
        color: #7b0f1c;
        font-weight: 600;
    }

    @media(max-width:991px){
        .services-section{
            padding: 80px 0;
        }

        .section-title{
            font-size: 38px;
        }
    }

    @media(max-width:767px){
        .section-title{
            font-size: 30px;
        }

        .service-card{
            padding: 30px 25px;
        }
    }
    .attractions-section{
        padding: 100px 0;
        background: #fff;
        overflow: hidden;
    }

    .section-subtitle{
        display: inline-block;
        background: rgba(123,15,28,0.1);
        color: #7b0f1c;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .section-title{
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }

    .section-title span{
        color: #7b0f1c;
    }

    .section-text{
        max-width: 760px;
        margin: auto;
        color: #666;
        font-size: 16px;
        line-height: 1.9;
        font-family: 'Poppins', sans-serif;
    }

    /* Attraction Card */
    .attraction-card{
        position: relative;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

    .attraction-card:hover{
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    }

    .attraction-card img{
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: 0.5s;
    }

    .attraction-card:hover img{
        transform: scale(1.08);
    }

    /* Overlay */
    .attraction-overlay{
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
        display: flex;
        align-items: flex-end;
        padding: 30px;
    }

    .attraction-content{
        color: #fff;
        width: 100%;
    }

    .attraction-icon{
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    .attraction-icon i{
        font-size: 28px;
        color: #fff;
    }

    .attraction-content h4{
        font-family: 'Playfair Display', serif;
        font-size: 30px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .attraction-content p{
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255,255,255,0.9);
        margin-bottom: 0;
        font-family: 'Poppins', sans-serif;
    }

    @media(max-width:991px){
        .section-title{
            font-size: 38px;
        }

        .attraction-card img{
            height: 320px;
        }
    }

    @media(max-width:767px){
        .attractions-section{
            padding: 80px 0;
        }

        .section-title{
            font-size: 30px;
        }

        .attraction-card img{
            height: 280px;
        }

        .attraction-content h4{
            font-size: 24px;
        }
    }
    .footer-section{
        background: #111;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    /* Top Footer */
    .footer-top{
        padding: 90px 0 60px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-logo img{
        max-width: 220px;
        margin-bottom: 25px;
    }

    .footer-about{
        color: rgba(255,255,255,0.75);
        line-height: 1.9;
        font-size: 15px;
        margin-bottom: 25px;
        font-family: 'Poppins', sans-serif;
    }

    /* Footer Title */
    .footer-title{
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        margin-bottom: 30px;
        position: relative;
    }

    .footer-title::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: -12px;
        width: 70px;
        height: 3px;
        background: linear-gradient(90deg, #7b0f1c, #b22234);
        border-radius: 20px;
    }

    /* Quick Links */
    .footer-links{
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li{
        margin-bottom: 15px;
    }

    .footer-links a{
        text-decoration: none;
        color: rgba(255,255,255,0.75);
        transition: all 0.3s ease;
        font-size: 15px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Poppins', sans-serif;
    }

    .footer-links a i{
        color: #b22234;
        transition: 0.3s;
    }

    .footer-links a:hover{
        color: #fff;
        transform: translateX(6px);
    }

    .footer-links a:hover i{
        color: #ffd700;
    }

    /* Contact Info */
    .footer-contact{
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact li{
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 22px;
        color: rgba(255,255,255,0.75);
        font-size: 15px;
        line-height: 1.8;
        font-family: 'Poppins', sans-serif;
    }

    .footer-contact i{
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }

    /* Social Media */
    .social-icons{
        display: flex;
        gap: 15px;
        margin-top: 25px;
    }

    .social-icons a{
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-icons a:hover{
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        transform: translateY(-5px);
        color: #fff;
    }

    /* Bottom Footer */
    .footer-bottom{
        padding: 20px 0;
        text-align: center;
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
    }

    .footer-bottom a{
        color: #ffd700;
        text-decoration: none;
    }

    /* Back To Top */
    .back-to-top{
        position: fixed;
        right: 25px;
        bottom: 25px;
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #7b0f1c, #b22234);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .back-to-top:hover{
        transform: translateY(-5px);
        color: #fff;
        background: linear-gradient(135deg, #b22234, #7b0f1c);
    }

    @media(max-width:991px){
        .footer-top{
            padding: 70px 0 40px;
        }
    }

    @media(max-width:767px){
        .footer-title{
            margin-top: 30px;
        }

        .footer-logo img{
            max-width: 180px;
        }
    }
	.cgs {color:#FFF; text-decoration:none;}
	.cgs a{color:#FFF; text-decoration:none;}
	.cgs a:hover{color:#ffd700; text-decoration:none;}
	.title5 {font-size:20px;}
	.faq {color:#000000; text-decoration:none;}
	.faq a{color:#990000; text-decoration:none;}
	.faq a:hover{color:#000000; text-decoration:none;}
	.fa-taco {background:url(images/taco.png) no-repeat; height:20px; list-style-image:none; padding-left:40px;}
	.fa-surfing {background:url(images/surfing.png) no-repeat; height:20px; list-style-image:none; padding-left:40px;}
	.fa-theme {background:url(images/merry-go-round.png) no-repeat; height:20px; list-style-image:none; padding-left:40px;}


