* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Blurred background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/soundconsoleinvenue.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: -1;
}

/* Dark overlay for better text visibility */
.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Main content container */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Logo styling */
.logo-container {
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in;
}

.logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Tagline */
.tagline {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1.2s ease-in;
}

/* Contact information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 1.4s ease-in;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.icon {
    width: 24px;
    height: 24px;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        max-width: 350px;
    }

    .tagline {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .contact-link {
        font-size: 1.1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 280px;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .contact-link {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
