/* Base Styles */
:root {
    --primary-color: #DD0000;
    --secondary-color: #FFCC00;
    --tertiary-color: #000000;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #888888;
    --success-color: #4CAF50;
    --info-color: #2196F3;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #BB0000;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

.btn-secondary:hover {
    background-color: #EEBB00;
    color: var(--tertiary-color);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-color);
    color: white;
}

/* Header & Navigation */
.main-header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: block;
}

.logo svg {
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-weight: bold;
    color: var(--tertiary-color);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--tertiary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--tertiary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.hero-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .card-image svg {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image svg {
    width: 100%;
    height: auto;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-features .icon {
    margin-right: 15px;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.newsletter p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
}

.form-check input {
    margin-top: 4px;
    margin-right: 10px;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

.contact-form {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
}

/* Footer */
.main-footer {
    background-color: var(--tertiary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 15px;
    color: #CCC;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CCC;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

address p {
    font-style: normal;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none; /* Hidden by default, shown by JavaScript */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-settings {
    margin-top: 20px;
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    font-weight: bold;
    margin-left: 10px;
}

.cookie-option p {
    margin-left: 30px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.hidden {
    display: none;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto 50px;
}

.check-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    color: var(--success-color);
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.action-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.newsletter-features {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.newsletter-features h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.newsletter-features ul {
    list-style: none;
}

.newsletter-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.newsletter-features .icon {
    margin-right: 15px;
    color: var(--primary-color);
}

/* Suggested Content */
.suggested-content {
    padding: 50px 0;
    background-color: var(--light-gray);
}

.suggested-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.last-updated {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 20px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul, .legal-section ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table th, .cookie-table td {
    border: 1px solid var(--medium-gray);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-gray);
    font-weight: bold;
}

.cookie-settings {
    text-align: center;
    margin-top: 50px;
}

.cookie-settings button {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .hero-image {
        width: 45%;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
    }
    
    .hero {
        padding: 40px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-columns {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .destinations-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}