/* Elegant Gold Style - Variant 1 */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --cream-light: #FFFACD;
    --cream-dark: #F5F5DC;
    --text-dark: #8B4513;
    --text-light: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 215, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--secondary-gold);
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--secondary-gold);
    color: var(--text-light);
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

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

.lang-btn, .reservation-btn, .brochure-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover, .reservation-btn:hover, .brochure-btn:hover {
    background: var(--text-dark);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Tab Content Styles */
.main-content {
    margin-top: 80px;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(45deg, var(--cream-light), var(--cream-dark));
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) hue-rotate(15deg) brightness(110%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-text {
    background: rgba(255, 215, 0, 0.9);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--secondary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.offer-item, .room-item, .restaurant-item, .space-item, .benefit-item {
    background: rgba(255, 215, 0, 0.2);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-gold);
    transition: all 0.3s ease;
}

.offer-item:hover, .room-item:hover, .restaurant-item:hover, .space-item:hover, .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.3);
    background: rgba(255, 215, 0, 0.3);
}

.offer-item h3, .room-item h3, .restaurant-item h3, .space-item h3, .benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--secondary-gold);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 165, 0, 0.6);
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
}

/* Awards and Contact Info */
.awards {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-gold);
}

.awards p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info {
    text-align: center;
    margin: 2rem 0;
}

.enquiries {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Services Sections */
.introduction, .services, .programs, .products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-image, .service-image, .program-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-image img, .service-image img, .program-image img {
    width: 100%;
    height: auto;
    filter: sepia(20%) saturate(110%) hue-rotate(10deg) brightness(105%);
    transition: all 0.3s ease;
}

.intro-image img:hover, .service-image img:hover, .program-image img:hover {
    transform: scale(1.05);
    filter: sepia(30%) saturate(120%) hue-rotate(15deg) brightness(110%);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--secondary-gold);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #654321 100%);
    color: var(--primary-gold);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-links a {
    color: var(--primary-gold);
    text-decoration: none;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cream-light);
    text-shadow: 0 0 10px var(--primary-gold);
}

.top-btn {
    background: var(--primary-gold);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.top-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* 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;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        padding: 2rem;
        margin: 1rem;
    }
}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);
}

