/* -----------------------------
   General Body Styling
------------------------------ */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* -----------------------------
   Container
------------------------------ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* -----------------------------
   Featured Image
------------------------------ */
.featured-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.featured-img:hover {
    transform: scale(1.02);
}

/* -----------------------------
   Headings
------------------------------ */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 30px;
    color: #ff5e62; /* soft coral */
}

h2 {
    font-size: 1.8em;
    color: #ff7b5a; /* warm tone */
    border-bottom: 2px solid #ffe0d4;
    padding-bottom: 8px;
    margin-top: 40px;
}

/* -----------------------------
   Paragraphs
------------------------------ */
p {
    margin-bottom: 20px;
    color: #555;
}

/* -----------------------------
   City Links / Interlinking
------------------------------ */
.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.city-links a {
    background: linear-gradient(120deg, #ffecd2, #fcb69f);
    padding: 8px 15px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-weight: 500;
}

.city-links a:hover {
    background: linear-gradient(120deg, #fcb69f, #ffecd2);
    transform: translateY(-2px);
}

/* -----------------------------
   Google CSE Search Box
------------------------------ */
.gcse-search, .gcse-searchresults-only {
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}

/* -----------------------------
   Footer Links
------------------------------ */
footer {
    margin-top: 50px;
    padding: 30px 0;
    background: #fff3f0;
    text-align: center;
    border-top: 1px solid #ffe0d4;
    border-radius: 12px 12px 0 0;
}

footer p {
    margin-bottom: 12px;
    color: #555;
    font-weight: 500;
}

footer a {
    margin: 0 6px;
    text-decoration: none;
    color: #ff5e62;
    transition: all 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: #ff7b5a;
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    .city-links {
        justify-content: center;
    }
}