:root {
    --bg-color: #F5F0E6;
    --text-color: #1A1A1A;
    --accent-color: #8C7A6B;
    --secondary-text: #666666;
    --white: #ffffff;
    --font-serif: "EB Garamond", serif;
    --font-sans: "Inter", sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--text-color);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    transition: all 0.3s ease-out;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) sepia(0.1);
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1.5s var(--transition);
}

.decorator {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.8;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.clock-container {
    margin-top: 2rem;
}

#time-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.clock {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.date {
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
    font-family: var(--font-serif);
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.socials a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.socials a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    header {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .socials a {
        margin: 0 1rem;
    }

    /* Hide cursor on mobile */
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .clock {
        font-size: 2.2rem;
    }
}