/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Poppins:wght@300;600&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

a {
    color: #ff5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e64a19;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #ff5722, #e64a19);
    padding: 1rem;
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease;
}

.navbar-brand img {
    height: 30px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    margin-right: 15px;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover,
.nav-item.active .nav-link {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    background-image: url('path-to-your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: background 0.5s ease;
}

.hero-section h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out forwards;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.5s ease-out forwards;
}

.hero-section .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #ff5722;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.hero-section .btn:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* About Us Section */
#about {
    background-color: #fff;
    padding: 60px 0;
}

#about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Menu Section */
#menu {
    background-color: #f9f9f9;
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
}

#menu h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff5722;
    text-align: center;
    animation: fadeInDown 1s ease-out forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #666;
}

.card img {
    border-radius: 15px 15px 0 0;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background: #fff;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff5722;
    text-align: center;
}

#contact p {
    font-size: 1.1rem;
    color: #666;
}

#contact .list-inline-item {
    margin-right: 15px;
}

#contact .list-inline-item a {
    color: #ff5722;
    transition: color 0.3s ease;
}

#contact .list-inline-item a:hover {
    color: #e64a19;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {
        margin-right: 5px;
        padding: 5px;
        font-size: 1rem;
    }
}


/* Map Section */
#location {
    background-color: #fff;
    padding: 60px 0;
}

#location h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff5722;
    text-align: center;
}

/* Map Section */
#map {
    height: 300px; /* Reduced height for a smaller map */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Ensure all menu images are the same size */
.card-img-top {
    width: 100%;
    height: 200px; /* Adjust the height to suit your design */
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    border-radius: 5px; /* Optional: keep images rounded to match the card style */
}
