/* Base styles */
body {
    background-color: black;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Container and layout */
header, section, footer {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styling */
header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 120vh; /* Adding 120vh space between header and about section */
}

.header-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.header-image:hover {
    transform: scale(1.02);
}

/* About section */
.about {
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px;
}

.about h1 {
    color: #ffd700; /* Gold color for main title */
    font-size: 3rem;
    margin: 0 0 20px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    text-align: center;
}

.about h2 {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Hotel listings */
.hotel {
    background-color: rgba(40, 40, 40, 0.8);
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hotel h2 {
    color: #ffd700;
    border-bottom: 1px solid #ffd700;
    padding-bottom: 10px;
}

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

.detail {
    background-color: rgba(60, 60, 60, 0.5);
    padding: 15px;
    border-radius: 5px;
}

.detail h3 {
    color: #ffd700;
    margin-top: 0;
    font-size: 1.2rem;
}

/* Additional info section */
.additional-info {
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    padding: 25px;
    margin: 30px auto;
}

/* Brand section */
.brand {
    text-align: center;
    padding: 30px 0;
}

.brand h3 {
    color: #ffd700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.disclaimer {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(60, 60, 60, 0.5);
    border-radius: 5px;
}

.disclaimer h3 {
    color: #ffd700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hotel-details {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .brand h3 {
        font-size: 1.5rem;
    }
}

/* Hover effects */
.hotel:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* Links styling */
a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}