body {
    font-family: 'Poppins', sans-serif;
    background-color: #2c2c2c; /* Dark background as seen in the image */
    color: #f5f5dc; /* Off-white for general text */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #f5f5dc; /* Consistent heading color */
}

a {
    text-decoration: none;
    color: inherit; /* Inherit color from parent for nav links by default */
}

a:hover {
    color: #d1b48c; /* Lighter brown for hover effects */
}

/* Navbar adjustments */
.navbar {
    background-color: #3a3a3a !important; /* Darker nav background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar-brand img {
    margin-right: 5px;
}

.navbar h1 {
    font-size: 1.8rem;
    color: #f5f5dc;
    margin-bottom: 0;
}

.navbar h1 span {
    color: #d1b48c; /* Accent color for the dot */
}

.navbar-nav .nav-link {
    color: #f5f5dc !important;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d1b48c !important;
}

.dropdown-menu {
    background-color: #3a3a3a;
    border: none;
}

.dropdown-item {
    color: #f5f5dc;
}

.dropdown-item:hover {
    background-color: #4b4b4b;
    color: #d1b48c;
}

.btn-outline-success {
    border-color: #d1b48c;
    color: #d1b48c;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #d1b48c;
    color: #2c2c2c;
}

.btn-outline-success a {
    color: inherit;
}

/* Hero Section */
.hero-section {
    background-color: #4b2e2e; /* Dark brown background for hero */
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hero-image img {
    max-width: 400px; /* Adjust as needed */
    height: auto;
    animation: float 3s ease-in-out infinite; /* Simple floating animation for the cup */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-section .btn-primary {
    background-color: #d1b48c; /* Gold/light brown button */
    border-color: #d1b48c;
    color: #2c2c2c;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #b89d7b;
    border-color: #b89d7b;
}

/* Features Section */
.features-section {
    background-color: #3a3a3a;
    padding: 80px 0;
}

.feature-item {
    background-color: #4b2e2e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    max-height: 80px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #f5f5dc;
}

/* Popular Menu Section */
.menu-section {
    background-color: #2c2c2c;
    padding: 80px 0;
}

.menu-section h2 {
    color: #d1b48c;
    margin-bottom: 60px;
}

.menu-item.card {
    background-color: #4b2e2e; /* Darker background for menu cards */
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.menu-item .card-img-top {
    width: 100%;
    height: 200px; /* Fixed height for menu images */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-item .card-body {
    padding: 20px;
    color: #f5f5dc;
}

.menu-item .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #d1b48c;
}

.menu-item .card-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f5f5dc;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #3a3a3a;
    padding: 80px 0;
}

.testimonials-section h2 {
    color: #d1b48c;
}

.carousel-item p {
    font-style: italic;
    font-size: 1.3rem;
    color: #f5f5dc;
}

.carousel-item p:last-child {
    font-weight: 600;
    margin-top: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #d1b48c;
    border-radius: 50%;
    padding: 15px;
}

/* Call to Action - Dishes Section */
.cta-dishes-section {
    background-color: #4b2e2e;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #fff;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.cta-image img {
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    background-color: #3a3a3a;
    color: #f5f5dc;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    margin-bottom: 20px;
}

.footer-content p {
    margin-bottom: 10px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.social-links li {
    display: inline-block;
    margin: 0 10px;
}

.social-links a {
    color: #f5f5dc;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d1b48c;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.footer-nav li {
    display: inline-block;
    margin: 0 10px;
}

.footer-nav a {
    color: #f5f5dc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #d1b48c;
}

.footer-credits p {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 20px;
}

/* Responsive Adjustments (Basic) */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        max-width: 300px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-image img {
        max-width: 300px;
    }

    .navbar-collapse {
        text-align: center;
    }
    .navbar-nav .nav-item {
        margin: 10px 0;
    }
}