body{
    background-color: grey
    margin 0;
}
#intro {
    width: 100%;
    height: 250px;
    background-image: url(../images/chapel.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

#intro h1 {
    color: white;
    font-size: 2.5rem;
    font-family: Georgia, serif;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

#intro p {
    color: #f5f5f5;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* Topics Section */
#topics{
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* Topic Cards */
.topic{
    background: #ffffff;
    width: 340px;
    min-height: 430px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

/* Hover Effect */
.topic:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Images */
.topic img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Headings */
.topic h2{
    color: #444;
    text-align: center;
    font-size: 20px;
    margin: 20px 15px 10px;
}

/* Paragraphs */
.topic p{
    color: #4a8aa5;
    font-size: 17px;
    text-align: center;
    line-height: 1.7;
    padding: 0 20px 25px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1100px){
    #topics{
        justify-content: center;
    }
}

@media (max-width: 768px){
    .topic{
        width: 100%;
        max-width: 400px;
    }

    .topic h2{
        font-size: 22px;
    }

    .topic p{
        font-size: 16px;
    }
}
/* Main Section */
#adoration{
    max-width:1200px;
    margin:60px auto;
    display:flex;
    align-items:center;
    gap:40px;
    padding:30px;
    background:#f7f7f7;
}

/* Image */
.adoration-image{
    flex:1;
   height: 400px;
}

.adoration-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

/* Content */
.adoration-content{
    flex:1;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(128,128,128,.18);
}

.adoration-content h2{
    color:#333;
    font-size:2rem;
    margin-bottom:20px;
    border-left:5px solid #c8a96a;
    padding-left:15px;
}

.adoration-content p{
    color:#555;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
    text-align:justify;
}

/* Button */
.read-btn{
    display:inline-block;
    padding:12px 28px;
    background:#6b6b6b;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
}

.read-btn:hover{
    background:#444;
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:768px){

    #adoration{
        flex-direction:column;
        padding:20px;
    }

    .adoration-content,
    .adoration-image{
        width:100%;
    }

    .adoration-content h2{
        font-size:1.7rem;
    }
}
/* Gallery Container */
.galary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Images */
.galary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.galary img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .galary {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .galary img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .galary {
        grid-template-columns: 1fr;
    }

    .galary img {
        height: 250px;
    }
}
/* Prayer Time Section */
#formation {
    max-width: 700px;
    margin: 40px auto;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Heading */
#formation h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Table */
#formation table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
}

/* Header */
#formation th {
    background: #2c7a4b;
    color: white;
    padding: 15px;
    font-size: 18px;
    text-transform: capitalize;
}

/* Table Cells */
#formation td {
    padding: 15px;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #ddd;
}

/* Zebra Rows */
#formation tr:nth-child(even) {
    background: #f4f4f4;
}

/* Hover Effect */
#formation tr:hover {
    background: #dff3e4;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    #formation {
        padding: 15px;
    }

    #formation h3 {
        font-size: 22px;
    }

    #formation th,
    #formation td {
        padding: 10px;
        font-size: 15px;
    }
}
Parent Container
.adoration-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 10%;
    background: #f8f8f8;
    flex-wrap: wrap;
}

/* Image Card */
.adoration-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.adoration-image img {
    width: 100%;
    display: flex;
    border-radius: 10px;
}

/* Content Card */
.adoration-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.adoration-content h2 {
    color: #6b4c1e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.adoration-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}



