/* ================= Global Styles ================= */

body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #F5F7FA;
    color: #2B2D42;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #0A3D62;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
}

/* ================= Navigation ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #FFFFFF;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #0A3D62;
    font-weight: bold;
}

.nav-links a:hover {
    color: #FF7F11;
}

/* ================= Hero ================= */

.hero {
    background: url('Images/tokyo-skyline-hero.jpg.png') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF7F11;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #D65A00;
}

/* ================= Grid Layout ================= */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 6px;
}

/* ================= Food Section ================= */

.food-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.food-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 6px;
}

/* ================= Travel Tips ================= */

.tips-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tip-card {
    background: #FFFFFF;
    padding: 20px;
    flex: 1 1 250px;
    border-radius: 6px;
}

/* ================= Footer ================= */

footer {
    background: #082032;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
}