/* Основні стилі */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Заголовок та меню */
header {
    background-color: #4BA3D1; /* Блакитний колір */
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo img {
    width: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a.active,
nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    color: white;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5em;
}

.btn-main {
    background-color: #FFD700; /* Жовтий акцент */
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.btn-main:hover {
    background-color: #ffcc00;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.about-section img {
    width: 80%;
    max-width: 600px;
    margin-top: 30px;
    border-radius: 10px;
}

/* Загальний стиль для внутрішніх сторінок */
.page-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.page-section h1, .page-section h2 {
    color: #4BA3D1;
}

.page-section ul {
    padding-left: 20px;
}

/* Tours Section */
.tours-section {
    padding: 60px 20px;
    background-color: #fff7e6; /* Пісочний колір */
    text-align: center;
}

.tours-section .tour-card {
    display: inline-block;
    width: 30%;
    min-width: 260px;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

.tours-section .tour-card img {
    width: 100%;
    height: auto;
}

.tours-section .tour-card h3 {
    color: #4BA3D1; /* Блакитний для заголовків */
    margin: 20px 0 10px;
}

.tours-section .tour-card p {
    padding: 0 20px 10px;
}

.tours-section .tour-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4BA3D1; /* Блакитний для кнопок */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0 20px;
}

.tours-section .tour-card a:hover {
    background-color: #3a8bb5;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #e3f2fd; /* Світло-блакитний */
}

.contact-section p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Контейнер для форми і контактної інформації */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Контактна форма */
.contact-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #4BA3D1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #3a8bb5;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .footer-links {
    margin-top: 10px;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
    font-size: 1em;
}

footer .footer-links a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 0.9em;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
}

.cookie-banner__text {
    max-width: 70%;
}

.cookie-banner__text a {
    color: #FFD700;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
}

.cookie-banner__actions button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

/* Кнопка "Згоден" */
#cookie-accept {
    background-color: #4BA3D1;
    color: #fff;
    font-weight: bold;
}

/* Кнопка "Відхилити" */
#cookie-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Адаптивність */
@media (max-width: 992px) {
    .tours-section .tour-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .tours-section .tour-card {
        width: 100%;
        margin: 10px 0;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    .contact-container {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-banner__text {
        max-width: 100%;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }

}
