body {
    font-family: "Segoe UI", Verdana, sans-serif;
    background: #012265;
    color: #fff;
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    font-family: "Segoe UI", Verdana, sans-serif;
}


.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../hotel-banner.jpg') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
}

.hero h1 {
    font-size: 52px;
    font-weight: bold;
}

.hero p {
    font-size: 22px;
}

.card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card img {
    height: 250px;
    object-fit: cover;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.menu-link {
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 5px 10px;
}

.menu-link:hover {
    color: #ffd700 !important; /* gold */
    border-bottom: 2px solid #ffd700;
    background: transparent;
}

.ash-bg {
    background-color: #f2f2f2;
}

.book-btn {
    transition: all 0.3s ease;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px 18px;
}

.book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

footer {
    margin-top: 50px;
    background: #012265;
}