/* ================= Global Styles ================= */

body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #F5F7FA;
    color: #2B2D42;
    line-height: 1.6;
}

/* ================= Headings ================= */
/* Module 6: Commented out - replaced using W3.CSS */
/*
h1, h2, h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #0A3D62;
}
*/

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
}

/* ================= Navigation ================= */
/* Module 6: Original navbar styling commented out per instructions */
/* 
   REPLACED WITH W3.CSS SIDEBAR
   The .navbar declaration is commented out below.
*/
/*
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #FFFFFF;
}
*/

/* Keep layout working (minimal fix, not full styling) - ALSO COMMENTED OUT FOR ASSIGNMENT */
/*
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
*/

/* These can stay since they are NOT the main navbar declaration, but are now managed by sidebar classes */
.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.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 ================= */
/* Module 6: Footer styling commented out - replaced with W3.CSS */
/*
footer {
    background: #082032;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
}
*/

/* DOCUMENTATION:
   1. Commented out .navbar declaration as requested.
   2. Header and Footer styles remain commented out, with W3.CSS classes handling their presentation in index.html.
   3. Custom colors used:
      - Primary/Logo: #0A3D62 (Mimicked with W3.CSS where possible)
      - Accent: #FF7F11
      - Background: #F5F7FA
*/
/* ================= News Section ================= */

.news ul {
    list-style: none;
    padding: 0;
}

.news li {
    margin-bottom: 12px;
}

.news a {
    text-decoration: none;
    color: #0A3D62;
    font-weight: 600;
}

.news a:hover {
    color: #FF7F11;
}

/* ================= Country Section ================= */

.country {
    text-align: center;
}

.country img {
    margin-top: 10px;
    border-radius: 6px;
}