* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: #f7f0e9;
    color: #0e4b44;
}

.coming-soon-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    opacity: 0;
}

.logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 25px;
}

h1 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Social Icons */
.social-wrap {
    margin-top: 10px;
}

.social-wrap p {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.social-wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 8px;
    border-radius: 50%;
    border: 1px solid #0e4b44;
    color: #0e4b44;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-wrap a:hover {
    background: #0e4b44;
    color: #fff;
}

/* Tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }
}

/* Mobile 320px */
@media (max-width: 480px) {
    .logo {
        max-width: 280px;
    }

    h1 {
        font-size: 20px;
    }

    .social-wrap a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
