/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
}


.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    background-image: url('images/disco-lights_backgrd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgba(234, 161, 125, 0.2), rgba(154, 218, 234, 0.2));
}


.container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 90%;
    color: #fff;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Roboto', sans-serif; 
    font-weight: 300; 
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 20px; 
    font-weight: 300;  
    color: #eee; 
}

.social-icons a {
    font-size: 2em;
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ddd;
}

.slideshow-container {
    width: 100%; 
    max-width: 600px; 
}

.slideshow-image {
    width: 100%;
    height: auto;
    display: none; 
}


@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .social-icons a {
        font-size: 1.8em;
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    .social-icons a {
        font-size: 1.5em;
    }
}