/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9fcff; /* Light blue background */
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #34495e;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    letter-spacing: 2px;
}

header nav ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 1;
    padding: 20px;
}

/* Introduction Section */
.introduction {
    margin: 40px 0;
    text-align: center;
}

.introduction h2 {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 20px;
}

.introduction p {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
}

.intro-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Arts Section */
.arts {
    margin: 40px 0;
    text-align: center;
}

.arts h2 {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 20px;
}

.arts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.arts-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.arts-card:hover {
    transform: translateY(-10px);
}

.arts-card i {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 10px;
}

.arts-card h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 10px;
}

.arts-card p {
    font-size: 1em;
    color: #555;
}

/* Sports Section */
.sports {
    margin: 40px 0;
    text-align: center;
}

.sports h2 {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 20px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sports-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sports-card:hover {
    transform: translateY(-10px);
}

.sports-card i {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 10px;
}

.sports-card h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 10px;
}

.sports-card p {
    font-size: 1em;
    color: #555;
}

/* Gallery Section */
.gallery {
    margin: 40px 0;
    text-align: center;
}

.gallery h2 {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    font-size: 0.9em;
}