* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('hotel.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section {
    padding: 2rem;
    background-color: #f4f4f9;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Menu Container Styles */
.menu-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.menu-category {
    flex: 1;
    margin: 0 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-category h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
}

/* Button Styles */
.menu-button {
    margin-top: 2rem;
}

.menu-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.menu-btn:hover {
    background: linear-gradient(135deg, #eb5757, #f2994a);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.menu-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.about-content {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-image {
    width: 50%;
    border-radius: 8px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

.owner-info {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.menu-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.menu-category h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.menu-category ul {
    list-style: none;
}

.menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.contact-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.contact-info, .hours {
    flex: 1;
    max-width: 400px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    color: white;
}

@media (max-width: 768px) {
    .about-content,
    .menu-container,
    .contact-container {
        flex-direction: column;
    }

    .hotel-image {
        width: 100%;
    }

    .nav-links {
        display: none;
    }
}