@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background: url('images/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    background-color: #333333;
}

header {
    background: rgba(30, 30, 30, 0.8);
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fd7b24;
}

a:link {
    color: #f2f234;

}

a:visited{
    color: #deaf22;
}

a:active{
    color: #36f563;
}
.header-content {
    animation: fadeIn 2s ease-in-out;
}

.header-content h1 {
    margin: 1;
    font-size: 3em;
    color: #f48840;
}

.header-content p {
    margin: 10px 0 0;
    font-size: 1.2em;
    color: #cccccc;
}

section {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    margin: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    animation: fadeIn 1s ease-in-out;
}

section h2 {
    font-size: 2.5em;
    color: #fd7b24;
    animation: fadeIn 2s ease-in-out;
}

.music-links, .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: fadeIn 3s ease-in-out;
}

.music-links a, .social-links a {
    animation: fadeIn 4s ease-in-out;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    background-color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.music-links a:hover, .social-links a:hover {
    background-color: #fd7b24;
    transform: scale(1.1);
}

.social-links i {
    margin-right: 10px;
}

.video-gallery-container, .picture-gallery-container {
    position: relative;
    margin-top: 2%;
}

.video-gallery, .picture-grid {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.video-gallery iframe, .picture-grid img {
    flex: 0 0 auto;
    margin: 0 10px;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 3em;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.scroll-button.left {
    left: 0;
}

.scroll-button.right {
    right: 0;
}

.picture-grid img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    object-fit: cover;
}

.picture-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

footer {
    background: rgba(30, 30, 30, 0.8);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9em;
    animation: fadeIn 5s ease-in-out;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 1s ease-in-out;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    animation: fadeIn 2s ease-in-out;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    animation: fadeIn 3s ease-in-out;
}

.close:hover,
.close:focus {
    color: #fd7b24;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5em;
    }

    .header-content p {
        font-size: 1em;
    }

    .music-links a, .social-links a {
        font-size: 1em;
        padding: 8px 15px;
    }

    .video-gallery iframe {
        max-width: 100%;
        height: auto;
        overflow: hidden;
    }

    .picture-grid img {
        height: auto;
    }
}

/* News Section */
#news {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    margin: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    animation: fadeIn 1s ease-in-out;
}

#news h2 {
    font-size: 2.5em;
    color: #fd7b24;
    animation: fadeIn 2s ease-in-out;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 3s ease-in-out;
}

.news-item {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.news-image {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    padding: 15px;
}

.news-content h3 {
    font-size: 1.5em;
    color: #fd7b24;
    margin: 0 0 10px;
}

.news-date {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 1em;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
        align-items: center;
    }

    .news-item {
        max-width: 90%;
    }
}

/* Productive Tools Section */
#sound-tools {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    margin: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    animation: fadeIn 1s ease-in-out;
}

#sound-tools h2 {
    font-size: 2.5em;
    color: #fd7b24;
    animation: fadeIn 2s ease-in-out;
}

.tools-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    animation: fadeIn 3s ease-in-out;
}

.tool {
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #333333;
    transition: transform 0.3s;
}

.tool:hover {
    transform: scale(1.05);
}

.tool img {
    width: 100%;
    height: auto;
}

.tool h3 {
    margin: 10px 0;
    color: #fd7b24;
}

.tool p {
    padding: 0 10px 10px;
    color: #cccccc;
}

@media (max-width: 768px) {
    .tool {
        flex: 1 1 100%;
    }
}
