/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: url("https://placehold.co/1920x1080") no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.z-index-1 {
    z-index: 1;
}

/* Card Styles */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-container {
    height: 200px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hover-card:hover .card-img-container img {
    transform: scale(1.05);
}

/* About Section */
.about-img-container {
    height: 400px;
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu Tabs */
.menu-tabs {
    gap: 10px;
}

.menu-tabs .nav-link {
    color: #333;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px;
}

.menu-tabs .nav-link.active {
    background-color: #ffc107;
    color: #000;
}

.menu-item-card .object-cover {
    object-fit: cover;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://placehold.co/1920x600") no-repeat
    center center;
    background-size: cover;
}

/* Footer Styles */
.hover-text-white:hover {
    color: #fff !important;
}

/* Button Styles */
.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    color: #000;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .about-img-container {
        height: 300px;
        margin-top: 20px;
    }
}

