*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.banner {
    height: 100vh;
    width: 100%;
    background-image: url('banner.jpg');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;        
}

.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%; 
    max-width: 100%;    
    margin: 0 auto;      
    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;
    gap: 60px;               
}

.market-item {
    display: flex;           
    flex-direction: row;     
    gap: 60px;               
    align-items: flex-start; 
    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: 800;
}

.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: 20px; }


.more-link {
    font-size: 16px;
    color: #0066cc;           
    text-decoration: none;    
    font-weight: bold;        
    align-self: flex-end;     
    margin-top: 0;            
    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;         
    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: 280px;            
    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%;               
    flex-direction: column;
    align-items: center;      
}

.traffic-img {
    width: 100%;              
    height: auto;              
    border-radius: 10px;       
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.traffic-label {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-top: 20px;         
}

    .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%; 
    }
    .about-text-box {
        position: relative; 
        bottom: auto;
        right: auto;
        width: 100%; 
        margin-top: 20px; 
        padding: 30px;
    }

    .markets-section { padding: 60px 0; }
    .market-item {
        flex-direction: column;
        gap: 20px; 
        margin-bottom: 50px;
    }
    .market-img {
        width: 100%; 
        height: 250px; 
    }
    .market-info h3 { font-size: 22px; }
    .market-info p { font-size: 16px; }
    .food-section { padding: 60px 0; }
    .food-card {
        width: 100%; 
        margin-bottom: 30px;
    }
    .food-img {
        height: 300px; 
    }

    .traffic-section { padding: 60px 0; }
    .traffic-grid {
        flex-direction: column; 
        align-items: center;
        gap: 40px;
    }
    .traffic-item {
        width: 100%; 
    }
    .traffic-img {
        height: auto; 
    }
