/* General Styles */
/* Adjust blur effect to only apply to the background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/BASE.JPG') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
}

/* Update text color and font */
body, p, h1, h2, h3, h4, h5, h6, ul, li {
    color: #623C39;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

.hero {
    position: relative;
    height: 50vh !important;
    min-height: unset !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px 20px; /* уменьшаем верхний и нижний отступ */
    box-sizing: border-box;
}

h1, h2, h3 {
    text-align: center;
}

/* Add a container to overlay content on the blurred background */
.container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background: rgba(255, 255, 255, 0.8);
    color: #623C39;
    text-align: center;
    padding: 25px 20px; /* сверху и снизу по 25px, справа и слева по 20px */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 35px;
}

@font-face {
    font-family: 'Lady Marmalade';
    src: url('../assets/fonts/Lady Marmalade.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.hero h1 {
    background: none;
    display: inline-block;
    padding: 0 20px; /* убран padding сверху и снизу */
    border-radius: 10px;
    text-align: center;
    font-size: 70px;
    color: #623C39;
    text-transform: uppercase;
    font-family: 'Lady Marmalade', cursive, Arial, sans-serif;
    margin-bottom: 20px;
    text-shadow:
        0 2px 8px rgba(255, 118, 186, 0.25),
        0 0 0.5px #fff,
        0 0 8px #fff,
        0 6px 24px rgba(255, 118, 186, 0.18),
        0 0 16px #fff,
        0 0 32px #fff;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    /* Добавлена белая обводка, мягкая тень и усиленная растушёвка для читаемости */
}

.hero h2 {
    text-shadow:
        0 2px 8px rgba(255, 118, 186, 0.18),
        0 0 0.5px #fff,
        0 4px 16px rgba(255, 118, 186, 0.12),
        0 0 8px #fff;
    -webkit-text-stroke: 0.5px #fff;
    text-stroke: 0.5px #fff;
    /* Добавлена белая обводка и усиленная растушёвка для читаемости */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: none;
}

.hero div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    color: #000;
}

.hero div > div {
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ff4500;
    transform: scale(1.1);
}

/* Center buttons and ensure they match the site's style */
button, .cta-button, .feedback-button {
    display: block;
    margin: 20px auto;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background-color: #ff7f50;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover, .cta-button:hover, .feedback-button:hover {
    background-color: #ff4500;
    transform: scale(1.05);
}

/* Hero Navigation Buttons */
.hero-nav-btn {
    background-color: #FF76BA !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
    padding: 15px 30px !important;
    margin: 10px !important; /* уменьшаем отступы между кнопками */
    display: block !important;
    text-align: center !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    width: 35% !important; /* увеличиваем ширину кнопок */
    min-width: 180px !important; /* увеличиваем минимальную ширину */
}

.hero-nav-btn:hover {
    background-color: #ff5aac;
    transform: scale(1.05);
    text-decoration: none;
}

.hero-nav-btn:active {
    transform: scale(0.95);
}

/* Courses Section */
.courses {
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.8);
}

/* Enhance 'Our Courses' heading */
.courses h2 {
    font-size: 3rem;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
    margin-bottom: 20px;
}

.course-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Update course content to appear in front of pictures */
.course-item {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-item .course-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.course-item.active .course-content {
    opacity: 1;
}

.course-item img {
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

.course-item.active img {
    filter: blur(5px) brightness(0.8);
}

.course-item:hover {
    transform: translateY(-10px);
}

/* Enhance courses text styling */
.course-item h3 {
    font-size: 2rem;
    font-family: 'Brush Script MT', cursive;
    margin: 10px 0;
}

.course-item p {
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    line-height: 1.6;
}

/* Styling for the course program section */
.course-program {
    background-color: #FFF0F6;
    padding: 50px 20px;
    text-align: center;
}

.course-program .module {
    margin-bottom: 20px;
}

.course-program .module-toggle {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF69B3;
    background-color: white;
    border: 2px solid #FF69B3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.course-program .module-toggle:hover {
    background-color: #FF69B3;
    color: white;
    transform: scale(1.05);
}

.course-program .module-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border: 2px solid #FF69B3;
    border-radius: 10px;
    padding: 15px;
}

.course-program .module-content ul li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1.2rem;
    text-align: left; /* Выравнивание текста по левому краю */
    list-style-position: inside; /* Маркеры остаются внутри списка */
    word-wrap: break-word; /* Перенос текста на новую строку без искажения */
}

/* Update numbering circle for course program */
.course-program .module-content ul li::before {
    content: '';
    display: inline-block;
    width: 15px; /* Уменьшаем размер маркеров в 2 раза */
    height: 15px; /* Уменьшаем размер маркеров в 2 раза */
    margin-right: 10px;
    background-color: #FF69B3;
    border: 2px solid white;
    border-radius: 50%;
}

