/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: #3498db; /* Light Blue */
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 12px;
    animation: slideInFromLeft 0.5s ease-out forwards;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo {
    height: 150px;
    margin-right: 20px;
    border-radius: 50%; /* Add rounded corners to the logo */
}

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

nav ul li {
    margin-right: 20px;
    animation: fadeIn 1s ease-out forwards;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

nav a.active {
    color: #ff6347; /* Tomato Red */
}

main {
    padding: 20px;
    background: white;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: slideInFromRight 1s ease-out forwards;
}

.image-section {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3498db; /* Light Blue */
}

.gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background: #2c3e50; /* Dark Blue */
    color: white;
    border-radius: 12px;
}

/* Keyframes for animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive styling */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .hero {
        padding: 50px 20px;
    }
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #3498db; /* Light Blue */
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.hero {
    background: url('path/to/your/image.jpg') no-repeat center center/cover; /* Background image */
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6347; /* Tomato Red */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.btn:hover {
    background: #e5533d;
}

/* Additional media query for desktop view */
@media (min-width: 601px) {
    .gallery img {
        max-width: 60%;
    }
}
