body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.hero {
    background-image: url('../images/rainbow.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
}

.hero-content p {
    font-size: 1.2em;
    margin-top: 10px;
}

section {
    padding: 20px 20px;
    margin: 0;
    text-align: center;
}

h2 {
    margin-top: 0;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

#video {
    padding: 20px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Collapsible Button */
.collapsible {
    background-image: url('../images/fishman-pattern.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    cursor: pointer;
    padding: 20px 20px;
    min-height: 60px;
    border: none;
    text-align: center;
    font-size: 1.2em;
    width: 90%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.collapsible .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 1.5rem;
}

.collapsible.expanded .icon {
    transform: rotate(90deg);
}

.collapsible:hover {
    color: #0077cc;
    text-decoration: underline;
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #0077cc;
}

/* Collapsible Content */
.content {
    overflow: hidden;
    margin: 20px 0;
    max-height: 0;
    transition: max-height 0.5s ease;
}

.content.show {
    max-height: 5000px;
}

/* Table Styles */
table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    background-image: url('../images/fishman-pattern.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 1px 1px 2px black;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
}

table th {
    background-color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

/* Table Row Animation */
tbody tr {
    opacity: 0;
    transform: translateY(10px);
}

tbody tr.visible {
    animation: fadeSlideIn 0.5s ease forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}