:root {
    --primary-color: #f8f8f8;
    --accent-color: #d4af37; /* Elegant Gold */
    --text-muted: #e0e0e0;
}

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

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Prevent scrolling since it's just a landing page */
    background-color: #050505; /* Deep dark background before image loads */
}

/* Blurred background container */
.bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('Necklace1_Labradorite.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(12px) brightness(0.9);
    z-index: 1;
    /* Subtle slow pulsing animation for dynamic feel */
    animation: pulseBg 25s infinite alternate ease-in-out;
}

/* Gradient overlay to ensure high contrast for text and logo */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

/* Content wrapper */
.content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Logo styling with drop shadow and hover effect */
.logo-container {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: floatUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px; /* Slight rounding for a premium feel */
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.logo:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

/* Typography */
.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
    opacity: 0;
    animation: fadeIn 2s ease-out 0.8s forwards;
}

/* Decorative separator line */
.separator {
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1.5rem 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Glow effect on gold line */
    animation: expandWidth 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 1.4s forwards;
}

.subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2s ease-out 2s forwards;
}

/* Animations */
@keyframes floatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes expandWidth {
    to {
        width: 100px;
    }
}

@keyframes pulseBg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 220px;
    }
    
    .coming-soon {
        letter-spacing: 1px;
    }
}
