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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f3;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
    letter-spacing: 2px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B4513;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #8B4513;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-btn, .reservation-btn, .brochure-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #8B4513;
    background: transparent;
    color: #8B4513;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.reservation-btn {
    background: #8B4513;
    color: white;
}

.lang-btn:hover, .brochure-btn:hover {
    background: #8B4513;
    color: white;
}

.reservation-btn:hover {
    background: #A0522D;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* Offers List Styles */
.offers-list {
    margin: 2rem 0;
}

.offer-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.offer-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.offer-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-weight: 600;
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Room Types Styles */
.room-types, .restaurants, .event-spaces, .membership-benefits {
    margin: 2rem 0;
}

.room-item, .restaurant-item, .space-item, .benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.room-item h3, .restaurant-item h3, .space-item h3, .benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.room-item p, .restaurant-item p, .space-item p, .benefit-item p {
    line-height: 1.6;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 2px;
}

/* Hero Section Improvements */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.awards {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.awards p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.contact-info {
    margin-bottom: 2rem;
}

.enquiries {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phone {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f0f0f0;
}

.cta-button {
    padding: 1rem 2rem;
    background: #8B4513;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Introduction Section */
.introduction {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede7d9 100%);
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.intro-content {
    flex: 1;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: white;
}

.service-item {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content.full-width {
    flex: none;
    width: 100%;
    text-align: center;
    background: #f8f6f3;
    border-radius: 15px;
    margin: 2rem;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #8B4513;
}

.clock-icon {
    font-size: 1.2rem;
}

/* Programs and Products Sections */
.programs, .products {
    padding: 4rem 2rem;
    background: #f8f6f3;
}

.programs h2, .products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
    letter-spacing: 2px;
    text-align: center;
}

.program-item, .product-item {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.program-image, .product-image {
    flex: 1;
}

.program-image img, .product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-image:hover img, .product-image:hover img {
    transform: scale(1.05);
}

.program-content, .product-content {
    flex: 1;
    padding: 2rem;
}

.program-item h3, .product-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8B4513;
    letter-spacing: 1px;
}

.program-item p, .product-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 2rem 1rem;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-address p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B4513;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.top-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 0.8rem 1.5rem;
    background: #8B4513;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .introduction {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-image img {
        height: 250px;
    }
    
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-image img {
        height: 300px;
    }
    
    .program-item, .product-item {
        flex-direction: column;
        gap: 0;
    }
    
    .program-image img, .product-image img {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-item:hover .service-content h2 {
    color: #A0522D;
    transition: color 0.3s ease;
}

.program-item:hover,
.product-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

