/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f5f0;
    color: #3a3a3a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    padding-top: 0;
}

/* Modern Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #2c1810;
    padding: 0.5rem 0;
}

.navbar-brand i {
    color: #6f4e37;
}

.nav-link {
    color: #2c1810 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6f4e37 !important;
}

.nav-link.active {
    color: #6f4e37 !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #6f4e37;
    border-radius: 2px;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #2c1810;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(111, 78, 55, 0.1);
    color: #6f4e37;
}

.dropdown-item.active {
    background-color: #6f4e37;
    color: white;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    color: #2c1810;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link.active::after {
        display: none;
    }
}

/* Hero Section */
.first-section-container {
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.first-section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.first-section {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
}

.first-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.first-section p {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.Menu-button {
    background-color: #6b4226;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.Menu-button:hover {
    background-color: #8c5e3d;
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 50px 0 30px;
}

.section-title h1 {
    color: #6b4226;
    font-size: 2.5rem;
    font-weight: bold;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #a67c52;
    margin: 15px auto;
}

/* Special Offers */
.third-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 20px 50px;
}

.item-card {
    width: 280px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.item-card:hover {
    transform: translateY(-10px);
}

.item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-card h2 {
    color: #6b4226;
    font-size: 1.5rem;
    padding: 15px 15px 5px;
}

.item-card h6 {
    color: #777;
    padding: 0 15px 20px;
    line-height: 1.6;
}

/* Breakfast Special */
.Breakfast-offers {
    background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24');
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 15px;
    margin: 50px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.Breakfast-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}

.offer-content {
    position: relative;
    z-index: 1;
    padding: 0 50px;
    color: white;
}

.Breakfast {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.offer-description {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.View-offer {
    background-color: #a67c52;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.View-offer:hover {
    background-color: #6b4226;
}

/* Testimonials */
.testimonials {
    background-color: #f5efe7;
    padding: 30px 0 60px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px 0;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #6b4226;
    margin-bottom: 10px;
}

.rating {
    color: #ffc107;
}

/* Footer */
.coffee-footer {
    background-color: #2c1810;
    color: #f9f5f0;
    padding: 60px 0 20px;
    margin: 0;
    margin-top: 100px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-section {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f9f5f0;
    text-align: center;
}

.footer-description {
    color: #d4c4b7;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    color: #f9f5f0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #a67c52;
}

.footer-section h4 {
    color: #f9f5f0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section ul li {
    margin-bottom: 10px;
    text-align: center;
}

.footer-section ul li a {
    color: #d4c4b7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.footer-section ul li a:hover {
    color: #a67c52;
}

.footer-section ul li i {
    color: #a67c52;
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4c4b7;
    width: 100%;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .first-section h1 {
        font-size: 2.2rem;
    }
    
    .first-section p {
        font-size: 1.2rem;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
    .Breakfast {
        font-size: 2rem;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .first-section-container {
        height: 400px;
    }
    
    .item-card {
        width: 100%;
    }
    
    .Breakfast-offers {
        height: 350px;
    }
    
    .offer-content {
        padding: 0 20px;
        text-align: center;
    }

    .testimonial-card {
        margin-bottom: 25px;
       
    }
}