/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2E4057;
    background-color: #F5F0E6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #2D5A27;
}

a {
    text-decoration: none;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background-color: #2D5A27;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F5F0E6;
    letter-spacing: -0.02em;
}

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

.nav-links li a {
    color: #F5F0E6;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    border-bottom-color: #B86F52;
}

.menu-toggle {
    display: none;
    color: #F5F0E6;
    font-size: 2rem;
    cursor: pointer;
}

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    color: #F5F0E6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn.active {
    color: #B86F52;
    font-weight: 700;
}

.lang-divider {
    color: #6A8D92;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

.btn-plan {
    background-color: #B86F52;
    color: #F5F0E6;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #B86F52;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-plan:hover {
    background-color: #9e5e45;
    border-color: #9e5e45;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.prizren-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('fotot/5.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F5F0E6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 111, 82, 0.6) 0%, rgba(45, 90, 39, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    color: #F5F0E6;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stats span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats i {
    margin-right: 0.5rem;
    color: #B86F52;
}

/* ===== FACTS BAR ===== */
.facts-bar {
    background: #2D5A27;
    color: #F5F0E6;
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.fact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.fact i {
    color: #B86F52;
    font-size: 1.3rem;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 5rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.intro-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #B86F52;
    margin-top: 0.5rem;
}

.intro-highlight {
    font-size: 1.2rem;
    color: #6A8D92;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1rem;
    color: #2E4057;
}

.intro-highlights {
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.highlight i {
    color: #B86F52;
    font-size: 1.2rem;
}

.intro-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid #2D5A27;
}

.image-caption {
    text-align: center;
    margin-top: 0.5rem;
    color: #6A8D92;
    font-style: italic;
    font-size: 0.9rem;
}

/* ===== MAP SECTION ===== */
.prizren-map-section {
    padding: 3rem 0;
    background: #fff;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #B86F52;
    margin: 1rem auto 0;
}

.prizren-map {
    height: 450px;
    width: 100%;
    border-radius: 24px;
    border: 3px solid #2D5A27;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-attribution {
    text-align: right;
    margin-top: 0.5rem;
    color: #6A8D92;
    font-size: 0.9rem;
}

/* ===== ATTRACTIONS SECTION ===== */
.attractions-section {
    padding: 5rem 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(106, 141, 146, 0.2);
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-img {
    height: 200px;
    overflow: hidden;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.attraction-card:hover .attraction-img img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.attraction-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6A8D92;
}

/* ===== FESTIVALS SECTION ===== */
.festivals-section {
    padding: 5rem 0;
    background: #fff;
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.festival-card {
    background: #F5F0E6;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(106, 141, 146, 0.2);
}

.festival-card:hover {
    transform: translateY(-5px);
}

.festival-card i {
    font-size: 2.5rem;
    color: #B86F52;
    margin-bottom: 1rem;
}

.festival-card h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

/* ===== FOOD SECTION ===== */
.food-section {
    padding: 5rem 0;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.food-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(106, 141, 146, 0.2);
}

.food-item:hover {
    transform: translateY(-5px);
}

.food-item i {
    font-size: 2.5rem;
    color: #B86F52;
    margin-bottom: 1rem;
}

.food-item h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 5rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #F5F0E6;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== VISITOR SECTION ===== */
.visitor-section {
    padding: 5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(106, 141, 146, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #B86F52;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

/* ===== NEARBY SECTION ===== */
.nearby-section {
    padding: 5rem 0;
    background: #fff;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.nearby-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(106, 141, 146, 0.2);
}

.nearby-card:hover {
    transform: translateY(-5px);
}

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

.nearby-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #2D5A27;
}

.nearby-card p {
    padding: 0 1rem;
    color: #2E4057;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.nearby-link {
    display: inline-block;
    margin: 0 1rem 1rem;
    color: #B86F52;
    font-weight: 600;
    transition: color 0.3s;
}

.nearby-link:hover {
    color: #9e5e45;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a2f2a;
    color: #F5F0E6;
    margin-top: 0;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(106, 141, 146, 0.3);
}

.footer-col h3 {
    font-size: 1.2rem;
    color: #F5F0E6;
    margin-bottom: 1.2rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #B86F52;
    margin-top: 0.5rem;
}

.footer-logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #F5F0E6;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    color: #C0C8D0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(245, 240, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F0E6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #B86F52;
    transform: translateY(-3px);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #C0C8D0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #B86F52;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #B86F52;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #C0C8D0;
    margin-bottom: 1rem;
}

.footer-contact li i {
    width: 20px;
    color: #B86F52;
    font-size: 1rem;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #F5F0E6;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: #C0C8D0;
    margin-bottom: 1rem;
}

.newsletter-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 40px;
    font-family: inherit;
    background: rgba(245, 240, 230, 0.1);
    color: #F5F0E6;
    outline: none;
    transition: all 0.3s;
}

.newsletter-group input:focus {
    background: rgba(245, 240, 230, 0.2);
}

.newsletter-group input::placeholder {
    color: #8A9A9A;
}

.newsletter-group button {
    background: #B86F52;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #F5F0E6;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-group button:hover {
    background: #9e5e45;
    transform: translateX(3px);
}

.newsletter-note {
    font-size: 0.7rem;
    margin-top: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom-content p {
    color: #8A9A9A;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #8A9A9A;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #B86F52;
}

.newsletter-success {
    background: rgba(184, 111, 82, 0.2);
    border: 1px solid #B86F52;
    padding: 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.newsletter-success.show {
    display: block;
}


/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .festivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem 0 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
        width: 100%;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .nav-cta.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

@media screen and (max-width: 600px) {
    .festivals-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

/* ===== SCROLL ANIMATIONS ===== */
.intro-section,
.prizren-map-section,
.attractions-section,
.festivals-section,
.food-section,
.gallery-section,
.visitor-section,
.nearby-section,
.attraction-card,
.festival-card,
.food-item,
.info-card,
.nearby-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.intro-section.visible,
.prizren-map-section.visible,
.attractions-section.visible,
.festivals-section.visible,
.food-section.visible,
.gallery-section.visible,
.visitor-section.visible,
.nearby-section.visible,
.attraction-card.visible,
.festival-card.visible,
.food-item.visible,
.info-card.visible,
.nearby-card.visible {
    opacity: 1;
    transform: translateY(0);
}