@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  background-color: #fafafa;
    color: #333333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

img {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: grayscale(20%);
}

.coming-soon {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.coming-soon h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 2px;
    border-right: 2px solid #000000;
    min-height: 1.2em;
    line-height: 1.2;
}

.coming-soon h1.typing {
    animation: blink-caret 1s step-end infinite;
}

.no-cursor {
    border-right: none !important;
}

.coming-soon p {
    font-size: 1.4em;
    font-weight: 300;
    color: #666666;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    img {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .coming-soon {
        padding: 30px 20px;
    }

    .coming-soon h1 {
        font-size: 3em;
        margin-bottom: 15px;
        min-height: 1.2em;
        line-height: 1.2;
    }

    .coming-soon p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    img {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .coming-soon h1 {
        font-size: 2.5em;
        letter-spacing: 1px;
        min-height: 1.2em;
        line-height: 1.2;
    }

    .coming-soon p {
        font-size: 1em;
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #000000; }
}
