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

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

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

/* Header and Navigation */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

/* Custom Logo Styles */
.custom-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db 0%, #8e44ad 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.logo-icon-box svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.logo-accent {
    font-weight: 700;
    background: linear-gradient(135deg, #3498db 0%, #8e44ad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Section */
.filter-section {
    background-color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-section h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #3498db;
    background-color: white;
    color: #3498db;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #3498db;
    color: white;
}

/* Places Section */
.places-section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
}

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

/* Place Card */
.place-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.place-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.place-image .place-icon {
    font-size: 3rem;
}

.place-content {
    padding: 1.5rem;
}

.place-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.place-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #3498db;
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.place-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.read-more {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.modal-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.modal-image .modal-icon {
    font-size: 4rem;
}

.modal-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modal-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: white;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.modal-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.modal-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.modal-info p {
    color: #666;
    margin-bottom: 0.3rem;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-section p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% 20px;
        padding: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile logo adjustments */
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon-box {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon-box svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .custom-logo {
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-icon-box {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon-box svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}