/* Import Playfair Display Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* General Styling */
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #faf0e6; /* Linen background */
    
    color: black; /* White text */
}



h1 {
    font-size: 4rem;
    margin: 20px 0;
    
}

h2 {
    font-size: 1.5rem;
    margin: 10px 0 30px;
    color: Brown;
    
}

/* Breaking News Ribbon */
.news {
    background-color: #fff; /* White ribbon */
    padding: 1.5px 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.news-left {
    margin-left: 40px; /* Offset the left content */
}

.news-left a {
    text-decoration: none;
    color: brown; /* Adjust text color */
    font-weight: very light;
    font-size: 0.85rem;
}

.news-left a:hover {
    text-decoration: underline;
    color: #007BFF; /* Blue hover effect */
}

.news-center {
    flex-grow: 1; /* Center content takes up remaining space */
    text-align: center;
    font-size: 0.95rem;
}

.dynamic-supporters {
    font-weight: very light;
    margin-left: 10px; /* Small gap after the main message */
    color: brown; /* Ensure visible text color */

}

/* Navigation Ribbon */
.navigation {
    background-color: #fff; /* White ribbon */
    padding: 10px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 80px; /* Doubled the gap again */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navigation a {
    text-decoration: none;
    color: #000; /* Black text */
    font-weight: bold;
    font-size: 1rem;
    
}

.navigation a:hover {
    text-decoration: underline;
    color: #007BFF; /* Blue hover effect */
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 25px;
    margin: 0 auto;
    max-width: 1200px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* City Buttons */
.city-button {
    display: block;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: white;  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* More pronounced shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition */
}

.city-button:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow on hover */
}

.city-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2rem;
}

/* Descriptions */
.description {
    margin: 20px 0;
    font-family: 'Playfair Display', serif; /* Playfair Display for a modern, elegant look */
    font-size: 1.4rem; /* Changed this from 1.8rem */
    color: #ccc; /* Light gray */
    text-align: center;
}

.description a {
    text-decoration: none;
    color: brown; /* Blue */
}

.description a:hover {
    text-decoration: underline;
    color: #FF4500; /* Orange hover */
}


/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1.2rem; /* Adjust description size for small screens */
    }
}
