@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Marck+Script');

body {
    font-family: 'Cinzel';
    text-align: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #e3e3e3, #c4c2bb);
}


.big {
    font-size: 128px;
    font-family: 'Marck Script';
}

h2 {
    font-weight: bold;
    font-size: 34px;
}

.content {
    position: relative; /* Точка отсчёта */
}

.content {
    position: relative;
    padding: 100px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.decor {
    position: absolute;
    object-fit: contain;
    max-width: 100%; /* Изображение не будет больше контейнера */
}




h2 span{
	color: #dd666c;
    text-decoration:underline;
}

h3 {
    font-weight: bold;
}

h3 span{
	color: #dd666c;
    text-decoration:underline;
}

p span {
    color: #dd666c;
    font-size: 24px;
}

p {
    font-size: 22px;
    line-height: 20px;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.image-left {
    float: left;
    max-width: 50%; /* Занимает до половины экрана */
    margin-right: 10px; /* Отступ справа */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}

.photo {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.border-50 {
    border-radius: 50px;
}

.border-100 {
    border-radius: 100px;
}

.photo-no-shadow {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.photo-left, .photo-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.photo-left {
    flex-direction: row;
    justify-content: flex-start;
}

.photo-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.photo-left img, .photo-right img {
    flex: 1;
    max-width: 40%;
}
.photo-left div, .photo-right div {
    flex: 1;
    padding: 20px;
}
.photo-center {
    text-align: center;
    margin: 40px 0;
}
.calendar {
    font-size: 1.2em;
    margin: 20px 0;
}
.calendar span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: #dd666c;
    color: white;
    font-weight: bold;
}
.qr-code {
    margin: 20px 0;
}

.music-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #222;
    border: none;
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background 0.3s;
}
.music-btn.playing {
    transform: scale(1.1);
    background: #fff;
}
.music-btn img {
    width: 40px;
    height: 40px;
    filter: invert(1); /* Белые иконки на черном фоне */
}
.music-btn.playing img {
    filter: invert(0); /* Черные иконки на белом фоне */
}


@media (max-width: 768px) {
    .photo-left, .photo-right {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .photo-left img, .photo-right img {
        max-width: 80%;
    }
    .photo-left div, .photo-right div {
        max-width: 80%;
        order: 1;
    }
}

.calendar { display: inline-block; background: white; padding: 2px; border-radius: 10px 10px 20px 20px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); margin: 5px; }
.header { font-size: 24px; font-weight: bold; margin-bottom: 5px; background-color: #dd666c; color: white; padding: 5px; border-radius: 10px 10px 0 0; }
.month { text-align: center; font-size: 20px; font-weight: bold; margin-bottom: 5px; }
.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.day { padding: 8px; border: 1px solid #ddd; border-radius: 5px; background: #e9ecef; font-weight: bold; }
.highlight { background-color: #dd666c; color: white; border-radius: 50%; }