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

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.8;
    background-color: #fcfcfc;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
    margin-left: 2rem;
    text-decoration: none;
}

.nav-links a:hover {
    color: #917c3f;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/hero-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 1rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #917c3f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #7d6934;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

section {
    padding: 8rem 12%;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tour-card {
    background: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tour-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: left;
}

.tour-card p {
    color: #917c3f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.tour-card ul {
    margin-top: 2rem;
    list-style: none;
    margin-left: 0;
}

.tour-card li {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.tour-card li:before {
    content: "•";
    color: #917c3f;
    position: absolute;
    left: 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact input,
.contact textarea {
    padding: 1.2rem;
    margin: 0.8rem 0;
    border: 1px solid #e1e1e1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #917c3f;
    outline: none;
}

.contact button {
    background: #917c3f;
    padding: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact button:hover {
    background: #7d6934;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    color: white;
}

footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                    url('images/hero-mobile.jpg');
        background-attachment: scroll;
        background-position: center center;
        height: 90vh;
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-top: 0.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }

    section {
        padding: 3rem 5%;
    }
} 

.tours-note {
    text-align: center;
    margin-top: 4rem;
}

.tours-note p {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #917c3f;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.contact-info {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-button img {
    width: 24px;
    height: 24px;
    color: currentColor;
}

.contact-button.whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-button.telegram:hover {
    background: #0088cc;
    color: white;
}

.contact-button.phone:hover {
    background: #917c3f;
    color: white;
}

.contact-note {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
} 