@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@300;400;600&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23222' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 60L60 0H30L0 30M60 60V30L30 60'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

header {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: white;
    padding: 40px 0;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
    filter: grayscale(100%) contrast(120%);
}

h1 {
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.btn:hover, .btn:focus {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.scissors {
    width: 80px;
    height: 80px;
    fill: white;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    margin-bottom: 20px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

.highlight {
    color: #fff;
    font-weight: 600;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #fff;
    margin: 30px auto;
}

#book-button {
    cursor: pointer; /* Изменяет курсор на указатель при наведении */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    .scissors {
        width: 60px;
        height: 60px;
    }

    .btn {
        font-size: 1em;
        padding: 12px 24px;
    }

    h2 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }
}
