body{
    background-color: rgb(15, 18, 218);
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&family=Playfair+Display:wght@700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
}

/* Hero Section */

#intro{
    height:100vh;
    background-image:url("../images/pray.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.60);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.content{
    width:80%;
    max-width:850px;
    color:white;
}

.content h3{
    color:#FFD700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:15px;
    font-size:18px;
}

.content h1{
    font-family:'Playfair Display',serif;
    font-size:60px;
    margin-bottom:25px;
}

.content blockquote{
    font-size:26px;
    font-style:italic;
    line-height:1.7;
    margin-bottom:15px;
    color:#f3f3f3;
}

.content h4{
    color:#FFD700;
    margin-bottom:30px;
    font-weight:500;
}

.content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

/* Button */

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#FFD700;
    color:#222;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:.4s;
}

.btn:hover{
    background:#ffffff;
    color:#2c3e50;
    transform:translateY(-5px);
}
/* #topics{
    width: 100%;
    height: 350px;
    background-color: dimgrey;
    display: flex;
} */
/* .topic1{
    width: 30%;
    height: 300px;
    background-color: aqua;
}
.topic2{
    width: 30%;
    height: 300px;
    background-color: bisque;
}
.topic3{
    width: 30%;
    height: 300px;
    background-color: darkgreen;
} */
 /* Topics Section */

#topics{
    width:90%;
    height: 600px;
    margin:80px auto;

    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.topic{
    flex:1;
    min-width:300px;
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    transition:.4s;
}

.topic:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.topic img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.topic-content{
    padding:25px;
}

.topic h2{
    color:#2e7d32;
    margin-bottom:15px;
    font-size:28px;
}

.topic p{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:#2e7d32;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    transition:.3s;
}

.btn:hover{
    background:#f4b400;
    color:#222;
}
/* #theme{
    width: 100%;
    height: 200px;
    background-color: brown;
    display: flex;
} */

/* ===============================
   THEME SECTION
==================================*/

#theme{
    width:90%;
    max-width:1200px;
    margin:80px auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

/* IMAGE */

/* .theme-image{
    flex:1;
    
}

.theme-image img{
     width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
} */
.theme-image{
    height:100%;
}

.theme-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:20px;
}
.theme-image img:hover{
    transform:scale(1.03);
}


/* CONTENT */

.theme-content{
    flex:1;
}

.theme-tag{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.theme-content h2{
    font-size:42px;
    color:#1f3b57;
    margin-bottom:15px;
    font-family:Georgia, serif;
}

.line{
    width:90px;
    height:4px;
    background:#d4af37;
    margin-bottom:25px;
    border-radius:10px;
}

.theme-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}


/* QUOTE */

.theme-content blockquote{
    background:#f8f8f8;
    border-left:6px solid #d4af37;
    padding:25px;
    font-style:italic;
    font-size:18px;
    line-height:1.8;
    color:#444;
    border-radius:10px;
    margin-bottom:35px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}


/* BUTTON */

.btn-theme{
    display:inline-block;
    text-decoration:none;
    background:#1f3b57;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.4s;
}

.btn-theme:hover{
    background:#d4af37;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(212,175,55,.35);
}


/* RESPONSIVE */

@media(max-width:992px){

   #theme{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:stretch;
}

    /* .theme-image img{
        height:450px;
    } */

    .theme-content h2{
        font-size:34px;
        text-align:center;
    }

    .theme-tag{
        display:table;
        margin:0 auto 20px;
    }

    .line{
        margin:0 auto 25px;
    }

    .theme-content p{
        text-align:center;
    }

    .theme-content blockquote{
        font-size:17px;
    }

    .btn-theme{
        display:block;
        width:220px;
        margin:0 auto;
        text-align:center;
    }

}


@media(max-width:600px){

    #theme{
        width:95%;
        padding:20px;
        margin:50px auto;
    }

    .theme-image img{
        height:300px;
    }

    .theme-content h2{
        font-size:28px;
    }

    .theme-content p{
        font-size:16px;
    }

    .theme-content blockquote{
        font-size:16px;
        padding:20px;
    }

    .btn-theme{
        width:100%;
    }

}
.morning{
    width: 60%;
    height: 200px;
    background-color: yellow;
}
.evening{
    width: 60%;
    height: 200px;
    background-color: #f7f7f7;
}
#theme img{
    width: 100%;
    height: 180px;
}