/* styles.css */

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f7fafc;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #ffcc80, #ffab91);
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Adding text shadow for better contrast */
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2.5em;
    color: #ff7043;
    margin-bottom: 20px;
}

section article {
    margin-bottom: 20px;
}

section article h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #ff7043;
}

section article p {
    margin: 0;
    font-size: 1.2em;
    color: #666;
}

section#newsletter {
    text-align: center;
    background-color: #ffcc80;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}

section#newsletter h2 {
    color: #fff;
}

section#newsletter form {
    margin-top: 10px;
}

section#newsletter input[type="email"] {
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

section#newsletter button {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #ff7043;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

section#newsletter button:hover {
    background-color: #ff5722;
}

section#social-media {
    text-align: center;
    padding: 20px;
}

section#social-media ul {
    list-style: none;
    padding: 0;
}

section#social-media ul li {
    display: inline;
    margin: 0 10px;
}

section#social-media ul li a {
    color: #ff7043;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

section#social-media ul li a:hover {
    color: #ff5722;
}

footer {
    background-color: #ffab91;
    color: #fff;
    padding: 20px;
    text-align: center;
}

a {
    color: #ff7043;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
