:root {
    --bg-color: #FAF9F6;
    --text-color: #2A2624;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'TT Chocolates', 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}



/* Layout */
.layout-header {
    display: none;
}

.coming-soon {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 0.7;
    text-transform: lowercase;
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 15vh;
}.social-footer {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 10;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 300;
    opacity: 0.7;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    opacity: 1;
    color: #2A2624;
}

.social-icon {
    width: 30px;
    height: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 24px;
    }

    .logo {
        height: 48px;
    }

    .hero {
        gap: 20px;
        padding-bottom: 10vh;
    }

    .social-footer {
        bottom: 30px;
    }
}

