@font-face {
    font-family: 'Estedad';
    src: url('estedad.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Estedad', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #e5edff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 40px;
}

.content {
    background: #ffffff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.text-content {
    flex: 1;
    text-align: left;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #121212;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #00374a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #121212;
    margin-bottom: 10px;
}

.description.persian {
    font-size: 0.95rem;
    color: #054e3c;
    margin-bottom: 10px;
}

.highlight {
    background: #054e3c;
    color: #ffffff;
    padding: 2px 8px;
    font-weight: 500;
}

.hero-container {
    flex: 1;
    min-width: 0;
    display: flex;
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 2px solid #121212;
}

.button svg {
    flex-shrink: 0;
}

.admin-button {
    background: #00374a;
    color: #ffffff;
    border-color: #00374a;
}

.admin-button:hover {
    background: #121212;
    border-color: #121212;
}

.studio-button {
    background: #ffffff;
    color: #00374a;
    border-color: #00374a;
}

.request-button {
    background: #ffffff;
    color: #00374a;
    border-color: #00374a;
}

.request-button:hover {
    background: #00374a;
    color: #ffffff;
}

.studio-button:hover {
    background: #00374a;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .container {
        padding: 0;
    }
    
    .content {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .text-content {
        text-align: center;
        padding: 40px 30px;
    }
    
    .links {
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-container {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
}
