* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.banner {
    height: 100vh;
    width: 100%;
    background-image: url('https://res.cloudinary.com/yvsemznz/image/upload/v1790217304/banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin-left: 25px;
}

.navbar > .nav-link:first-child {
    margin-left: 0;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-right {
    display: flex;
}

.banner-title {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-title h1 {
    color: white;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
}

.about-section {
    background-color: #fcfbf9;
    padding: 80px 0;
    width: 100%;
}

.about-container {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.about-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 18px;
    color: #555555;
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    position: relative;
    width: 100%;
}

.about-image {
    width: 70%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.about-text-box {
    position: absolute;
    bottom: -40px;
    right: 60px;
    width: 40%;
    background-color: #f4efe4;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.about-text-box p {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
}

.markets-section {
    background-color: #fcfbf9;
    padding: 100px 0;
    width: 100%;
}

.markets-container {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.markets-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 70px;
}

.markets-list {
    display: flex;
    flex-direction: column;
}

.market-item {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 80px;
}

.market-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    flex-shrink: 0;
}

.market-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
}

.market-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.market-info p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.more-link {
    font-size: 16px;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.more-link:hover {
    text-decoration: underline;
    color: #003399;
}

.more-link .arrow {
    font-size: 18px;
}

.food-section {
    background-color: #fcfbf9;
    padding: 100px 0;
    width: 100%;
}

.food-container {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.food-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.food-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 60px;
}

.food-card {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.food-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
}

.food-name {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    margin-top: 20px;
    text-align: left;
}

.traffic-section {
    background-color: #fcfbf9;
    padding: 100px 0;
    width: 100%;
}

.traffic-container {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.traffic-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.traffic-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.traffic-item {
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.traffic-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.traffic-label {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    
    .banner-title h1 { 
        font-size: 36px; 
        letter-spacing: 1px; 
    }
    
    .navbar { 
        flex-direction: column; 
        padding: 20px; 
        gap: 15px; 
    }
    
    .nav-link { 
        margin: 0 10px; 
        font-size: 16px; 
    }
    
    .about-container, 
    .markets-container, 
    .food-container, 
    .traffic-container {
        padding: 0 20px; 
    }

    .about-title, 
    .markets-title, 
    .food-title, 
    .traffic-title {
        font-size: 28px; 
        margin-bottom: 40px;
    }

    .about-section { 
        padding: 60px 0; 
    }
    
    .about-image { 
        width: 100%; 
        border-radius: 0; 
    }
    
    .about-text-box {
        position: relative; 
        bottom: auto;
        right: auto;
        width: 100%; 
        margin-top: 20px; 
        padding: 30px;
        box-shadow: none; 
    }
    
    .about-text-box p {
        font-size: 16px;
    }

    .markets-section { 
        padding: 60px 0; 
    }
    
    .market-item {
        flex-direction: column; 
        gap: 20px; 
        margin-bottom: 50px;
    }
    
    .market-img {
        width: 100%; 
        height: auto;        
        max-height: 300px;   
        object-fit: cover;   
        border-radius: 16px;
    }
    
    .market-info {
        max-width: 100%; 
    }
    
    .market-info h3 { 
        font-size: 22px; 
    }
    
    .market-info p { 
        font-size: 16px; 
        margin-bottom: 15px;
    }
    
    .more-link {
        align-self: flex-start; 
    }

    .food-section { 
        padding: 60px 0; 
    }
    
    .food-grid {
        flex-direction: column; 
        gap: 40px;
    }
    
    .food-card {
        width: 100%; 
    }
    
    .food-img {
        height: 280px;
    }
    
    .food-name {
        font-size: 18px;
        margin-top: 15px;
        text-align: center; 
    }

    .traffic-section { 
        padding: 60px 0; 
    }
    
    .traffic-grid {
        flex-direction: column; 
        align-items: center;
        gap: 50px;
    }
    
    .traffic-item {
        width: 100%; 
        min-width: auto;
    }
    
    .traffic-img {
        height: auto; 
        max-height: 350px;
    }
    
    .traffic-label {
        font-size: 18px;
        margin-top: 15px;
    }
} 