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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    overflow-x: hidden;
    background: 
        /* Age spots and stains */
        radial-gradient(ellipse at 10% 20%, rgba(139, 69, 19, 0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 90% 80%, rgba(160, 82, 45, 0.03) 0%, transparent 25%),
        radial-gradient(ellipse at 60% 30%, rgba(139, 69, 19, 0.02) 0%, transparent 20%),
        radial-gradient(ellipse at 30% 70%, rgba(160, 82, 45, 0.025) 0%, transparent 22%),
        /* Wrinkles and creases */
        linear-gradient(10deg, rgba(139, 69, 19, 0.015) 0%, transparent 15%, rgba(139, 69, 19, 0.01) 30%, transparent 45%, rgba(139, 69, 19, 0.02) 60%, transparent 75%, rgba(139, 69, 19, 0.015) 90%),
        linear-gradient(-15deg, transparent 0%, rgba(160, 82, 45, 0.01) 20%, transparent 40%, rgba(160, 82, 45, 0.015) 60%, transparent 80%),
        /* Base papyrus color with fiber texture */
        linear-gradient(90deg, 
            #faf8f3 0%, #f9f6f0 2%, #faf8f3 4%, #f8f5ef 6%, 
            #faf8f3 8%, #f7f4ed 10%, #faf8f3 12%, #f6f3eb 14%,
            #faf8f3 16%, #f5f2e9 18%, #faf8f3 20%, #f4f1e7 22%,
            #faf8f3 24%, #f3f0e5 26%, #faf8f3 28%, #f2efe3 30%,
            #faf8f3 32%, #f1eee1 34%, #faf8f3 36%, #f0eddf 38%,
            #faf8f3 40%, #efecdd 42%, #faf8f3 44%, #eeebdb 46%,
            #faf8f3 48%, #edeada 50%, #faf8f3 52%, #ece9d9 54%,
            #faf8f3 56%, #ebe8d8 58%, #faf8f3 60%, #eae7d7 62%,
            #faf8f3 64%, #e9e6d6 66%, #faf8f3 68%, #e8e5d5 70%,
            #faf8f3 72%, #e7e4d4 74%, #faf8f3 76%, #e6e3d3 78%,
            #faf8f3 80%, #e5e2d2 82%, #faf8f3 84%, #e4e1d1 86%,
            #faf8f3 88%, #e3e0d0 90%, #faf8f3 92%, #e2dfcf 94%,
            #faf8f3 96%, #e1dece 98%, #faf8f3 100%);
    position: relative;
    background-size: 
        200px 150px, 180px 120px, 160px 100px, 190px 140px,
        400px 200px, 350px 180px,
        100% 100%;
    background-position: 
        0 0, 100px 100px, 200px 50px, 300px 150px,
        0 0, 50px 50px,
        0 0;
    background-attachment: fixed;
}

/* Egyptian Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Additional papyrus texture overlay */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 3px,
            rgba(139, 69, 19, 0.008) 3px,
            rgba(139, 69, 19, 0.008) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 5px,
            rgba(160, 82, 45, 0.006) 5px,
            rgba(160, 82, 45, 0.006) 6px
        ),
        /* Hieroglyphic symbols */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="20" font-family="serif" font-size="8" fill="%23d4af37" opacity="0.08">𓂀</text><text x="30" y="40" font-family="serif" font-size="6" fill="%23d4af37" opacity="0.08">𓆼</text><text x="60" y="60" font-family="serif" font-size="10" fill="%23d4af37" opacity="0.08">𓏏</text><text x="80" y="80" font-family="serif" font-size="7" fill="%23d4af37" opacity="0.08">𓎛</text></svg>');
    background-size: 100% 100%, 100% 100%, 150px 150px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #d4af37;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3rem;
}

.logo-image {
    height: 100px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease;
}

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

.nav-logo h2 {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 0;
}

.nav-logo h2::after {
    content: ' 𓂀';
    font-size: 1.2rem;
    color: #8b4513;
}

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

.nav-item {
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #f5f1eb;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4af37;
    transition: width 0.3s ease;
}

.welcome-text {
    color: #d4af37;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    padding: 0 15px;
    cursor: default;
    white-space: nowrap;
}

.google-translate {
    display: inline-block;
}

