/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.language-switcher select {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #45a049;
}

/* About Section */
#about {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Tours Section */
#tours {
    padding: 60px 0;
    background: white;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tour-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

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

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    margin: 15px 0;
}

.price {
    color: #4CAF50;
    font-weight: 600;
}

.learn-more {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* Why Choose Section */
#why-choose {
    padding: 60px 0;
    background: #f9f9f9;
}

.benefits {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
    max-width: 200px;
}

.benefit img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.testimonials blockquote {
    font-style: italic;
    margin: 20px 0;
}

/* Gallery Section */
#gallery {
    padding: 60px 0;
    background: white;
}

.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px;
}

.testimonial-slider p {
    text-align: center;
    font-style: italic;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background: #f9f9f9;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }

    .hero-overlay h1 {
        font-size: 2em;
    }
}
