@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #d4af37; /* Gold accent for a premium feel */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle background glow */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.main-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.welcome-text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    color: var(--text-secondary);
}

.logo-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: logoPop 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.rotating-text-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateClockwise 20s linear infinite;
}

.rotating-text-svg text {
    fill: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.address-container {
    margin-top: 20px;
    max-width: 400px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.address-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-wrapper {
        width: 320px;
        height: 320px;
    }
    .logo-img {
        width: 140px;
        height: 140px;
    }
    .welcome-text {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    .address-text {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    .rotating-text-svg text {
        font-size: 14px;
    }
}
