/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #5eb3d0 0%, #3a92b8 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.95;
}

/* Navigation */
.main-nav {
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    display: block;
    transition: all 0.3s;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    background-color: #5eb3d0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 550px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.hero-text h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.4em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    background-color: #5eb3d0;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: #3a92b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
}

.heroSwiper .swiper-pagination-bullet-active {
    background-color: #5eb3d0;
}

/* Overview Section */
.overview-section {
    background-color: #5eb3d0;
    padding: 100px 20px;
    color: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.overview-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.overview-text h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.overview-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.8;
}

.overview-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 70px 20px;
    background-color: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.0em;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 300;
}

.gallerySwiper {
    width: 100%;
    padding: 0 50px 50px;
}

.gallerySwiper .swiper-slide {
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: #5eb3d0;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background-color: #5eb3d0;
}

/* Reviews Section */
.reviews-section {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.0em;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 300;
}

.reviewsSwiper {
    width: 100%;
    padding: 0 50px 50px;
}

.reviewsSwiper .swiper-slide {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 300px;
}

.advert-review-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5eb3d0;
}

.advert-review-rating img {
    height: 20px;
    margin-top: 5px;
}

.advert-review-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.advert-review-verified {
    font-style: italic;
    color: #28a745;
}

.advert-review-body {
    line-height: 1.6;
    color: #333;
}

.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
    color: #5eb3d0;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    background-color: #5eb3d0;
}

/* Booking Section */
.booking-section {
    padding: 70px 0;
    background-color: white;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 300;
}

.booking-section h3 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #666;
    font-weight: 300;
}

#booking-calendar {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    min-height: 500px;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 40px;
}

#booking-calendar .rs-calendar {
    width: 100% !important;
    height: auto !important;
    min-height: 500px;
    display: block;
}

.booking-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.notes-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 30px;
    border-radius: 5px;
}

.notes-box h4 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.notes-box ul {
    list-style: none;
    padding-left: 0;
}

.notes-box ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.notes-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/* Getting Here Section */
.getting-here-section {
    padding: 70px 20px;
    background-color: #f8f8f8;
}

.getting-here-section h2 {
    text-align: center;
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 300;
}

.getting-here-section h3 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #666;
    font-weight: 300;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.location-text h4 {
    color: #5eb3d0;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.location-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-item {
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Things To Do Section */
.things-section {
    padding: 70px 20px;
    background-color: white;
}

.things-section h2 {
    text-align: center;
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 300;
}

.things-section h3 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #666;
    font-weight: 300;
}

.things-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.link-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.link-item h4 {
    color: #5eb3d0;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.link-item ul {
    list-style: none;
    padding: 0;
}

.link-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.link-item ul li:last-child {
    border-bottom: none;
}

.link-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.link-item a:hover {
    color: #5eb3d0;
}

/* Contact Section */
.contact-section {
    padding: 70px 20px;
    background-color: #2c3e50;
    color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.0em;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-section h3 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0.9;
}

.contact-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-box {
    background-color: #5eb3d0;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-box .phone {
    font-size: 2em;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background-color: #1a252f;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.site-footer .review-badges {
    margin-bottom: 20px;
}

.site-footer .review-badges img {
    height: 60px;
    width: auto;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-text h2 {
        font-size: 2em;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-notes {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .site-header h1 {
        font-size: 2em;
    }
    
    .main-nav {
        flex-direction: column;
    }
    
    .main-nav a {
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .heroSwiper .swiper-slide img {
        height: 400px;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}
