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

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

body {
    overflow: hidden;
    background-color: #000;
}

.carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeCarousel 15s infinite;
}

@keyframes fadeCarousel {
    0% { opacity: 0; transform: scale(1.05); }
    10% { opacity: 1; transform: scale(1); }
    33.33% { opacity: 1; transform: scale(1); }
    43.33% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

.welcome-content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-title {
    font-family: 'Righteous', display;
    font-size: 8rem;
    color: #fff;
    -webkit-text-stroke: 4px #000;
    text-shadow: 15px 15px 0px #000;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.welcome-title:hover {
    transform: scale(1.05) translateY(-10px);
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.hover-hint {
    position: absolute;
    top: -20px;
    right: -40px;
    background: #fff;
    color: #000;
    font-family: 'Righteous', display;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    border-radius: 20px 20px 20px 0;
    transform: rotate(10deg);
    animation: floatHint 1.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 20;
}

@keyframes floatHint {
    0%, 100% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(15deg); }
}

.welcome-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    letter-spacing: 2px;
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 100;
    /* Center it based on the logo's position visually */
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none; /* Let hover pass through before animation */
}

.transition-overlay.is-active {
    clip-path: circle(150% at 50% 50%);
    pointer-events: auto;
}
