* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Top Navigation Bar */
.topRow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #6caabb, #4f8fa3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
}

/* Logo / Title */
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

/* Navigation Links */
.navLinks {
    display: flex;
    gap: 20px;
}

.navLinks a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.navLinks a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Page Content */
.content {
    margin-top: 100px; /* prevents content hiding behind navbar */
    padding: 20px;
    
}

* Intro / Welcome Card */
.intro {
    max-width: 600px;
    width: 100%;
    background: #6caabb;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-size: large;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.title {
    max-width: 600px;
    width: 100%;
    background: #6caabb;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    font-size: large;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.intro h2 {
  color: #000000;
}

.intro {
    flex: 1;
    max-width: 400;
    background: #6caabb;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: auto;
    font-size: large;
    margin-bottom: 30px;
}


.sunnyReturn {
    flex: 1;
    max-width: 400;
    background: #6caabb;
    padding: 30px;
    border-radius: 20px;
    margin: auto;
    font-size: large;
    text-align: center;
    margin-bottom: 30px; 

}



.submit {
    flex: 1;
    max-width: 700px;
    background: #6caabb;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin: auto;
    font-size: large;
    margin-top: 30px;
}

.credits {
    flex: 1;
    max-width: 600px;
    background: #6caabb;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: auto;
    font-size: larger;
    line-height: 30px;
}

.credits p {
    text-align: left;
}

.contactF {
    flex: 1;
    max-width: 700px;
    background: #6caabb;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin: auto;
    font-size: large;
    margin-top: 30px;
}

.newspaper-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newspaper-list li {
  margin-bottom: 12px;
}

.newspaper-list a {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.newspaper-list a:hover {
  background: #e8e8e8;
}

.newspaper-list .name {
  font-weight: 600;
}

.newspaper-list .date {
  color: #666;
  font-size: 0.9em;
}

/* --- Latest Article Card --- */

.latest-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    max-width: 650px;
    margin: 25px auto;
    text-align: left;
    border-left: 6px solid #6caabb;
}

.latest-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2b2b2b;
    font-weight: bold;
}

.latest-preview {
    font-size: 1rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.latest-date {
    font-weight: bold;
    color: #777;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.latest-button {
    display: inline-block;
    background: #6caabb;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.2s ease;
}

.latest-button:hover {
    background: #5a96a5;
    transform: translateY(-2px);
}

/* --- Latest News Section Title --- */

#latest-article h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #333;
}

/* --- Optional: Smooth fade-in animation --- */

.latest-card {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
