* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --accent-color: #a8dadc;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-color);
    background-color: var(--dark-color);
    background-image: url('landing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Add fallback for mobile browsers that don't support fixed attachment */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        background-attachment: scroll;
        background-position: center center;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(29, 53, 87, 0.8) 0%,
        rgba(230, 57, 70, 0.4) 100%
    );
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
header {
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.band-name {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--light-color);
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.5),
        5px 5px 0 var(--primary-color);
    animation: pulse 5s infinite alternate;
    transform-origin: center;
}

.tagline {
    font-size: clamp(0.5rem, 4vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    margin-top: -1.5rem;
}

.coming-soon {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.coming-soon .label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.coming-soon ul {
    list-style: none;
}

.coming-soon li {
    padding: 0.7rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
    letter-spacing: 1px;
}

.coming-soon li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.social-icon {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
}

.domain {
    color: var(--primary-color);
    font-weight: 700;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social {
        gap: 1.5rem;
    }
    
    .social-icon {
        font-size: 0.9rem;
    }
    
    .hero {
        gap: 1.5rem;
    }
    
    .coming-soon {
        padding: 1.5rem;
    }
    
    /* Fix spacing between bullet and text on mobile */
    .coming-soon li {
        padding-left: 2.5rem;
    }
    
    .coming-soon li::before {
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .band-name {
        font-size: clamp(4rem, 15vw, 5rem);
        text-shadow: 
            0 0 5px rgba(0, 0, 0, 0.5),
            3px 3px 0 var(--primary-color);
    }
    
    .tagline {
        font-size: 1.2rem;
        letter-spacing: 4px;
        margin-top: -0.5rem;
    }
    
    .coming-soon {
        padding: 1.2rem;
    }
    
    .coming-soon li {
        font-size: 1rem;
        padding: 0.5rem 0;
        padding-left: 2.5rem;
    }
    
    .coming-soon li::before {
        left: 1rem;
    }
    
    .social {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Adjust footer spacing on mobile */
    footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    /* Smaller toast on mobile */
    .toast {
        width: 80%;
        text-align: center;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Add specific styles for very small screens */
@media (max-width: 320px) {
    .band-name {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .content {
        padding: 0.8rem;
    }
    
    nav ul {
        gap: 0.7rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .coming-soon li {
        padding-left: 2.2rem;
    }
    
    .coming-soon li::before {
        left: 0.8rem;
    }
}

/* Photo Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: -1;
}

/* Glitch effect */
.band-name:hover {
    animation: glitch 0.5s linear infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 
            5px 5px 0 var(--primary-color),
            -5px -5px 0 var(--accent-color);
    }
    25% {
        text-shadow: 
            -5px 5px 0 var(--primary-color),
            5px -5px 0 var(--accent-color);
    }
    50% {
        text-shadow: 
            5px -5px 0 var(--primary-color),
            -5px 5px 0 var(--accent-color);
    }
    75% {
        text-shadow: 
            -5px -5px 0 var(--primary-color),
            5px 5px 0 var(--accent-color);
    }
    100% {
        text-shadow: 
            5px 5px 0 var(--primary-color),
            -5px -5px 0 var(--accent-color);
    }
} 