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

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

/* Header */
.header {
    background-color: #d9d9d9;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 Aspect Ratio (16 / 9 = 1.778) */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Content Section */
.content {
    background-color: #e8e5dc;
    padding: 60px 20px;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.text-with-image {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 20px;
    align-items: start;
}

.balcony-img {
    width: 100%;
    height: auto;
}

.description-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aerial-img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #d9d9d9;
    padding: 40px 20px;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-left p {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-label {
    font-weight: 600;
    color: #333;
}

.contact-value {
    color: #333;
}

.footer-right h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}


/* Page Title */
.page-title {
    background-color: #e8e5dc;
    padding: 40px 20px 30px;
    text-align: center;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 300;
    color: #999;
    letter-spacing: 1px;
}

/* Rooms Section */
.rooms-section {
    padding: 40px 20px 60px;
}

.room-item {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.room-item:last-child {
    margin-bottom: 0;
}

.room-reverse {
    grid-template-columns: 1fr 480px;
}

/* Room Gallery - Left */
.room-gallery-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-main-image {
    width: 100%;
    overflow: hidden;
}

.room-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.room-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.room-thumbnails img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.room-thumbnails img:hover {
    opacity: 0.8;
}

/* Room Gallery - Right */
.room-gallery-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.room-thumbnails-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.room-thumbnails-grid img:hover {
    opacity: 0.8;
}

/* Room Details */
.room-details {
    padding: 0 20px;
}

.room-name {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.room-description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.booking-link {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-link:hover {
    color: #357abd;
    text-decoration: underline;
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: #555;
}

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

.amenities-list li {
    font-size: 14px;
    color: #555;
    padding: 2px 0;
}

/* Location Page */
.map-section {
    width: 100%;
    background-color: #f5f5f5;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.location-content {
    background-color: #e8e5dc;
    padding: 50px 20px 60px;
}

.location-title {
    font-size: 42px;
    font-weight: 300;
    color: #999;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.location-text {
    max-width: 900px;
    margin: 0 auto 40px;
}

.location-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.location-text p:last-child {
    margin-bottom: 0;
}

.location-image {
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact/Enquire Page */
.contact-section {
    background-color: #e8e5dc;
    padding: 60px 20px;
}

.contact-title {
    font-size: 42px;
    font-weight: 300;
    color: #999;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-subtitle {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 50px;
}

.location-link {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #357abd;
    text-decoration: underline;
}

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

.contact-info-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-address span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-email {
    color: #4a90e2;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #357abd;
    text-decoration: underline;
}

.booking-info {
    margin-top: 10px;
}

.booking-info p {
    font-size: 15px;
    color: #555;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Activities Page */
.activities-section {
    background-color: #e8e5dc;
    padding: 50px 20px 60px;
}

.activities-title {
    font-size: 42px;
    font-weight: 300;
    color: #999;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.activities-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Weather Banner */
.weather-banner {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4464 100%);
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto 50px;
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.weather-location {
    display: flex;
    flex-direction: column;
    color: white;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.weather-city {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.weather-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.weather-days {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}

.weather-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
}

.day-name {
    font-size: 13px;
    font-weight: 500;
}

.weather-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.temperature {
    font-size: 18px;
    font-weight: 600;
}

.temp-range {
    font-size: 11px;
    opacity: 0.8;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 15px 15px 10px;
    text-align: center;
}

.activity-description {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    padding: 0 15px 20px;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .text-with-image {
        grid-template-columns: 1fr;
    }
    
    .container-footer {
        grid-template-columns: 1fr;
    }
    
    .room-item,
    .room-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-gallery-left,
    .room-gallery-right {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .room-item {
        margin-bottom: 50px;
    }
    
    .room-details {
        padding: 0;
    }
    
    .room-name {
        font-size: 24px;
    }
    
    .room-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        height: 300px;
    }
    
    .location-title {
        font-size: 32px;
    }
    
    .location-text {
        padding: 0 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .activities-title {
        font-size: 32px;
    }
    
    .weather-banner {
        flex-direction: column;
        padding: 15px;
    }
    
    .weather-location {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0 0 15px 0;
        width: 100%;
        align-items: center;
    }
    
    .weather-days {
        width: 100%;
        overflow-x: auto;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-image {
        height: 200px;
    }
    
    .activities-title {
        font-size: 28px;
    }
}

