@font-face {
    font-family: 'Bahnschrift';
    src: url('fonts/Bahnschrift-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bahnschrift', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, 
        #000000 0%, 
        #1a1a1a 20%,
        #000000 40%,
        #1a1a1a 60%,
        #000000 80%,
        #1a1a1a 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* Для ноутбуков (средние экраны) */
@media (min-width: 969px) and (max-width: 1440px) {
    body {
        zoom: 1;
        background: linear-gradient(to bottom, 
            #000000 0px, 
            #1a1a1a 600px,
            #000000 1200px,
            #1a1a1a 1800px,
            #000000 2400px,
            #1a1a1a 3000px);
    }
    
    .price-intro-gif {
        padding-left: 2rem !important;
    }
}

/* Для больших мониторов */
@media (min-width: 1441px) {
    body {
        zoom: 0.8;
        background: linear-gradient(to bottom, 
            #000000 0px, 
            #1a1a1a 800px,
            #000000 1600px,
            #1a1a1a 2400px,
            #000000 3200px,
            #1a1a1a 4000px);
    }
}

/* Анимация для секций при скролле */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-cocktails {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-cocktail {
    position: absolute;
    opacity: 0.25;
    pointer-events: none;
    filter: brightness(1.5);
}

header {
    background: #000000;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

main {
    padding-top: 70px;
    position: relative;
    z-index: 10;
}

.logo {
    position: relative;
    z-index: 1000;
    margin-top: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Навигация */
.navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navigation a:hover {
    color: #cccccc;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        height: auto;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.7);
    }
    
    main {
        padding-top: 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .navigation {
        display: none;
    }
    
    .navigation a {
        font-size: 0.9rem;
    }
}


/* About Section Styles */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-text {
    padding-right: 2rem;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.creator-position {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.creator-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.creator-quote {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 2rem 0;
    line-height: 1.5;
}

.next-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    font-family: 'Bahnschrift', sans-serif;
}

.next-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-image img {
    width: 90%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Адаптивность для about секции */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        position: relative;
    }
    
    .about-image {
        order: -1;
        padding: 0;
        width: 100%;
        height: 100vh;
        display: block;
        position: relative;
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }
    
    .about-text {
        padding: 3rem 1.5rem 3rem;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 20;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.9) 50%, rgba(10, 10, 10, 0.98) 100%);
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        margin-bottom: 1rem;
    }
    
    .creator-position {
        font-size: 1.1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        margin-bottom: 1rem;
    }
    
    .creator-description {
        font-size: 0.9rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .creator-quote {
        font-size: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .next-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .price-title-red {
        font-size: 1.5rem;
        padding: 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .price-title-red::before,
    .price-title-red::after {
        display: none;
    }
    
    .cocktails-section h2 {
        font-size: 2rem;
        padding: 0 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto 1rem !important;
        position: static;
    }
    
    .cocktails-section h2::before,
    .cocktails-section h2::after {
        display: none !important;
    }
}

/* Price Section Styles */
#price {
    padding: 4rem 2rem 4rem;
    background: transparent;
    position: relative;
    z-index: 10;
}

.price-intro {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
}

.price-intro-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}

.price-intro-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.price-intro-gif {
    flex: 0 0 auto;
    padding-left: 21rem;
}

.price-intro-gif img {
    width: 500px;
    height: auto;
    border-radius: 10px;
    
}

.price-intro-text {
    flex: 1;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}

.price-intro-text p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.price-intro-bottom-inline {
    font-size: 1.5rem !important;
    margin-top: 3rem !important;
    font-weight: bold !important;
    text-align: left !important;
    line-height: 1.5 !important;
}

.price-intro-bottom {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 3rem auto 4rem;
    font-weight: normal;
    text-align: center;
    max-width: 900px;
}

.divider {
    width: 100%;
    max-width: 500px;
    height: 2px;
    background: rgba(139, 0, 0, 0.5);
    margin: 1.5rem auto 4rem;
}

.price-packages-section {
    text-align: center;
    margin: 0 auto 2rem;
}

.price-packages-section .price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 1rem auto;
    justify-items: center;
}

.price-title-red {
    font-size: 2rem;
    color: #ffffff;
    margin: 0.5rem 0 1rem 0;
    font-weight: bold;
}

.price-title-red::before,
.price-title-red::after {
    display: none;
}

.price-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

@media (max-width: 768px) {
    .price-intro-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .price-intro-gif {
        padding-left: 0;
    }
    
    .price-intro-gif img {
        width: 300px;
    }
    
    .price-intro-text {
        text-align: center;
    }
    
    .price-intro-bottom-inline {
        text-align: center !important;
    }
    
    .price-intro-title {
        font-size: 1.8rem;
        text-align: center;
    }
}

.price-card-image {
    width: 100%;  
    max-width: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.price-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.all-packages-button-container {
    text-align: center;
    margin: 2rem auto 0;
    position: relative;
    padding-bottom: 3rem;
}

.all-packages-button-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: 2px;
    background-color: rgba(139, 0, 0, 0.5);
}

.all-packages-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.all-packages-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.price-card {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.price-card > * {
    position: relative;
    z-index: 1;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-features {
    text-align: center;
}

.price-features ul {
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
    text-align: center;
}

.price-features li {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    padding-left: 0;
    position: relative;
    text-align: center;
}

.price-features li::before {
    display: none;
}

.price-capacity {
    text-align: center;
    margin: 2rem 0;
}

.price-capacity p {
    font-size: 1.2rem;
    color: white;
}

.price-amount {
    text-align: center;
}

.price-amount p {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    margin-top: 1rem;
}

/* Additional Price Cards */
.price-list-additional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.price-card-additional {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card-additional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.price-card-additional > * {
    position: relative;
    z-index: 1;
}

.price-card-additional:hover {
    transform: translateY(-5px);
}

.price-card-additional h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-card-additional .price-features {
    text-align: center;
}

.price-card-additional .price-features ul {
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
    text-align: center;
}

.price-card-additional .price-features li {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    padding-left: 0;
    position: relative;
    text-align: center;
}

.price-card-additional .price-features li::before {
    display: none;
}

.price-footer {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
}

.price-footer-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 2rem 0;
}

.price-footer-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.price-footer-button:hover {
    background-color: #444;
}

/* Cocktails Section Styles */
.cocktails-section {
    padding: 0 1rem 4rem;
    background: transparent;
    position: relative;
    z-index: 10;
    text-align: center;
}

.cocktails-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 auto 0.5rem;
    font-weight: normal;
}

.cocktails-section h2::before,
.cocktails-section h2::after {
    display: none;
}

.cocktails-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.cocktails-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contacts Section Styles */
#contacts {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    z-index: 10;
}

.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: transparent;
    font-size: 1.1rem;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #333;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
    transform: scaleX(1);
}

.submit-button {
    padding: 1rem 2rem;
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.contacts-info {
    margin-top: 2rem;
}

.contacts-info h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contacts-info p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.social-links img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0;
}

.contacts-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.contacts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .contacts-container {
        grid-template-columns: 1fr;
    }

    .contacts-image {
        display: none;
    }
}

/* Стили для коктейльной карты */
.cocktail-category {
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cocktail-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: normal;
}

.category-description {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Добавляем разделительную линию */
.category-divider {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background-color: #333;
    margin: 2rem auto;
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cocktail-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cocktail-image {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cocktail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cocktail-info {
    display: none;
}

.cocktail-card:hover .cocktail-image img {
    transform: scale(1.1);
}

.cocktail-info h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cocktail-info p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cocktails-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .cocktails-preview {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .cocktails-preview .cocktail-card {
        max-width: 100% !important;
    }
    
    .cocktails-preview .cocktail-image {
        max-width: 100% !important;
    }
    
    .cocktails-preview .cocktail-card:nth-child(n+3) {
        display: none;
    }
    
    .price-card-image {
        max-width: 100% !important;
    }

    .category-title {
        font-size: 2rem;
    }

    .cocktail-info {
        display: none;
    }

    .cocktail-info h4 {
        font-size: 1.2rem;
    }
}

/* Добавляем медиа-запрос для больших экранов */
@media (min-width: 1200px) {
    .cocktail-card {
        max-width: 405px;
        margin: 0 auto;
    }
}

/* Стили для модального окна пакетов */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.modal-open {
    display: flex !important;
}

.modal-content {
    background-image: url('images/fon2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
}

.modal-content > * {
    position: relative;
    z-index: 1;
}

/* Кастомный скроллбар для модального окна */
.modal-content::-webkit-scrollbar {
    width: 0px;
    display: none;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: transparent;
}

.modal-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: bold;
    z-index: 10001;
}

.modal-close:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.modal-package-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-package-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.modal-package-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.modal-package-card:hover .modal-package-image img {
    transform: scale(1.1);
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-cocktails-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.modal-cocktails-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.05);
}

.modal-contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.modal-contact-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.all-packages-button {
    cursor: pointer;
    font-family: 'Bahnschrift', sans-serif;
}

/* Стили для модального окна коктейлей */
.modal-content-large {
    max-width: 1400px;
    width: 95%;
}

.all-cocktails-modal-container {
    width: 100%;
}

.all-cocktails-modal-container .cocktail-category {
    margin-bottom: 3rem;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.all-cocktails-modal-container .category-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.all-cocktails-modal-container .category-description {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.all-cocktails-modal-container .category-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 1.5rem auto;
}

.all-cocktails-modal-container .cocktails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.all-cocktails-modal-container .cocktail-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.all-cocktails-modal-container .cocktail-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.all-cocktails-modal-container .cocktail-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.all-cocktails-modal-container .cocktail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.all-cocktails-modal-container .cocktail-card:hover .cocktail-image img {
    transform: scale(1.1);
}

.all-cocktails-modal-container .cocktail-info {
    padding: 1.5rem;
}

.all-cocktails-modal-container .cocktail-info h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.all-cocktails-modal-container .cocktail-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

/* Стили для превью коктейлей и кнопки "Все коктейли" */
.cocktails-preview {
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto 0;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem;
}

.cocktails-preview .cocktail-card {
    max-width: 100%;
    margin: 0 auto;
}

.cocktails-preview .cocktail-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto;
}

.cocktails-preview .cocktail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.all-cocktails-button-container {
    text-align: center;
    margin: -2rem auto 1rem;
}

.all-cocktails-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Bahnschrift', sans-serif;
}

.all-cocktails-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.05);
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-content-large {
        width: 98%;
        padding: 1.5rem 1rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-close {
        font-size: 2.5rem;
        right: 1rem;
        top: 1rem;
        position: fixed;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-cocktails-button,
    .modal-contact-button {
        width: 100%;
        text-align: center;
    }

    .all-cocktails-modal-container .cocktails-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .all-cocktails-modal-container .category-title {
        font-size: 1.8rem;
    }

    .all-cocktails-modal-container .cocktail-image {
        height: auto;
        min-height: 500px;
    }
} 