/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Industrial';
    src: url('fonts/bebas-neue-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    height: 100vh;
    overflow: hidden;
}

/* Splash container with concrete texture */
.splash-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/concrete_texture_1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.splash-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Vinyl record styling */
.vinyl-container {
    position: absolute;
    width: 80vmin;
    height: 80vmin;
    max-width: 600px;
    max-height: 600px;
    z-index: 2;
    opacity: 0.6;
}

.vinyl-record {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('../images/vinyl_record_1.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Content styling */
.content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.title {
    font-family: 'Industrial', 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 75, 75, 0.5);
}

.subtitle {
    font-family: 'Industrial', 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    color: #CCCCCC;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    color: #A3A3A3;
}

.tenerife-silhouette {
    position: relative;
    width: 100%;
    height: 50px;
    background-image: url('../images/tenerife_south.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    margin-bottom: 3rem;
    filter: brightness(0) invert(1);
}

/* Button styling */
.enter-btn {
    font-family: 'Industrial', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    padding: 1rem 3rem;
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FF4B4B;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 75, 75, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.enter-btn:hover::before {
    left: 0;
}

.enter-btn:hover {
    box-shadow: 0 0 15px rgba(255, 75, 75, 0.5);
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .vinyl-container {
        width: 70vmin;
        height: 70vmin;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .vinyl-container {
        width: 60vmin;
        height: 60vmin;
    }
}
