/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #d10a10;
    transition: color 0.3s ease;
}

a:hover {
    color: #b00000;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #e4000f;
    margin: 15px auto 0;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-header.light h2::after {
    background-color: #fff;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: #222;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #e4000f;
    color: #e4000f;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e4000f;
    color: #fff;
}

.btn-primary {
    background-color: #e4000f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b00000;
    border-color: #b00000;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e4000f;
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #e4000f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Intro Section */
.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text,
.intro-image {
    flex: 1;
}

.intro-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.destination-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-img {
    height: 200px;
}

.destination-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.destination-info p {
    margin-bottom: 15px;
    color: #666;
}

/* Regions Section */
.regions-content {
    display: flex;
    gap: 30px;
}

.region-map {
    flex: 1;
}

.region-info {
    flex: 1;
}

.region-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e4000f;
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: #e4000f;
}

.tab-btn.active::after {
    width: 100%;
}

.region-description {
    display: none;
    padding: 20px 0;
}

.region-description.active {
    display: block;
}

.region-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.region-description p {
    margin-bottom: 15px;
}

.region-description ul {
    padding-left: 20px;
}

.region-description ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #666;
}

/* Cuisine Section */
.cuisine-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cuisine-text {
    flex: 1;
}

.cuisine-text p {
    margin-bottom: 20px;
}

.cuisine-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.food-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    max-width: 500px;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-content p {
    margin-bottom: 15px;
    font-style: italic;
    color: #444;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 50px;
    color: #e4000f;
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author {
    font-weight: 600;
    color: #e4000f;
}

/* About Us Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image,
.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
}

/* Newsletter Section */
.newsletter {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-image {
    flex: 1;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.newsletter p {
    margin-bottom: 25px;
    color: #666;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-container input {
    margin-right: 10px;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info,
.map {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item p {
    color: #ddd;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e4000f;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    margin-top: 15px;
    color: #aaa;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
    min-width: 170px;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #e4000f;
}

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

.footer-links-column ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: #e4000f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    font-size: 1.2rem;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.cookie-options {
    margin: 20px 0;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

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

.cookie-option p {
    margin-top: 5px;
    margin-left: 30px;
    font-size: 0.9rem;
    color: #666;
}

.modal-buttons {
    text-align: right;
}

/* Responsive styles */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .intro-content,
    .about-content,
    .cuisine-content,
    .regions-content,
    .contact-content {
        flex-direction: column;
    }
    
    .newsletter {
        flex-direction: column;
        padding: 30px;
    }
    
    .newsletter-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 20px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .region-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 50%;
        text-align: center;
    }
}
