* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: #eef2f7;
    font-family: Arial, sans-serif;
    color: #111;
}

.container {
    width: 92%;
    max-width: 720px;
    margin: 30px auto;
}

/* HERO */
.hero {
    background: #fff;
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-bottom: 22px;
}

.location {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-weather {
    display: flex;
    align-items: center;
    gap: 26px;
}

.temp-big {
    font-size: 112px;
    font-weight: 800;
    line-height: 0.9;
    color: #0f172a;
}

.condition {
    font-size: 18px;
    font-weight: 500;
}

.weather-meta {
    font-size: 14px;
    color: #475569;
    margin-top: 4px;
}

.subtitle {
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
}

/* SEARCH */
.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
}

.search-box button {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #f97316;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.search-box button:hover {
    background: #ea580c;
}

/* SMART TIP */
.smart-tip {
    background: #fff7ed;
    border-left: 5px solid #f97316;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
}

/* CARDS */
.cards {
    display: grid;
    gap: 18px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.card p {
    font-size: 14px;
    color: #555;
}

.card .cta {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* SEO */
.seo-title {
    margin-top: 28px;
    font-size: 18px;
}

.trust {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
