/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #343a40;
    background-color: #f5f5f5; /* Более светлый фон */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Шапка */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #FF6347; /* Rosso corallo per il nome del sito */
    margin: 0;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Выравнивание пунктов меню по высоте */
    gap: 20px;
    justify-content: flex-end; /* Выравнивание меню по правому краю */
}

header nav ul li a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция героя */
.hero {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон на 50% */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.button-container {
    text-align: center; /* Выравнивание кнопок по центру */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Секzioni контента */
.chi-siamo, .cocktails, .smoothies, .consigli-nutrizione, .chi-siamo-content, .cocktails-content, .smoothies-content, .consigli-nutrizione-content, .contatti-form, .contatti-info, .grazie, .politica-cookie-content, .politica-privacy-content, .condizioni-posizioni-content, .cocktail-content, .smoothie-content {
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1000px;
}

/* Заголовки секций */
.chi-siamo h2, .cocktails h2, .smoothies h2, .consigli-nutrizione h2, .chi-siamo-content h2, .cocktails-content h2, .smoothies-content h2, .consigli-nutrizione-content h2, .contatti-form h2, .contatti-info h2, .grazie h2, .politica-cookie-content h2, .politica-privacy-content h2, .condizioni-posizioni-content h2, .cocktail-content h2, .smoothie-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #FF6347; /* Rosso corallo per i titoli */
}

/* Текст секций */
.chi-siamo-content p, .cocktails-content p, .smoothies-content p, .consigli-nutrizione-content p, .contatti-form p, .contatti-info p, .grazie p, .politica-cookie-content p, .politica-privacy-content p, .condizioni-posizioni-content p, .cocktail-content p, .smoothie-content p {
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
}

/* Сетка cocktails */
.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Автоматическое адаптирование колонок */
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.cocktail-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center; /* Выравнивание текста по центру */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cocktail-card:hover {
    transform: translateY(-10px);
}

.cocktail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cocktail-card .cocktail-content {
    padding: 20px;
    flex: 1;
}

.cocktail-card h3 {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #343a40;
}

.cocktail-card p {
    font-size: 16px;
    margin: 0 0 20px;
    color: #6c757d;
}

.cocktail-card .button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Выравнивание кнопок по нижнему краю */
    padding: 10px;
}

.cocktail-card .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.cocktail-card .cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Сетка smoothies */
.smoothie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Автоматическое адаптирование колонок */
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.smoothie-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center; /* Выравнивание текста по центру */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.smoothie-card:hover {
    transform: translateY(-10px);
}

.smoothie-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.smoothie-card .smoothie-content {
    padding: 20px;
    flex: 1;
}

.smoothie-card h3 {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #343a40;
}

.smoothie-card p {
    font-size: 16px;
    margin: 0 0 20px;
    color: #6c757d;
}

.smoothie-card .button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Выравнивание кнопок по нижнему краю */
    padding: 10px;
}

.smoothie-card .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.smoothie-card .cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция Form di Contatto */
.contatti-form {
    text-align: center;
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 600px;
}

.contatti-form h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FF6347; /* Rosso corallo per i titoli */
}

.contatti-form p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #343a40;
}

.contatti-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contatti-form label {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.contatti-form input[type="text"],
.contatti-form input[type="email"],
.contatti-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
}

.contatti-form button {
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.contatti-form button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция Informazioni di Contatto */
.contatti-info {
    text-align: center;
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.contatti-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FF6347; /* Rosso corallo per i titoli */
}

.contatti-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #343a40;
}

.contatti-info a {
    color: #FF6347;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contatti-info a:hover {
    color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция Footer */
footer {
    background-color: #FF6347; /* Rosso corallo per il footer */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #FF4500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #DC143C; /* Rosso crème de cassis per il hover */
}

/* Секция Recetta di Esempio Cocktail */
.cocktail-content {
    text-align: center;
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.cocktail-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FF6347; /* Rosso corallo per i titoli */
}

.cocktail-content h3 {
    font-size: 28px;
    margin: 20px 0 10px;
    color: #343a40;
}

.cocktail-content ul, .cocktail-content ol {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.cocktail-content ul li, .cocktail-content ol li {
    margin-bottom: 10px;
    color: #343a40;
}

.cocktail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #343a40;
}

.cocktail-content img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cocktail-content .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.cocktail-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.cocktail-content .cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция Recetta di Esempio Smoothie */
.smoothie-content {
    text-align: center;
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.smoothie-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FF6347; /* Rosso corallo per i titoli */
}

.smoothie-content h3 {
    font-size: 28px;
    margin: 20px 0 10px;
    color: #343a40;
}

.smoothie-content ul, .smoothie-content ol {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.smoothie-content ul li, .smoothie-content ol li {
    margin-bottom: 10px;
    color: #343a40;
}

.smoothie-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #343a40;
}

.smoothie-content img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.smoothie-content .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.smoothie-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.smoothie-content .cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция Chiamata all'Azioni */
.call-to-action {
    text-align: center;
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.call-to-action h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FF6347; /* Rosso corallo per i titoli */
}

.call-to-action p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #343a40;
}

.call-to-action .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.call-to-action .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.call-to-action .cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}

/* Секция Consigli di Nutrizione */
.tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Автоматическое адаптирование колонок */
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.tip-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center; /* Выравнивание текста по центру */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-10px);
}

.tip-card img.tip-image {
    width: 100%;
    height: 150px; /* Уменьшаем высоту изображений */
    object-fit: cover;
}

.tip-card .tip-content {
    padding: 20px;
    flex: 1;
}

.tip-card h3 {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #343a40;
}

.tip-card p {
    font-size: 16px;
    margin: 0 0 20px;
    color: #6c757d;
}

.tip-card .button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Выравнивание кнопок по нижнему краю */
    padding: 10px;
}

.tip-card .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6347; /* Rosso corallo per i bottoni */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Отступ между кнопками */
    font-size: 18px;
}

.tip-card .cta-button:hover {
    background-color: #FF4500; /* Rosso scuro per il hover */
}