/* Add styles for nested sublist */
.course-program .module-content ul li ul {
    list-style: none;
    padding-left: 30px;
    margin-top: 10px;
}

.course-program .module-content ul li ul li {
    font-size: 1rem;
    position: relative;
}

.course-program .module-content ul li ul li::before {
    content: '';
    width: 15px;
    height: 15px;
    margin-right: 10px;
    background-color: #FF69B3;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: -25px;
    top: 5px;
}

/* Chef Info Section */
.chef-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

#chef-info {
    max-height: 700px;
    overflow: hidden;
}

#chef-info .chef-image img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Update animation for chef info to flow to the left */
.chef-content {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.chef-info.visible .chef-content {
    transform: translateX(0);
    opacity: 1;
}

.chef-content h2 {
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.chef-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.chef-image {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chef-image img {
    max-width: 100%;
    height: auto;
    border: none;
    box-shadow: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #333;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.footer-column {
    flex: 0 1 300px;
    min-width: 200px;
    max-width: 350px;
    text-align: left;
}

.footer-column:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    text-align: left;
}

.footer-column:nth-child(1) {
    position: relative;
    left: 0;
    margin-right: auto;
}

.footer-column:nth-child(3) {
    position: relative;
    right: 0;
    margin-left: auto;
    left: 10%;
}

.footer-column p {
    color: white;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FF76BA;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        flex: none !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .footer-column p,
    .footer-column a {
        text-align: center !important;
    }
}

/* Enhanced Feedback Form Styles */
/* Ensure feedback form is properly centered */
.feedback-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 350px;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

body.feedback-active .feedback-form {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.feedback-form h3 {
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Georgia', serif;
}

.feedback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.feedback-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: block;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.feedback-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feedback-form button:hover {
    background-color: #ff4500;
    transform: scale(1.05);
}

/* Move close button to top-right corner of feedback form */
.feedback-form button[type="button"] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-form button[type="button"]::before {
    content: '✕';
}

/* Style for Request Feedback button */
.feedback-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.feedback-button:hover {
    background-color: #ff4500;
    transform: scale(1.1);
}

/* Add overlay effect when feedback form is visible */
body.feedback-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

body.feedback-active .container,
body.feedback-active .hero,
body.feedback-active .courses,
body.feedback-active .chef-info,
body.feedback-active .footer {
    filter: blur(5px);
    pointer-events: none;
}

/* Why Zephyr Section */
#why-zephyr {
    padding: 30px 10px;
    text-align: center;
    background-color: white;
    margin-bottom: 35px;
}

#why-zephyr h2 {
    color: #FF76BA;
    font-family: 'Montserrat', Arial;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.why-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF0F6;
    border-radius: 10px;
    padding: 20px;
}

.why-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.why-item p {
    color: #623C39;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .why-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #why-zephyr .why-items {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    #why-zephyr .why-item {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    #why-zephyr .why-item img {
        max-width: 200px !important;
        margin: 0 auto 15px auto !important;
    }
}

/* Learning Format Section */
#learning-format {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.learning-content {
    width: 50%;
    text-align: left;
}

.learning-content p {
    margin-bottom: 12px;
    line-height: 1.4;
}

.learning-content strong {
    margin-top: 15px;
    margin-bottom: 8px;
}

.learning-image {
    width: 50%;
    text-align: center;
}

.learning-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Course Program Section */
#course-program {
    margin-top: 30px;
    color: #FF76BA;
    font-size: 30px;
}

.module {
    margin-bottom: 20px;
}

.module-toggle {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF69B3;
    background-color: white;
    border: 2px solid #FF69B3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.module-content {
    display: none;
}

.module-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border: 2px solid #FF69B3;
    border-radius: 10px;
    padding: 15px;
}

.module-content ul li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1.2rem;
    text-align: left;
    list-style-position: inside;
    word-wrap: break-word;
}

/* Tariffs Section */
#tariffs {
    padding: 30px 20px 40px 20px;
    text-align: center;
    border: none !important;
    border-radius: 10px;
}

#tariffs h2 {
    color: #FF76BA;
    font-family: 'Montserrat', Arial;
    font-size: 40px;
    margin-bottom: 40px;
    border: 3px solid #FF76BA;
    box-sizing: border-box;
}

#tariffs .tariffs div {
    flex: 1 1 calc(33% - 20px);
    max-width: calc(33% - 20px);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #FF76BA;
}

#tariffs .tariffs div p {
    font-size: 19px;
}

#tariffs .tariffs div p span {
    margin-bottom: 8px;
}

#tariffs .tariffs div button {
    background-color: #FF76BA;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', Arial;
    font-size: 1.5rem;
    cursor: pointer;
    width: 75%;
}

