/* Common styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Lightbox styles */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Fitness Website Styles */
.fitness {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 3rem;
    text-align: center;
}

.fitness h1 {
    color: #2c3e50;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fitness .subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.fitness .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fitness .program {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.fitness .program:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.fitness .program img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.fitness .program h3 {
    color: #2c3e50;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.fitness .program p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Coffee Shop Styles */
.coffee-shop {
    background-color: #2c1810;
    color: #fff;
    padding: 2rem;
}

.coffee-shop .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Travel Blog Styles */
.travel-blog {
    background-color: #ffffff;
    padding: 2rem;
}

.travel-blog .posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Art Gallery Styles */
.art-gallery {
    background-color: #000;
    color: #fff;
    padding: 2rem;
}

.art-gallery .artwork {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}