/* General Styles */

/* Example CSS */
@media (min-width: 768px) {
  body {
    display: none;
  }
}

body {
    font-family: Arial, sans-serif;
    background: #f9f5f0;
    margin: 0;
    color: #333;
    text-align: center;
}

/* Header and Banner */
header {
    width: 100%;
    height: 75px; /* Set a fixed height */
    background: #ff8c00;
    background-image: url('../images/site/menu.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.banner {
    background-image: url('../images/site/banner.png');
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation Menu */
nav {
    display: flex;
    justify-content: center;
    background: #ff7500;
    padding: 10px;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background 0.3s;
    
}

nav a:hover {
    background: #ff5900;
    border-radius: 5px;
}

/* Main Container */
.container {
    max-width: 800px; /* Adjusted for wider content */
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #ff8c00;
    font-size: 1.8em;
}

h2 {
    color: #ff8c00;
}

/* Form Styles */
.form-group {
    margin: 15px 0;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #ff8c00;
    color: #fff;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

button:hover {
    background: #ff7500;
}

/* Button Container Styles */
.button-container {
    display: flex;
    justify-content: center; /* Center the buttons */
    margin: 20px 0; /* Add some space above and below the buttons */
    gap: 20px; /* Space between buttons */
}

/* Main Button Styles */
.main-button {
    background: #ff8c00; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    padding: 15px 30px; /* Padding for better size */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Change cursor to pointer */
    transition: background 0.3s, transform 0.2s; /* Smooth transition for hover effects */
}

.main-button:hover {
    background: #ff5900; /* Darker background on hover */
    transform: scale(1.05); /* Slightly enlarge button on hover */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Section */
.result-section {
    display: none;
    margin-top: 20px;
}

.season-message {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.box {
    background: #fff4e5;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.box h3 {
    color: #ff8c00;
    margin-top: 10px;
}

.box p {
    color: #555;
    font-size: 0.9em;
}

/* Footer */
footer {
    background: #ff7500;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    position: relative;
    bottom: 0;
    margin-top: 20px;
}

/* Article Styles */
.articles {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centering the articles */
    margin: 20px 0; /* Add some margin to separate from other elements */
}

.article {
    background: #fff;
    padding: 20px;
    margin: 10px; /* Reduced margin for better spacing */
    border-radius: 10px;
    max-width: 500px; /* Control max width for each article */
    text-align: left;
    color: #555;
    line-height: 1.6;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.article h2 {
    color: #ff7500;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.button-container {
    display: flex;
    justify-content: center; /* Center the buttons */
    gap: 20px; /* Add spacing between the buttons */
    margin: 20px 0;
}

.button-image {
    width: 170px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    cursor: pointer; /* Show pointer on hover */
    transition: transform 0.3s ease; /* Add hover effect */
}

.button-image:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}
a{
 text-decoration: none;

}



