
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0F0F0F;
    color: #ffffff;
    line-height: 1.6;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.85)), 
                      url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1288&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(2px);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.tagline {
    color: #C0C0C0;
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
}

.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
    margin: 1rem auto;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 8px;
    background-color: #D4AF37;
    top: -3px;
    left: calc(50% - 10px);
    border-radius: 4px;
}

.coming-soon {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1rem;
}

.razor-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.coming-soon p {
    color: #C0C0C0;
    margin-bottom: 2rem;
}

.notify-btn {
    background-color: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background-color: #D4AF37;
    color: #0F0F0F;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    color: #C0C0C0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #D4AF37;
}

footer {
    margin-top: auto;
    padding: 1rem;
    color: #C0C0C0;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .coming-soon {
        padding: 0.5rem;
    }
}