/* Make site dynamic for different resolutions */
@media (max-width: 1200px) {
    .course-list {
        flex-wrap: wrap;
        gap: 15px;
    }

    .course-item {
        flex: 1 1 calc(50% - 15px);
    }

    .chef-info {
        flex-direction: column;
        text-align: center;
    }

    .chef-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-column,
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        position: static;
        margin: 0;
        max-width: 100%;
        text-align: left;
        transform: none;
        left: auto;
        right: auto;
    }
}

/* Remove reviews section styles */
@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    body {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }
    .container,
    .hero,
    .courses,
    .course-program,
    .chef-info,
    .why-zephyr,
    #learning-format,
    #tariffs,
    .tariffs-row > div,
    .course-list,
    .course-item,
    .module-content ul,
    .learning-content,
    .learning-image,
    .chef-content,
    .chef-image {
        max-width: 100vw !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .course-item {
        flex: 1 1 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .chef-content h2 {
        font-size: 2rem;
    }

    .chef-content p {
        font-size: 1rem;
    }

    .course-program .module-content ul li {
        display: list-item; /* Устанавливаем стандартное отображение списка */
        list-style-position: outside; /* Маркеры остаются снаружи списка */
        padding-left: 20px; /* Добавляем отступ для текста */
    }

    .learning-format {
        flex-direction: column !important; /* Размещаем элементы вертикально */
        align-items: stretch !important; /* Растягиваем элементы на всю ширину */
        width: 100% !important;
    }

    .learning-content {
        width: 100% !important; /* Текстовая подложка занимает всю ширину экрана */
        margin-bottom: 20px !important; /* Добавляем отступ снизу для разделения с изображением */
        padding-left: 20px !important; /* Добавлен отступ слева для мобильной версии */
        box-sizing: border-box; /* Учитываем отступы в ширине */
    }

    .learning-image {
        width: 100% !important; /* Изображение занимает всю ширину экрана */
        text-align: center !important; /* Центрируем изображение */
    }

    .learning-image img {
        max-width: 100% !important; /* Изображение занимает доступное пространство */
        height: auto !important; /* Сохраняем пропорции изображения */
    }

    .chef-info {
        flex-direction: column; /* Размещаем элементы вертикально */
        align-items: stretch; /* Растягиваем элементы на всю ширину */
    }

    .chef-info .chef-content {
        width: 100%; /* Текстовая подложка занимает всю ширину экрана */
        margin: 0; /* Убираем внешние отступы */ 
        padding: 20px; /* Добавляем внутренние отступы для симметрии */
        box-sizing: border-box; /* Учитываем отступы в ширине */
    }

    .chef-info .chef-image {
        width: 100%; /* Изображение занимает всю ширину экрана */
        margin: 0; /* Убираем внешние отступы */
        padding: 20px; /* Добавляем внутренние отступы для симметрии */
        box-sizing: border-box; /* Учитываем отступы в ширине */
    }

    .tariff-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .tariff-item {
        max-width: 100%;
    }

    .tariffs-row {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .tariffs-row > div {
        width: calc(100% - 6px) !important;
        max-width: calc(100% - 6px) !important;
        margin-left: 3px;
        margin-right: 3px;
        box-sizing: border-box;
    }

    .why-items {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-top: 0 !important;
        justify-content: unset !important;
    }
    .why-item {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
        flex: unset !important;
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 100px 10px;
    }

    .feedback-form {
        width: 90%;
        padding: 20px;
    }

    .feedback-form h3 {
        font-size: 1.5rem;
    }

    .feedback-form input {
        font-size: 0.9rem;
    }

    .feedback-form button {
        font-size: 0.9rem;
    }
}

/* Testimonials Carousel Styles */
.testimonials {
    padding: 40px 20px;
    background-color: #fff;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    color: #FF76BA;
    margin-bottom: 30px;
}

.testimonials-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.swiper-container {
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #FF76BA;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Pagination */
.swiper-pagination {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background-color: #FF76BA;
}

@media (max-width: 1024px) {
    .swiper-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0;
    }
    
    .swiper-slide {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-wrapper {
        align-items: center;
    }
}

@media (max-width: 768px) {
    body::before {
        position: absolute;
        background-attachment: scroll;
        min-height: 100vh;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/BASE.JPG') no-repeat center center;
        background-size: cover;
        background-position: center;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.container,
.hero,
.courses,
.course-program,
.chef-info,
.why-zephyr,
#learning-format,
#tariffs,
.tariffs-row > div,
.course-list,
.course-item,
.module-content ul,
.learning-content,
.learning-image,
.chef-content,
.chef-image {
    max-width: 100vw !important;
    box-sizing: border-box;
    overflow-x: hidden;
}

.buy-now-link, .preorder-link {
    font-weight: bold !important;
}