@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f7ebe8;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.cloth-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%) rotate(-15deg);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1;
}

.wave {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(200, 150, 150, 0.1) 20%, rgba(200, 150, 150, 0.3) 50%, rgba(200, 150, 150, 0.1) 80%, transparent);
    animation: flow 4s ease-in-out infinite alternate;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

@keyframes flow {
    0% { transform: translateY(0px) scaleY(1); opacity: 0.5; }
    100% { transform: translateY(40px) scaleY(1.5); opacity: 1; }
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

h1 {
    font-size: 8rem;
    color: #4a3b38;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.8);
    letter-spacing: 20px;
}
