/* styles.css - Bright Orange/Yellow Theme */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff6f00, #ffa000);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 26px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navigation Bar */
nav {
    background-color: #ff9800;
    text-align: center;
    padding: 12px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 18px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #e65100;
    box-shadow: 0px 2px 6px rgba(230, 81, 0, 0.5);
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    color: #444;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

h2 {
    color: #ff6f00;
    font-size: 28px;
}

/* Buttons */
button {
    background-color: #ff9800;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #e65100;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #ff6f00, #ffa000);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
