@font-face {
    font-family: 'Birdie';
    src: url('BirdieTypo/TAYBirdieRegular.woff2') format('woff2'),
        url('BirdieTypo/TAYBirdieRegular.woff') format('woff'),
        url('BirdieTypo/TAYBirdieRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

img {
    max-width: 100%;
    height: auto;
}

body {
    background-color: #CEDF9F;
    color: #000000;
    font-family: 'Birdie', sans-serif;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    text-decoration: none;
    color: #000000;
    font-family: 'Birdie', sans-serif;
    font-size: 1.2rem;
    z-index: 100;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.serva-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-title {
    font-size: clamp(1.5rem, 6vw, 5rem);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.coming-soon-subtitle {
    font-size: clamp(0.6rem, 2vw, 1rem);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 80%;
    opacity: 0.8;
}

.image-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: clamp(1rem, 5vw, 2rem);
    }
}