
* {
    box-sizing: border-box;
    transition: 0.4s ease all;
}


body {
    margin: 0;
     font-family: "Inter", sans-serif;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

.container {
    max-width: 1578px;
    margin: auto;
}
.flex-cont{
display: flex;
justify-content:space-between;
gap: 20px;
margin: 40px 0;
}
.col{
flex:1;
}
.col-2{
flex:2;
}
.col-3{
flex:3;
}
.first-cont{
padding-top: 150px;
}
img{
display: block;
width: 100%;
height: auto;
}
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 28px 0;
    background: #fff;
    color: #000;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
    gap: 52px;
}

.logo {
    order: 1;
}

.menu-items li {
    list-style: none;
    font-size: 18px;
}
 .logo img {
        max-width: 200px;
    }
.navbar a {
    color: #444;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    opacity: 0.7;
    transition: 1s;
}
.copyright{
    font-family: "Arimo", system-ui;
    font-weight: bold;
}

@media screen and (max-width: 1600px) {
    .container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1500px) {
    body {

    }

}

@media screen and (max-width: 1200px) {
    .menu-items li {
        font-size: 15px;
    }

    .menu-items {
        gap: 25px;
    }



    .navbar {
        padding: 8px 0;
    }
}


/*nav*/
@media (max-width: 830px) {
    .logo img {
        max-width: 150px;
    }

    .navbar {
        opacity: 0.95;
        padding: 0;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        padding: 3px 0;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        height: 28px;
        width: 35px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0 0;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: calc(100vh + 10px);
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin: -10px 0 0 -40px;
        padding-left: 60px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0 10px 0 #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

}


@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked ~ .logo {
        display: none;
    }
}
h1 {
    font-size: 96px;
    margin: 0;
    padding-bottom: 40px;
}

h2 {
    text-align: center;
    font-size: 45px;
    padding-bottom: 76px;
    margin: 0;
}

h3 {
    font-size: 35px;
    margin: 0;
}

h4 {
    font-size: 30px;
    margin: 0;
    padding-bottom: 20px;

}

.img-responsive {
    width: 100%;
    height: auto;
}

.catalog-btn:hover, .feedback-btn:hover, a:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 1s;
}

main {
    padding-bottom: 191px;
    background: white;
    color: black;

}


/*header*/

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    margin-top: 120px;
    background: url("../img/header-bg.jpg") no-repeat center;
    background-size: cover;
}

.header-text {
    color: white;
    width: 70%;
    max-width: 1275px;
    margin: auto;
    padding: 10px;
    text-align: center;
}

.header-text p {
    font-size: 32px;
    font-weight: 700;
    margin: 0;

}

/*about us*/
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    padding: 130px 0;
}

.about-left-col {
    width: 55%;
}

.about-right-col {
    width: 40%;
}

.about h2 {
    margin: 0;
    padding-bottom: 24px;
    text-align: left;
}

.about p {
    margin: 0;
    font-size: 28px;
}

.about-img {
    width: 100%;
    height: auto;
}


.catalog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.films-item-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.catalog h3 {
    padding-bottom: 30px;
}

.catalog p {
    padding-bottom: 25px;
}

.catalog-img, .catalog-btn-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.catalog-img {
    width: 25%;
}

.catalog-text {
    width: 50%;
    align-items: flex-start;
    font-size: 25px;
}

.catalog-btn-wrapper {
    width: 20%;
    align-items: flex-end;
}

.catalog-btn {
    display: flex;
    justify-content: center;
    width: 323px;
    padding: 28px 10px;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-size: 25px;
    font-weight: bold;
    color: white;
    background: black;
}

/*footer*/
footer {
    padding: 108px 0 59px;
}

footer a {
    color: black;
    text-decoration: none;
}

/*feedback*/
#feedback {
    max-width: 1352px;
    margin: auto;
    padding: 0 73px 71px;
}

#feedback form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.feedback-field {
    display: block;
    width: 100%;
    border: solid 2px black;
    font-size: 30px;
    border-radius: 10px;
    padding: 22px 35px;
}

#feedback textarea {
    height: 238px;
}

.feedback-field:focus {
    outline: none;
}

.feedback-field::placeholder {
    color: #00062A;
}

.feedback-btn {
    padding: 33px 0;
    font-size: 30px;
    background: black;
    color: white;
}

#contacts {
    font-weight: bold;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contacts-wrapper-left-col {
    width: 30%;
}

.contacts-wrapper-right-col {
    width: 65%;
}

