@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Montserrat:wght@200;300;400&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: black;
    margin: 0;
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-wrapper video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    /* background: rgba(0, 0, 0, 0.2); */
    opacity: 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.5s ease;
}

.logo:hover::after {
    width: 100%;
}

.address {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    line-height: 1.8;
    /* transform: translateY(20px); */
    opacity: 0;
}

.button {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    line-height: 1.8;
}

.coming {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
    transform: translateY(20px);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-up {
    animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: white;
    margin: 0 auto;
    animation: scrollIndicate 2s infinite;
}

@keyframes scrollIndicate {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}