:root {

    --primary: #00b4d8;

    --secondary: #0077b6;

    --accent: #ffd60a;

    --dark: #03045e;

    --light: #caf0f8;

    --white: #FFFFFF;



    /* Professional Color */



    --navy-blue: rgb(11,28,61);

    --soft-gold: #C9A24D;

    --white: #FFFFFF;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    overflow-x: hidden;

}



/* Navbar */

.navbar {

    background: var(--white);

    padding: 0px 0 !important;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}



.navbar-brand {

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--white) !important;

}



.navbar-brand i {

    color: var(--white);

}

.navbar-brand img {

    width: 100px;

}



.nav-link {

    color: var(--navy-blue) !important;

    margin: 0 10px;

    font-weight: 500;

    transition: color 0.3s;

}



.nav-link:hover {

    color: var(--soft-gold) !important;

}



.navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(11,28,61)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}



.language-selector {

    background: var(--white);

    border-color: var(--navy-blue);

    color: var(--navy-blue);

    padding: 5px 15px;

    border-radius: 20px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s;

    border: 2px solid;

}

/* Hero Slider */

.hero-section {

    position: relative;

    height: 800px;

    overflow: hidden;

}



.hero-carousel,

.hero-carousel .owl-stage,

.hero-carousel .owl-stage-outer,

.hero-slide {

    height: auto;

}



.hero-slide img {

    width: 100%;

    height: 100vh;

    object-fit: cover;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

     inset: 0;

    background: rgba(11,28,61, 0.30);

    z-index: 1;

}



.hero-carousel .owl-nav {

    position: absolute;

    top: 50%;

    width: 100%;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

    padding: 0 30px;

    z-index: 3;

}



.hero-carousel .owl-nav button {

    width: 55px;

    height: 55px;

    background: rgba(255, 255, 255, 0.2) !important;

    border-radius: 50%;

    color: var(--white) !important;

    font-size: 28px !important;

    transition: all 0.3s;

}



.hero-carousel .owl-nav button:hover {

    background: var(--accent) !important;

    color: var(--dark) !important;

}







.owl-item {

    opacity: 0;

    transition: opacity 1s ease-in-out;

}



.owl-item.active {

    opacity: 1;

}







.hero-content {

    position: absolute;

    top: 60%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: var(--white);

    z-index: 2;

    width: 90%;

    max-width: 900px;

}



.hero-content h1 {

    font-size: 4rem;

    font-weight: 700;

    margin-bottom: 1rem;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);

    animation: fadeInDown 1s ease;

}



.hero-content p {

    font-size: 1.5rem;

    margin-bottom: 2rem;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);

    animation: fadeInUp 1s ease 0.3s both;

}



.btn-primary-custom {

    color: var(--navy-blue);

    padding: 15px 40px;

    border: none;

    font-size: 1.1rem;

    font-weight: 700;

    border-radius: 50px;

    transition: all 0.3s;

    animation: fadeInUp 1s ease 0.6s both;

    border: 2px solid var(--navy-blue);

}



.btn-primary-custom:hover {

    background: var(--navy-blue);

    color: var(--white);

    transform: translateY(-3px);

}





.btn-hero{

    font-size: 18px;

    border: 1px solid white;

    border-radius: 20px;

}



@keyframes fadeInDown {

    from {

        opacity: 0;

        transform: translateY(-30px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Sections */

#rooms{

    padding-top: 0;

    padding-bottom: 50px;

}

#overview{

    padding-bottom: 50px;

}

#amenities {

    padding-top: 40px;

}

#video {

    padding-top: 0px;

}



section {

    padding: 80px 0;

}



.section-title {

    font-size: 2.8rem;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 1rem;

    text-align: center;

}



.section-subtitle {

    color: var(--navy-blue);

    font-size: 1.2rem;

    text-align: center;

    margin-bottom: 3rem;

}



/* Overview Section */

.overview-card {

    background: var(--white);

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 1px 4px var(--navy-blue);

    transition: all 0.3s;

    border: 2px solid var(--navy-blue);

}



.overview-card:hover {

    transform: translateY(-5px);

    background: var(--navy-blue);

    color: var(--white);

}