.google-translate select {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #f5f1eb;
    padding: 0.4rem 0.6rem;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.google-translate select:hover {
    background: rgba(212, 175, 55, 0.3);
}

.google-translate img {
    vertical-align: middle;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f5f1eb;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #f5f1eb;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.2), rgba(101, 67, 33, 0.2)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    min-height: 100vh;
    background-size: 120% auto;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: #f5f1eb;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 3rem;
    overflow: visible;
    margin-top: 0;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="20" y="40" font-family="serif" font-size="24" fill="%23d4af37" opacity="0.1">𓂀</text><text x="80" y="80" font-family="serif" font-size="18" fill="%23d4af37" opacity="0.1">𓆼</text><text x="140" y="120" font-family="serif" font-size="20" fill="%23d4af37" opacity="0.1">𓏏</text><text x="60" y="160" font-family="serif" font-size="16" fill="%23d4af37" opacity="0.1">𓎛</text><text x="160" y="60" font-family="serif" font-size="22" fill="%23d4af37" opacity="0.1">𓋴</text></svg>');
    background-size: 300px 300px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: #d4af37;
    position: relative;
}

.hero-content h1::after {
    content: ' 𓂀';
    font-size: 2rem;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #f5f1eb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e8ddd4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Booking Form - Ancient Egyptian Papyrus */
.booking-form {
    background: rgba(250, 248, 243, 0.85) !important;
    padding: 1.5rem;
    border-radius: 0;
    clip-path: polygon(
        0% 5%, 2% 0%, 8% 2%, 15% 0%, 22% 3%, 30% 0%, 
        38% 2%, 45% 0%, 52% 4%, 60% 0%, 68% 3%, 75% 0%, 
        82% 2%, 88% 0%, 95% 3%, 100% 0%, 100% 95%, 
        98% 100%, 92% 98%, 85% 100%, 78% 97%, 70% 100%, 
        62% 98%, 55% 100%, 48% 96%, 40% 100%, 32% 97%, 
        25% 100%, 18% 98%, 12% 100%, 5% 97%, 0% 100%
    );
    box-shadow: 
        0 20px 40px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(179, 158, 144, 0.2);
    width: 85%;
    max-width: 750px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: none;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    background-size: 
        100px 80px, 120px 90px, 80px 60px, 110px 70px,
        200px 100px, 180px 80px, 160px 120px,
        100% 100%;
    background-position: 
        0 0, 50px 50px, 100px 25px, 150px 75px,
        0 0, 20px 20px, 40px 40px,
        0 0;
}



.booking-form h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c1810;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #8b4513;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(245, 241, 235, 0.8);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Error message styles */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    font-weight: 500;
}

.form-group.error input,
.form-group.error select {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success select {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.loading-content {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #d4af37;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.loading-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #2c1810;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.loading-subtext {
    color: #8b4513;
    font-size: 1rem;
}

.book-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b4513 100%);
    color: #2c1810;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.book-btn:hover {
    background: linear-gradient(135deg, #8b4513 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background: #0056b3;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

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

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

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

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

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.room-content p {
    color: #666;
    margin-bottom: 1rem;
}

.room-price {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.book-room-btn {
    width: 100%;
    padding: 0.75rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-room-btn:hover {
    background: #0056b3;
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

.amenity {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.amenity i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.amenity h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.amenity p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial h4 {
    color: #333;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

.gallery-item {
    position: relative;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 200px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #d4af37;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    color: #f5f1eb;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 1rem;
    width: 30px;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: #f5f1eb;
    padding: 3rem 0 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hieroglyphic Background Pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Ankh symbols */
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 70%, rgba(212, 175, 55, 0.06) 2.5px, transparent 2.5px),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.07) 1.8px, transparent 1.8px),
        radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.05) 2.2px, transparent 2.2px),
        /* Eye of Horus patterns */
        linear-gradient(45deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        /* Pharaoh crown outlines */
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 2px, transparent 2px),
        /* Hieroglyphic lines */
        linear-gradient(0deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 
        150px 150px,
        200px 200px,
        180px 180px,
        220px 220px,
        160px 160px,
        50px 50px,
        50px 50px,
        100px 100px,
        30px 30px,
        30px 30px;
    background-position:
        0 0,
        50px 50px,
        100px 100px,
        25px 75px,
        125px 25px,
        0 0,
        25px 25px,
        0 0,
        0 0,
        0 0;
    animation: hieroglyphicFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hieroglyphicFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-0.5deg); }
}

/* Decorative hieroglyphic border */
.footer::after {
    content: '𓂀 𓂋 𓂌 𓂍 𓂎 𓂏 𓂐 𓂑 𓂒 𓂓 𓂔 𓂕 𓂖 𓂗 𓂘 𓂙 𓂚 𓂛 𓂜 𓂝 𓂞 𓂟 𓂠 𓂡 𓂢 𓂣 𓂤 𓂥 𓂦 𓂧 𓂨 𓂩 𓂪 𓂫 𓂬 𓂭 𓂮 𓂯 𓂰 𓂱 𓂲 𓂳 𓂴 𓂵 𓂶 𓂷 𓂸 𓂹 𓂺 𓂻 𓂼 𓂽 𓂾 𓂿';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 69, 19, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(212, 175, 55, 0.8);
    letter-spacing: 8px;
    overflow: hidden;
    white-space: nowrap;
    animation: hieroglyphicScroll 30s linear infinite;
}

@keyframes hieroglyphicScroll {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 60px; /* Space for hieroglyphic border */
    position: relative;
    z-index: 2;
}

.footer-section {
    background: rgba(44, 24, 16, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Individual section hieroglyphic decorations */
.footer-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: 
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.08) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: sectionFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sectionFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.footer-section h3::before {
    content: '𓂀';
    color: rgba(212, 175, 55, 0.6);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: #f5f1eb;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 3;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 3;
}

.footer-section ul li {
    position: relative;
    padding-left: 1.5rem;
}

.footer-section ul li::before {
    content: '𓃭';
    position: absolute;
    left: 0;
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.9rem;
}

.footer-section a {
    color: #f5f1eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 3;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37 0%, #8b4513 100%);
    color: #2c1810;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    pointer-events: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(26, 15, 8, 0.8);
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
}

.footer-bottom p {
    color: #f5f1eb;
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
}

.modal-content input:focus {
    outline: none;
    border-color: #007bff;
}

.login-btn,
.register-btn {
    width: 100%;
    padding: 0.75rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.login-btn:hover,
.register-btn:hover {
    background: #0056b3;
}

.modal-content p {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.modal-content a {
    color: #007bff;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

/* Google Translate Styling */
.language-selector {
    display: inline-block;
    margin-left: 1rem;
    vertical-align: middle;
}

#google_translate_element {
    display: inline-block;
    vertical-align: middle;
}

/* Hide Google Translate branding */
.goog-te-banner-frame {
    display: none !important;
}

/* Override Google Translate default styles */
.goog-te-menu-value {
    color: #f5f1eb !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
}

.goog-te-menu-value span {
    color: #f5f1eb !important;
}

/* Force dropdown text visibility - ALL POSSIBLE SELECTORS */
.goog-te-menu2-item div,
.goog-te-menu2-item span,
.goog-te-menu2-item a,
.goog-te-menu2-item td,
.goog-te-menu2-item tr,
.goog-te-menu2-item table,
.goog-te-menu2-item * {
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-shadow: none !important;
}

.goog-te-menu2-item:hover div,
.goog-te-menu2-item:hover span,
.goog-te-menu2-item:hover a,
.goog-te-menu2-item:hover td,
.goog-te-menu2-item:hover tr,
.goog-te-menu2-item:hover table,
.goog-te-menu2-item:hover * {
    color: #000000 !important;
}

/* Additional specific selectors for Google Translate */
.goog-te-menu2-item .goog-te-menu2-item-content,
.goog-te-menu2-item .goog-te-menu2-item-text,
.goog-te-menu2-item .goog-te-menu2-item-label {
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.goog-te-menu-value:before {
    content: "🌐 ";
    margin-right: 0.5rem;
}

/* Style the dropdown - Force visibility */
.goog-te-menu-frame {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
    border: 2px solid #d4af37 !important;
    background: #ffffff !important;
    backdrop-filter: blur(10px) !important;
}

.goog-te-menu2 {
    background: #ffffff !important;
    border-radius: 8px !important;
}

.goog-te-menu2-item {
    color: #000000 !important;
    font-family: 'Poppins', sans-serif !important;
    padding: 0.5rem 1rem !important;
    border-bottom: 1px solid rgba(44, 24, 16, 0.2) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-shadow: none !important;
}

.goog-te-menu2-item:hover {
    background: #d4af37 !important;
    color: #000000 !important;
}

.goog-te-menu2-item:last-child {
    border-bottom: none !important;
}

.goog-te-menu2-item-selected {
    background: #8b4513 !important;
    color: #ffffff !important;
}

/* Force all text to be visible */
.goog-te-menu2-item * {
    color: #000000 !important;
    font-weight: 700 !important;
}

.goog-te-menu2-item:hover * {
    color: #000000 !important;
}

/* Custom Language Selector */
.custom-language-selector select {
    background: rgba(245, 241, 235, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: #f5f1eb;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.custom-language-selector select:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.custom-language-selector select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Custom dropdown options - Force black text */
.custom-language-selector select option {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem;
}

/* Ensure dropdown arrow is visible */
.custom-language-selector select::-ms-expand {
    display: block;
}

.custom-language-selector select::-webkit-scrollbar {
    width: 8px;
}

.custom-language-selector select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-language-selector select::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

/* Custom Translate Trigger */
.custom-translate-trigger {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(245, 241, 235, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f5f1eb;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.custom-translate-trigger:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.translate-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.translate-text {
    margin-right: 0.5rem;
}

.translate-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-translate-trigger:hover .translate-arrow {
    transform: rotate(180deg);
}

/* Mobile responsive for Google Translate */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0.5rem;
        margin-top: 0;
        display: inline-block;
        vertical-align: middle;
    }
    
    .goog-te-menu-value {
        font-size: 0.8rem !important;
    }
    
    .custom-language-selector select {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .custom-translate-trigger {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .translate-icon {
        font-size: 0.9rem;
    }
}

/* Announcements Section */
.announcements {
    padding: 2rem 0;
    background: rgba(245, 241, 235, 0.95);
    border-bottom: 2px solid #d4af37;
}

.announcement-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.15);
}

.announcement-card.promotion {
    border-left-color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.02) 100%);
}

.announcement-card.urgent {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(220, 53, 69, 0.02) 100%);
}

.announcement-card.maintenance {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.announcement-title {
    color: #2c1810;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.announcement-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.announcement-type,
.announcement-priority {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.announcement-type {
    background: rgba(212, 175, 55, 0.2);
    color: #8b4513;
}

.announcement-priority.high {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.announcement-priority.normal {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
}

.announcement-priority.low {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
}

.announcement-content {
    color: #8b4513;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.announcement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.announcement-date {
    font-weight: 500;
}

.announcement-expiry {
    color: #dc3545;
    font-weight: 500;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .booking-form {
        width: 95%;
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(44, 24, 16, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Hide navigation items that are set to display: none */
    .nav-menu li a[style*="display: none"] {
        display: none !important;
    }
    
    .nav-menu li span[style*="display: none"] {
        display: none !important;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-group {
        min-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .stat {
        flex: 1;
        min-width: 120px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: -1;
    }

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

    .booking-form {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .booking-form h3 {
        font-size: 1.3rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content h1::after {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        margin-bottom: 0;
        padding: 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .booking-form {
        width: 98%;
        padding: 1rem;
        margin: 0.5rem auto;
    }
    
    .booking-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .book-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .rooms-grid {
        gap: 1rem;
    }
    
    .room-card {
        margin-bottom: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenity {
        padding: 1.5rem;
    }
    
    .amenity i {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .booking-form {
        width: 100%;
        padding: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .booking-form {
        margin-top: 1rem;
    }
}

/* Gallery Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #d4af37;
    text-decoration: none;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-in-out;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
    background: rgba(44, 24, 16, 0.8);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid #d4af37;
}

.lightbox-info h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.lightbox-info p {
    color: #f5f1eb;
    font-size: 1.1rem;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-size: cover;
    }
    
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
        width: 0;
    }
    
    .book-btn:hover {
        transform: none;
    }
    
    .room-card:hover {
        transform: none;
    }
    
    .amenity:hover {
        transform: none;
    }
    
    .whatsapp-float a:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .nav-link {
        padding: 0.8rem 1rem;
    }
    
    .book-btn {
        min-height: 48px;
    }
    
    .form-group input,
    .form-group select {
        min-height: 48px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
