body{
    
    margin: 0;
}

#intro{
    width: 100%;
    height: 550px;
    background-image: url(../images/fashion.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

#intro h1{
color: #ffffff;
font-size: 4opx;
font-style: italic;
margin-top: 80px;
padding-bottom: 100px;
}
#intro p{
    font-size: 14px;
    color: white;
}
#baldogarments{
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    border: 30px;

}
.baldo1 img{
    width: 50%;
    height: 200px;
}
.baldo1 p{
    font-size: px;
    color: blue;
    
}
.baldo1{
    width: 30%;
    height: 300px;
    
    
}
.baldo2 img{
    width: 70%;
    height: 220px;
}
.baldo2{
    width: 30%;
    height: 300px;
    
    
}
.baldo3{
    width: 30%;
    height: 300px;
}
.baldo3 img{
    width: 80%;
    height: 200px;

}
#members{
    width: 100%;
    height: 350px;
    
display: flex;
margin-top: 15px;
}
.ladys img{
    width: 50%;
    height: 120px;

}
.ladys{
    width: 40%;
    height: 120px;
    
}
.gents{
   width: 30%;
    height: 300px;
    background-color: rgb(30, 168, 210);   
}
.supoorting staff{
    display: flex;
}
/* Gallery Container */
.gally {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background-color: #f5f5f5;
}

/* Gallery Images */
.gally img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.gally img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gally img {
        width: 45%;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .gally img {
        width: 100%;
        height: 220px;
    }
}
/* General page styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 30px;
}

/* Activities Section */
#activites {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Heading */
#activites h3 {
    text-align: center;
    color: #0d6efd;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Table */
#activites table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
}

/* Table Header */
#activites th {
    background-color: #0d6efd;
    color: white;
    padding: 15px;
    text-transform: capitalize;
    font-size: 18px;
}

/* Table Cells */
#activites td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 17px;
    color: #333;
}

/* Alternate Row Color */
#activites tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover Effect */
#activites tr:hover {
    background-color: #dbeafe;
    transition: 0.3s ease;
}

/* Responsive Table */
@media (max-width: 768px) {
    #activites {
        padding: 15px;
    }

    #activites h3 {
        font-size: 22px;
    }

    #activites th,
    #activites td {
        padding: 10px;
        font-size: 14px;
    }
}