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

:root {
    --primary-color: #008080;
    --secondary-color: #006666;
    --accent-color: #00a0a0;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-book-top {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-book-top:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* Main Navigation */
.main-header {
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 15px 0;
}

.nav-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;
    gap: 10px;
}

/* Logo Image */
.logo-img {
    height: 70px;              /* Adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Brand Text */
.logo h1 {
    font-size: 22px;           /* Slightly reduced to balance with logo */
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;                 /* Prevent spacing issues */
    line-height: 1.2;
}

/* Subtitle */
.logo-subtitle {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 0.85em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================
   Hero Section – Cross Fade
   10s per image
========================= */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: heroFade 30s infinite; /* 3 images × 10s */
}

/* Image sources (styles.css is in same folder as index.html) */
.hero-bg.bg1 { background-image: url('pictures/DSC_0207.JPG'); }
.hero-bg.bg2 { background-image: url('pictures/20240420_144155.jpg'); }
.hero-bg.bg3 { background-image: url('pictures/GreenAcre2.jpg'); }

/* Stagger timing */
.hero-bg.bg1 { animation-delay: 0s; }
.hero-bg.bg2 { animation-delay: 10s; }
.hero-bg.bg3 { animation-delay: 20s; }

/* Fade animation */
@keyframes heroFade {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    30%  { opacity: 1; }
    38%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Overlay (keep ONE overlay rule) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: var(--text-light);
}

.hero-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: scale(1.05);
}

/* Booking CTA Section */
.booking-cta {
    background-color: var(--text-light);
    padding: 40px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-form {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form .btn-primary {
    padding: 12px 30px;
}

/* Rooms Packages Section */
.rooms-packages {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.rooms-packages-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

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

.room-package {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--text-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.room-package:hover,
.room-package.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.room-thumbnail {
    width: 100px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0;
}

.room-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.room-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.room-display {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

/* Rooms & Tariff Section */
.rooms-tariff {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card-content {
    padding: 25px;
}

.room-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.room-card-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.room-card-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.room-card-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.room-card .btn-primary {
    width: 100%;
    padding: 12px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-item p {
    color: #666;
    font-size: 14px;
}

/* Restaurant Section */
.restaurant {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.restaurant-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.restaurant-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

.restaurant-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.restaurant-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.restaurant-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.restaurant-highlights li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.restaurant-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Attractions Section */
.attractions {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.attractions-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.attractions-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

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

.attraction-item {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.attraction-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.attraction-item h3 {
    font-size: 20px;
    color: var(--text-dark);
}

.attraction-distance {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 30px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.review-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 250px;
}

.review-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Packages Section */
.packages {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-duration {
    color: #666;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.package-card .btn-primary {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: var(--text-light);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rooms-grid,
    .services-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--text-light);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
        gap: 15px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

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

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        height: 500px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .rooms-packages-content {
        grid-template-columns: 1fr;
    }

    .rooms-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .room-package {
        min-width: 200px;
    }

    .rooms-grid,
    .services-grid,
    .packages-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-content,
    .attractions-content {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        overflow-x: auto;
        display: flex;
        gap: 20px;
    }

    .review-card {
        min-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 28px;
    }
}

