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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    background: #fff;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4 {
    color: #333;
    font-weight: 700;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-4 {
    width: 33.3333%;
    padding: 0 15px;
}

.col-5 {
    width: 41.6666%;
    padding: 0 15px;
}

.col-7 {
    width: 58.3333%;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: #1a9fb0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: background 0.3s;
}

.btn:hover {
    background: #14808e;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #1a9fb0;
    margin-bottom: 10px;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1a9fb0;
    margin: 12px auto 0;
}

.section-title p {
    font-size: 15px;
}

/* ==========================
   Top Bar
========================== */
.top-bar {
    background: #f1f1f1;
    font-size: 13px;
    color: #777;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 25px;
}

.top-bar-left i {
    color: #1a9fb0;
    margin-right: 5px;
}

.top-bar-right a {
    color: #777;
    margin-left: 15px;
}

/* ==========================
   Navbar
========================== */
.navbar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a9fb0;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.nav-menu li a.active {
    color: #1a9fb0;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
}

/* ==========================
   Hero Slider
========================== */
.hero-slider:not(.slick-initialized) .slide + .slide {
    display: none;
}

.hero-slider .slide {
    position: relative;
    height: 650px;
    background-size: cover;
    background-position: center;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 15px;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.hero-slider .slide-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-slider .slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-slider .slick-dots {
    bottom: 25px;
}

.hero-slider .slick-dots li button:before {
    color: #fff;
    font-size: 12px;
    opacity: 0.6;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    z-index: 5;
    width: 40px;
    height: 40px;
}

.hero-slider .slick-prev {
    left: 25px;
}

.hero-slider .slick-next {
    right: 25px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-size: 36px;
}

/* ==========================
   About
========================== */
.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
}

/* ==========================
   Rooms
========================== */
.room-box {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
}

.room-box img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px 30px;
    text-align: center;
}

.room-info .btn {
    margin-top: auto;
}

.room-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.room-info p {
    margin-bottom: 20px;
}

/* ==========================
   Facilities
========================== */
.facility-box {
    text-align: center;
    border: 1px solid #eee;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.facility-box i {
    font-size: 40px;
    color: #1a9fb0;
    margin-bottom: 15px;
}

.facility-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

/* ==========================
   Why Choose Us
========================== */
.why-box {
    text-align: center;
    padding: 0 15px;
}

.why-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #1a9fb0;
    color: #fff;
    font-size: 30px;
    margin: 0 auto 20px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ==========================
   Gallery
========================== */
.gallery-item {
    margin-bottom: 30px;
}

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

/* ==========================
   Testimonials
========================== */
.testimonial-slider {
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial {
    text-align: center;
    padding: 0 15px 20px;
}

.testimonial i {
    font-size: 30px;
    color: #1a9fb0;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: #1a9fb0;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: #1a9fb0;
}

/* ==========================
   Contact
========================== */
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
}

.contact-form textarea {
    resize: vertical;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 10px 12px;
    border: 1px solid #46b450;
    color: #46b450;
}

.contact-details h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-details p {
    margin-bottom: 20px;
}

.contact-details li {
    margin-bottom: 15px;
}

.contact-details li i {
    color: #1a9fb0;
    width: 20px;
    margin-right: 5px;
}

.map {
    margin-top: 50px;
}

.map iframe {
    display: block;
}

/* ==========================
   Footer
========================== */
.footer {
    background: #222;
    color: #aaa;
    padding-top: 60px;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: #333;
    color: #fff;
    margin-right: 5px;
}

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

.footer-links a {
    color: #aaa;
}

.footer-links i {
    margin-right: 5px;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact i {
    color: #1a9fb0;
    width: 20px;
    margin-right: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        margin-left: 0;
        border-top: 1px solid #eee;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 15px;
    }

    .hero-slider .slide {
        height: 500px;
    }

    .hero-slider .slide-content h1 {
        font-size: 40px;
    }
}

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

    .section-title {
        margin-bottom: 25px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .col-4,
    .col-5,
    .col-7 {
        width: 100%;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left span {
        display: block;
        margin-right: 0;
    }

    .top-bar-right {
        margin-top: 5px;
    }

    .top-bar-right a {
        margin: 0 8px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-slider .slide {
        height: 450px;
    }

    .hero-slider .slide-content h1 {
        font-size: 32px;
    }

    .hero-slider .slide-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .room-box {
        margin-bottom: 20px;
        height: auto;
    }

    .facility-box {
        margin-bottom: 15px;
        padding: 25px 20px;
    }

    .why-box {
        margin-bottom: 25px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    .testimonial p {
        font-size: 16px;
    }

    .contact-details {
        margin-top: 25px;
    }

    .map {
        margin-top: 25px;
    }

    .map iframe {
        height: 300px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-col {
        margin-bottom: 25px;
    }
}
