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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #555;
    background-color: #f5f5f5;
}

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

/* Header & Navigation */
.navbar {
    background: #e8e8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #777;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #eeeeee;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #666;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.features i {
    color: #777;
    width: 20px;
}

/* Rooms Section */
.rooms {
    padding: 5rem 0;
}

.rooms h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #666;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.room-image {
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

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

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    margin-bottom: 1rem;
    color: #666;
}

.room-info ul {
    list-style: none;
}

.room-info li {
    padding: 0.25rem 0;
    color: #666;
}

.room-info li::before {
    content: '✓';
    color: #777;
    margin-right: 0.5rem;
}

/* Room Card Links */
.room-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.room-card-link:hover {
    transform: translateY(-8px);
}

.room-card-link:hover .room-card {
    transform: none; /* Override the original hover effect */
}

.room-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

.room-cta span {
    color: #777;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.room-card-link:hover .room-cta span {
    color: #555;
}

.room-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.room-card-link:hover .room-cta i {
    transform: translateX(3px);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #eeeeee;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #666;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #666;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #777;
    width: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #777;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #555;
}

/* Footer */
footer {
    background: #666;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #888;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #e8e8e8;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section padding adjustment for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Offer Page Styles */
.offer-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/common-area.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.offer-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offer-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.offer-content {
    padding: 3rem 0;
}

.offer-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-intro h2 {
    color: #666;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.offer-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.room-offer {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #eeeeee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-offer h3 {
    color: #666;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.room-gallery {
    margin-bottom: 2rem;
}

.gallery-main {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.gallery-thumbnails img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery-thumbnails img.active,
.gallery-thumbnails img:hover {
    border-color: #777;
}

.room-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.room-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-details i {
    color: #777;
    width: 20px;
}

.price {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.price strong {
    color: #666;
    font-size: 1.5rem;
}

.additional-services {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ddd;
}

.additional-services h3 {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 2rem;
    color: #777;
    margin-bottom: 1rem;
}

.service-item h4 {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Active navigation state */
.nav-links a.active {
    color: #777;
    font-weight: bold;
}

/* Enhanced Room Offer Styles */
.room-offer {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.room-header h3 {
    color: #333;
    font-size: 2.2rem;
    margin: 0;
    font-weight: 600;
}

.room-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #666;
    font-weight: 500;
}

.room-capacity i {
    color: #777;
}

.room-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.room-gallery {
    margin-bottom: 0;
}

.gallery-main {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.gallery-thumbnails img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbnails img.active {
    border-color: #777;
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.room-details h4,
.room-description h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.room-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-details li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #555;
}

.room-details li:last-child {
    border-bottom: none;
}

.room-details i {
    color: #777;
    width: 20px;
    font-size: 1.1rem;
}

.room-description {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #777;
}

.room-description p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: #777;
}

.service-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Booking Info Section */
.booking-info {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.booking-info h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item i {
    color: #777;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item span {
    color: #555;
    font-weight: 500;
}

.booking-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.booking-note p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsive for Offer Page */
@media (max-width: 768px) {
    .offer-hero h1 {
        font-size: 2rem;
    }
    
    .offer-hero {
        padding: 6rem 0 2rem;
    }
    
    .room-offer {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .room-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .room-header h3 {
        font-size: 1.8rem;
    }
    
    .room-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-thumbnails img {
        height: 60px;
    }
    
    .room-details li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .room-offer {
        padding: 1rem;
    }
    
    .room-header h3 {
        font-size: 1.5rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .booking-info {
        padding: 1.5rem;
    }
}
