* {
    box-sizing: border-box;
}

body {
    background-color: #ffe9f6;
    font-family: "Golos Text", sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 25%;
    margin: 0 auto;
}

.logo span {
    font-family: cursive;
    font-size: 24px;
}

.tagline {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-image {
    max-width: 50%;
    height: auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.main-title {
    font-family: "Vollkorn", serif;
    font-weight: 700;
    font-size: 18px;
    color: darkslategray;
}

.btn-showcase {
    background-color: #ea2da2;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    width: 25%;
}

.btn-showcase:hover {
    background-color: #f265b9;
}

.info {
    padding: 20px;
    padding-bottom: 0 !important;
    text-align: center;
    font-family: Arial, sans-serif;
}

.intro p {
    margin: 10px 0;
    font-size: 1.1em;
}

.spoilers {
    margin-top: 20px;
}

.spoiler {
    cursor: pointer;
    padding: 15px 20px;
    background-color: #f682c3;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-align: left;
    margin: 10px auto;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
    width: 40%;
}

.spoiler:hover {
    background: linear-gradient(45deg, #f682c3, #f265b9);
    transform: scale(1.02);
}

.spoiler:after {
    content: "\25BC";
    position: absolute;
    right: 20px;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.spoiler.active:after {
    transform: rotate(180deg);
}

/* Контент спойлера */
.spoiler-content {
    display: none;
    padding: 15px;
    border-top: none;
    border-radius: 0 0 8px 8px;
    text-align: left;
    color: #333;
}

.spoiler-content p {
    margin: 10px 0;
}

.contact {
    padding: 20px;
    text-align: center;
}

.contact h2 {
    font-size: 24px;
    color: #333;
}

#map {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 20px auto;
}

.contact p {
    margin: 10px 0;
}

@media screen and (max-width: 1200px) {
    .spoiler {
        width: 84%;
    }
    .btn-showcase {
        width: 80%;
    }
    .main-title {
        font-size: 12px;
    }
    .hero-image {
	max-width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .spoiler {
        width: 94%;
    }
    .btn-showcase {
        width: 90%;
    }
}
