* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: black;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
    color: gold;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: black;
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 60px 20px;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu ul li a.active {
    color: gold;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 80vh;
}

.stars {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.stars i {
    color: gold;
    font-size: 24px;
    margin-right: 5px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.popup-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0;
}

.popup-text.white {
    color: white;
}

.popup-text.black {
    color: black;
}

.popup-sub {
    color: white;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Actions */
.quick-actions {
    padding: 60px 5%;
    background: #f9f9f9;
}

.action-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.action-card {
    text-align: center;
    cursor: pointer;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 200px;
    text-decoration: none;
    display: block;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.action-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.action-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: black;
}

.action-card p {
    color: #666;
    font-size: 14px;
}

/* Golden Offer */
.golden-offer {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff8e7, #fff);
}

.discover-text {
    color: gold;
    font-size: 18px;
    letter-spacing: 2px;
}

.golden-text {
    font-size: 48px;
    color: #b8860b;
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
}

/* Property Sections */
.property-section {
    padding: 60px 5%;
    background: white;
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-container.reverse {
    direction: rtl;
}

.section-container.reverse .section-details {
    direction: ltr;
}

.section-image img {
    width: 100%;
    border-radius: 15px;
    height: 400px;
    object-fit: cover;
}

.section-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.section-details p {
    margin: 15px 0;
    font-size: 18px;
    color: #555;
}

.price {
    font-size: 24px;
    color: gold;
    font-weight: bold;
    margin: 20px 0;
}

.book-btn {
    background: gold;
    color: black;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    background: #ffd700;
}

/* Room Types Section */
.room-types {
    padding: 60px 5%;
    background: #f9f9f9;
}

.room-types h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
}

.room-card p {
    padding: 0 20px;
    color: #666;
}

.room-card .room-price {
    padding: 15px 20px;
    font-size: 28px;
    color: gold;
    font-weight: bold;
}

.room-card .book-btn {
    margin: 0 20px 20px;
    display: block;
    text-align: center;
}

/* Gallery Page */
.gallery-page {
    padding: 120px 5% 60px;
}

.gallery-page h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

/* Articles Section */
.articles-section {
    padding: 60px 5%;
    background: #f9f9f9;
}

.articles-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.article-content p {
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: gold;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: gold;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-text {
        bottom: 20px;
    }
    
    .popup-text {
        font-size: 28px;
    }
    
    .popup-sub {
        font-size: 12px;
        padding: 0 20px;
    }
    
    .section-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-container.reverse {
        direction: ltr;
    }
    
    .action-cards {
        gap: 15px;
    }
    
    .action-card {
        min-width: 150px;
        padding: 20px;
    }
    
    .golden-text {
        font-size: 32px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}