.overview-card:hover i {

    color: var(--white);

}



/* Rooms Section */

.room-card {

    border: none;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 1px 4px var(--navy-blue);

    transition: all 0.3s;

    height: 100%;

}



.room-card:hover {

    transform: translateY(-10px);

}



.room-card img {

    height: 280px;

    object-fit: cover;

    border: 1px solid white;

    border-radius: 16px 16px 0 0;

}



.room-badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: var(--navy-blue);

    color: var(--white);

    padding: 8px 20px;

    border-radius: 25px;

    font-weight: 700;

    z-index: 1;

}



/* Amenities Section */

.amenity-category {

    background: rgba(255, 255, 255, 0.05);

    padding: 30px;

    border-radius: 15px;

    margin-bottom: 30px;

    transition: all 0.3s;

    border: 2px solid;

}



.amenity-category:hover {

    background:var(--navy-blue);

    transform: translateY(-5px);

    color: var(--white) !important;

}



.amenity-category h4 {

    color: var(--navy-blue);

    margin-bottom: 20px;

    font-weight: 700;

    font-size: 1.4rem;

}



.amenity-category:hover h4,

.amenity-category:hover .amenity-item i {

    color: var(--white);

}



.amenity-item {

    padding: 10px 0;

    border-bottom: 0.1px solid var(--navy-blue);

}

.amenity-category:hover .amenity-item {

    border-bottom: 0.1px solid var(--white);

}



.amenity-item:last-child {

    border-bottom: none;

}

.amenity-category:hover .amenity-item:last-child {

    border-bottom: none;

}



.amenity-item i {

    color: var(--navy-blue);

    margin-right: 10px;

    width: 20px;

}



/* Contact Section */

.contact-card {

    border-radius: 15px;

    box-shadow: 0 1px 4px var(--navy-blue);

    height: 100%;

}



.contact-item {

    display: flex;

    align-items: center;

    margin-bottom: 25px;

    padding: 20px;

    border-color: var(--navy-blue);

    border: 2px solid var(--navy-blue);

    border-radius: 10px;

    transition: all 0.3s;

}



.contact-item:hover {

    background: var(--navy-blue);

    color: var(--white);

    transform: translateX(4px);

}



.contact-item i {

    font-size: 2rem;

    color: var(--navy-blue);

    margin-right: 20px;

    min-width: 50px;

}



.contact-item:hover i {

    color: var(--white);

}



.form-control {

    padding: 12px 20px;

    border-radius: 10px;

    transition: all 0.3s;

}



.form-control:focus {

    border-color: var(--navy-blue);

    box-shadow: 0 1px 4px var(--navy-blue);

}



/* Footer */

footer {

    background: var(--navy-blue);

    color: var(--white);

    padding: 40px 0 20px;

}



.social-icons a {

    display: inline-flex;

    width: 45px;

    height: 45px;

    background: var(--navy-blue);

    color: var(--white);

    border-radius: 50%;

    align-items: center;

    justify-content: center;

    margin: 0 8px;

    transition: all 0.3s;

    font-size: 1.2rem;

    text-decoration: none;

    border: 2px solid;

}



.social-icons a:hover {

    background: var(--white);

    color: var(--navy-blue);

    transform: translateY(-5px);

}



.feature-icon {

    font-size: 3rem;

    color: var(--navy-blue);

    margin-bottom: 15px;

}



.footer_about_text{

    line-height: 28px;

}



@media (max-width: 768px) {

    .hero-content h1 {

        font-size: 2.5rem;

    }



    .hero-content p {

        font-size: 1.2rem;

    }



    .section-title {

        font-size: 2rem;

    }

}





/* video section */

.portrait-video {

    position: relative;

    height: 500px;

    background: #000;

    cursor: pointer;

    transition: transform 0.3s ease;

}



.portrait-video:hover {

    transform: translateY(-5px);

}



.portrait-video video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}



.call-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #1d2b53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d2b53;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #1d2b53;
    color: #fff;
}

.footer-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-call i {
    /* width: 45px; */
    /* height: 45px; */
    /* border: 2px solid #fff; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}