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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #000000;
    padding: 0;
    margin: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #d4af37; /* Gold color for headings */
}

h1 {
    font-size: 3rem;
    text-align: center;
    padding: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #c0c0c0; /* Silver color for subheadings */
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Layout */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 120vh; /* 120vh space between header and about section */
    background-color: #000000;
}

.header-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about {
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-left: 4px solid #d4af37;
}

/* Hotel Sections */
.hotel {
    position: relative;
    overflow: hidden;
}

.hotel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.95));
    z-index: -1;
}

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

.detail {
    padding: 1.5rem;
    background-color: rgba(25, 25, 25, 0.8);
    border-radius: 6px;
    border-left: 3px solid #d4af37;
    transition: transform 0.3s ease;
}

.detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Additional Info Section */
.additional-info {
    background: linear-gradient(to top, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-right: 4px solid #d4af37;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: #999;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #333;
}

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

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hotel-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    header {
        margin-bottom: 80vh; /* Slightly reduced space on mobile */
    }
}

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

section {
    animation: fadeIn 0.8s ease-in-out;
}

/* Accent Elements */
.hotel h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #d4af37;
    margin-top: 10px;
}