/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fcfbf9; /* Warm, paper-like off-white */
    color: #2c2c2c; /* Soft charcoal, not harsh black */
    font-family: 'Lato', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    animation: fadeInPage 2s ease-out;
}

/* Sketch Styling */
.sketch-container {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.villa-sketch {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sketch-line {
    fill: none;
    stroke: #4a4a4a;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    /* Animation for drawing effect */
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawSketch 3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.location {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 3rem;
}

.teaser p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.teaser .fade-in {
    opacity: 0;
    animation: fadeInText 2s ease-out 2.5s forwards;
}

footer {
    margin-top: 4rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes drawSketch {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .villa-sketch {
        width: 120px;
    }
}