@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,500&family=Montserrat:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #07192f; /* پس‌زمینه سورمه‌ای مشابه طرح */
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    width: 220px;
    max-width: 80%;
    margin-bottom: 40px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 400;
    color: #d4af37; /* رنگ طلایی متن */
    margin-bottom: 60px;
    letter-spacing: 0.03em;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.7;
}

.insta-icon {
    width: 20px;
    height: 20px;
}

/* واکنش‌گرایی برای موبایل */
@media (max-width: 480px) {
    .logo-wrapper {
        width: 170px;
        margin-bottom: 30px;
    }

    .tagline {
        font-size: 1.3rem;
        margin-bottom: 45px;
    }

    .instagram-link {
        font-size: 0.85rem;
    }

    .insta-icon {
        width: 18px;
        height: 18px;
    }
}