
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a{
    text-decoration: none;
    color: inherit;
}


.header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.nav-brand h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-style: italic;
    transition: all 0.4s;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-brand h1:hover{
    color: #2c8295;
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c8295;
}

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

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 14px;
}

.social-link:hover {
    background-color: #2c8295;
    color: white;
}


@media (max-width: 768px) {

    
    .navbar {
        flex-direction: row;
        
        justify-content: space-between;
        align-items: center;
    }

    
    .mobile-menu-btn {
        display: flex;
    }

    
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
        width: 100%;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        color: #333;
        border-bottom: none;
    }

    .nav-link:hover {
        color: #2c8295;
        background-color: #f8f9fa;
        padding-left: 10px;
    }

    
    .social-icons {
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .food-image {
        width: 300px;
        height: 300px;
    }

    .handpicked-badge {
        width: 80px;
        height: 80px;
        top: 20px;
        right: -20px;
    }

    .badge-icon {
        font-size: 16px;
    }

    .badge-text span {
        font-size: 8px;
    }

    .author-section {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .carousel-indicators {
        top: 20px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .food-image {
        width: 250px;
        height: 250px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}




.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 0;
    font-style: italic;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #2c8295;
    transform: translateY(-2px);
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c8295;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


@media (max-width: 768px) {
    .footer {
        margin-top: 80px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-separator {
        font-size: 12px;
    }
}