.contacts-address, .contacts-link {
    padding-bottom: 67px;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.contacts-link {
    display: block;
}

.contacts-link:last-child {
    padding-bottom: 0;
}

.info {
    padding-top: 130px;
}

.info-links {
    display: flex;
    justify-content: space-between;
    max-width: 368px;
    margin: auto;
}

.info-links a {
    font-size: 16px;
    font-weight: normal;
}

.copyright {
    text-align: center;
    padding-top: 38px;
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 1500px) {
    h1 {
        font-size: 76px;
    }

    .header-text p {
        font-size: 28px;
    }

    .about p {
        font-size: 24px;
    }

    .catalog-btn {
        width: 243px;
        font-size: 20px;
        padding: 23px 10px;
    }

    .catalog-text {
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 34px;
        padding-bottom: 45px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
        padding-bottom: 12px;
    }

    .header {
        margin-top: 80px;
    }

    .header-text p {
        font-size: 24px;
    }

    .catalog-btn {
        width: 183px;
        font-size: 18px;
        padding: 18px 10px;
    }

    .catalog-text {
        font-size: 18px;
    }

    .about p {
        font-size: 19px;
    }

    .feedback-field {
        font-size: 23px;
        padding: 15px 25px;
    }

    .about {
        padding: 80px 0;
    }

    .catalog-wrapper {
        gap: 45px;
    }

    main {
        padding-bottom: 100px;
    }

    footer {
        padding: 58px 0 30px;
    }

    .contacts-link, .contacts-address {
        font-size: 14px;
        padding-bottom: 30px;
    }

    .info {
        padding-top: 65px;
    }

    .copyright {
        padding-top: 24px;
    }
}

@media screen and (max-width: 830px) {
    .films-item-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px
    }

    .catalog-text, .catalog-btn-wrapper, .catalog-btn {
        width: 100%;
    }

    .catalog-img {
        width: 60%;
    }

    .header {
        margin-top: 64px;
    }

    .header-text {
        width: 90%;
    }

    .catalog-text h3 {
        text-align: center;
    }

    .about, .flex-cont {
        flex-wrap: wrap;
    }
    .col, .col-2, .col-3{
    flex: none;
    width:100%;
    padding: 20px 0;
    }
    .first-cont{
    padding-top: 50px;
    }

    .about-left-col {
        width: 70%;
        margin: auto;
    }

    .about-right-col {
        width: 100%;
        padding-top: 30px;
    }

    .about-right-col h2 {
        text-align: center;
    }
}

@media screen and (max-width: 540px) {
    h1 {
        font-size: 36px;
    }

    .header-text p {
        font-size: 22px;
    }

    h2 {
        font-size: 28px;
    }

    .contacts-wrapper-left-col {
        width: 100%;
        padding-bottom: 30px;
    }

    .contacts-wrapper-right-col {
        width: 100%;
    }

    .contacts-wrapper {
        flex-wrap: wrap;
    }

    #feedback {
        padding: 0 20px 71px;
    }
}

.info h2{
text-align:left;
padding: 0;
font-size: 20px;
}
.request p{
text-align: center;
}
.catalog-btn, .feedback-btn{
background: #0D6F93;
border: none;
}
h2{
color: #0D6F93;
}
* {
    box-sizing: border-box;
    transition: 0.4s ease all;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #2D3436;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* Новый акцентный цвет для заголовков h2 */
h2 {
    color: #6B4E71;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 28px 0;
    background: #FFFFFF;
    color: #2D3436;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar a {
    color: #2D3436;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #6B4E71;
    opacity: 0.9;
    transition: 1s;
}

/* Обновленные стили для гамбургер-меню */
.navbar-container .hamburger-lines .line {
    background: #2D3436;
}

/* Кнопки */
.catalog-btn, .feedback-btn {
    background: #6B4E71;
    border: none;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.catalog-btn:hover, .feedback-btn:hover {
    background: #876F8C;
    cursor: pointer;
    opacity: 0.9;
}

/* Поля формы */
.feedback-field {
    border: solid 2px #6B4E71;
    color: #2D3436;
}

.feedback-field:focus {
    outline: none;
    border-color: #876F8C;
}

.feedback-field::placeholder {
    color: #95A5A6;
}

/* Мобильное меню */
.navbar .menu-items {
    background: #FFFFFF;
}

@media (max-width: 830px) {
    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar .menu-items {
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
}


/* General Section Styles */
#top-sellers, #new-releases, #exclusive-content, #community-events {
    padding: 40px 20px;
    background-color: #1C1F26;
    color: #D4D9E0;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}


/* Top Sellers Section */
#top-sellers {
    border: 2px solid #3B6978;
    box-shadow: 0 0 10px rgba(59, 105, 120, 0.5);
}

/* New Releases Section */
#new-releases {
    background: linear-gradient(135deg, #2A2D34, #1C1F26);
}

/* Exclusive Content Section */
#exclusive-content {
    background-color: #25272E;
    border: 1px solid #3B6978;
}

/* Community Events Section */
#community-events {
    background-color: #2A2D34;
    padding: 50px 20px;
    border-radius: 15px;
}
