/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* Header Section */
header {
    background: linear-gradient(135deg, #4E73DF, #1C3B6D);
    color: white;
    display: flex;
    justify-content: center;
    padding: 50px;
    align-items: center;
    text-align: center;
    border-bottom: 5px solid #2f3a56;
}

header .logo-container {
    display: flex;
    justify-content: center;
}

header .logo {
    width: 120px;
    border-radius: 8px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Bat Description Section */
.bat-description {
    background: linear-gradient(145deg, #0288d1, #1e56a0); /* Blue gradient */
    padding: 40px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.bat-description h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.bat-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0; /* Lightened text color */
    margin-bottom: 20px;
}

.bat-description .bat-image {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

/* Hover effect for bat description */
.bat-description:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.bat-description a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    background-color: #0d6efd;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.bat-description a:hover {
    background-color: #0a58ca;
    transition: background-color 0.3s ease;
}

/* Category Buttons */
.category-buttons {
    text-align: center;
    margin-top: 40px;
}

.category-buttons button {
    padding: 15px 30px;
    font-size: 18px;
    margin: 0 15px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-buttons button:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

/* Image Gallery Section */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.image-item img {
    width: 100%;          /* Adjust width to fit the container */
    max-width: 250px;     /* Set maximum width for smaller images */
    height: auto;         /* Maintain aspect ratio */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #00aaff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 10px;
}

/* Contact Info */
.contact-info {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 40px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #00aaff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}
