body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

#about {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

#products {
    padding: 20px;
    text-align: center;
}

#product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-tile {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.product-tile h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.product-tile p {
    font-size: 14px;
    color: #666;
}

/* Container for the gallery */
.gallery-container {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    overflow: hidden;
}

/* Gallery styling */
.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
}

/* Individual images */
.gallery img {
    width: calc(33.33% - 10px);
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Full-size image modal */
.modal {
    display: none;
    position: fixed;
    z-index: 20;
    padding-top: 10%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal content */
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
}

/* Close button for modal */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

/* Container for event table */
.event-container {
    max-width: 800px;
    margin: 30px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Event table styles */
.event-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

/* Table header styles */
.event-table th {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    text-align: left;
}

/* Table row styles */
.event-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Hover effect for rows */
.event-table tr:hover {
    background-color: #f5f5f5;
}

/* Link styling */
.event-table a {
    color: #007BFF;
    text-decoration: none;
}

.event-table a:hover {
    text-decoration: underline;
}

/* Responsive table styles */
@media (max-width: 600px) {
    .event-table, .event-table thead, .event-table tbody, .event-table th, .event-table td, .event-table tr {
        display: block;
        width: 100%;
    }

    .event-table tr {
        margin-bottom: 10px;
        border-bottom: 2px solid #ddd;
    }

    .event-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .event-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }

    .event-table th {
        display: none;
    }


