@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    /* Fallback background to prevent white spaces */
    background-color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    /* Ensure no gaps or spaces */
    display: block;
    min-width: 100%;
    min-height: 100%;
    /* Slightly reduce brightness */
    filter: brightness(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 3rem;
    /* Ensure no background effects */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9);
    font-family: 'Exo 2', sans-serif;
    line-height: 1.1;
    text-transform: uppercase;
    /* Remove any background */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-description {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 400;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 1px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    /* Remove any background */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Category Navigation Dropdown */
.category-nav {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.category-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    min-width: 220px;
    justify-content: space-between;
}

.dropdown-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.dropdown-btn.active {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.dropdown-icon {
    font-size: 1.2rem;
}

.dropdown-text {
    flex: 1;
    text-align: left;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    border: 1px solid #f0f0f0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    color: #667eea;
    transform: translateX(4px);
}

.dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    transform: translateX(0);
}

.item-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.item-text {
    font-size: 0.95rem;
    font-weight: 400;
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    font-family: 'Exo 2', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Place Cards */
.place-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Slider */
.image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Place Info */
.place-info {
    padding: 1.5rem;
}

.place-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-family: 'Exo 2', sans-serif;
}

.place-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #007bff;
    border-radius: 6px;
    background: transparent;
}

.map-link:hover {
    color: white;
    background: #007bff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
        padding-top: 4rem;
    }
    
    .hero-content {
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 7vw, 5rem);
        letter-spacing: 0.03em;
    }
    
    .hero-description {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    }
    
    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .section-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
        min-height: 450px;
        padding-top: 4rem;
    }
    
    .hero-image {
        object-position: center center;
        /* Ensure full coverage on tablet */
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        margin-top: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
        letter-spacing: 0.03em;
        margin-bottom: 1.2rem;
        text-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.8),
            0 3px 10px rgba(0, 0, 0, 1);
        /* Remove background overlay */
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.3rem);
        text-shadow: 
            0 3px 12px rgba(0, 0, 0, 0.7),
            0 2px 6px rgba(0, 0, 0, 0.9);
        /* Remove background overlay */
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        margin-top: 0.6rem;
    }
    
    .hero-overlay {
        background: radial-gradient(
            ellipse at center,
            transparent 15%,
            rgba(0, 0, 0, 0.15) 35%,
            rgba(0, 0, 0, 0.4) 65%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
    
    .category-nav {
        padding: 1.5rem 0;
    }
    
    .category-nav-container {
        padding: 0 1rem;
    }
    
    .dropdown-btn {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .dropdown-icon {
        font-size: 1.1rem;
    }
    
    .dropdown-item {
        padding: 10px 16px;
    }
    
    .item-text {
        font-size: 0.9rem;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .place-card {
        border-radius: 12px;
    }
    
    .image-slider {
        height: 200px;
    }
    
    .place-info {
        padding: 1.2rem;
    }
    
    .place-info h3 {
        font-size: 1.2rem;
    }
    
    .place-info p {
        font-size: 0.9rem;
    }
    
    .map-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
        padding-top: 6rem;
        align-items: flex-start;
    }
    
    .hero-image {
        object-position: center center;
        /* Ensure full coverage on mobile */
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        padding: 0 1rem;
        margin-top: 2rem;
        width: 100%;
        position: relative;
        z-index: 10;
    }
    
    .hero-title {
        font-size: 2.8rem;
        font-weight: 900;
        letter-spacing: 0.02em;
        margin-bottom: 1rem;
        text-shadow: 
            0 6px 24px rgba(0, 0, 0, 0.9),
            0 3px 12px rgba(0, 0, 0, 1),
            0 1px 6px rgba(0, 0, 0, 1);
        color: #ffffff;
        display: block;
        visibility: visible;
        opacity: 1;
        line-height: 1;
        text-transform: uppercase;
        /* Remove background overlay */
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .hero-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.8),
            0 2px 8px rgba(0, 0, 0, 1);
        line-height: 1.3;
        /* Remove background overlay */
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        margin-top: 0.8rem;
    }
    
    .hero-overlay {
        background: radial-gradient(
            ellipse at center,
            transparent 5%,
            rgba(0, 0, 0, 0.3) 25%,
            rgba(0, 0, 0, 0.6) 55%,
            rgba(0, 0, 0, 0.85) 100%
        );
        z-index: 2;
    }
    
    .category-nav {
        padding: 1rem 0;
    }
    
    .dropdown-btn {
        min-width: 180px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .dropdown-icon {
        font-size: 1rem;
    }
    
    .dropdown-item {
        padding: 8px 14px;
    }
    
    .item-text {
        font-size: 0.85rem;
    }
    
    .section-container {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .image-slider {
        height: 180px;
    }
    
    .place-info {
        padding: 1rem;
    }
    
    .place-info h3 {
        font-size: 1.1rem;
    }
    
    .place-info p {
        font-size: 0.85rem;
    }
    
    .map-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}
