.studio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f8f3ec; /* Цвет фона */
    padding: 40px;
    border-radius: 10px;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.studio-info {
    width: 100%;
    max-width: 500px;
}

.studio-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.studio-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.studio-details p {
    margin: 5px 0;
    font-size: 18px;
}

.metro {
    font-weight: bold;
    color: #c09967;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border: 2px solid #c09967;
    color: #c09967;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
}

.btn:hover {
    background: #c09967;
    color: white;
}

.studio-map {
    width: 100%;
    max-width: 700px;
}

.studio-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}
.studio-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.studio-details a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .studio-details a[href^="tel"]:hover {
    color: #c09967; 
    text-decoration: underline;
  }

/* Адаптация для мобильных */
@media (min-width: 768px) {
    .studio-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        max-width: 1200px;
    }

    .studio-info {
        text-align: left;
    }

    .studio-details {
        text-align: left;
    }

    .studio-map {
        flex-grow: 1;
    }
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Применяем анимацию */
.studio-info, .studio-map {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Задержка для плавного появления */
.studio-info { animation-delay: 0.2s; }
.studio-map { animation-delay: 0.6s; }
