/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a0dad; /* A shade of purple */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #6a0dad;
}

/* Main Content Styling */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Home Page Hero Section */
#home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #6a0dad;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.tablet-image,
.mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tablet-image {
    width: 600px; /* Adjust as needed */
}

.mobile-image {
    width: 200px; /* Adjust as needed */
}

/* Poses Page Gallery */
#poses-gallery h1 {
    text-align: center;
    color: #6a0dad;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.pose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pose-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.pose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pose-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.pose-item p {
    font-size: 0.9rem;
    color: #555;
}

/* About Us Section */
#about-us {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

#about-us h1 {
    color: #6a0dad;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.member-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #6a0dad;
}

.member-card h2 {
    color: #6a0dad;
    margin-top: 0;
    margin-bottom: 10px;
}

.member-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
}

.contact-info a {
    color: #6a0dad;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
    }

    nav ul li {
        margin: 0 10px;
    }

    #home-hero {
        flex-direction: column;
    }

    .hero-images {
        flex-direction: column;
        gap: 15px;
    }

    .tablet-image,
    .mobile-image {
        width: 90%; /* Adjust for smaller screens */
    }

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

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

    .pose-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .member-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    nav ul li {
        margin: 0 5px;
    }

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

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

    #poses-gallery h1,
    #about-us h1 {
        font-size: 1.8rem;
    }
}
