
/*
Theme Name: Mount Calvary International Worship Center
Author: ChatGPT
Version: 1.0
*/

body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#000;
    color:#fff;
}

.hero{
    background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('assets/gathering.jpg');
    background-size:cover;
    background-position:center;
    min-height:100vh;
    text-align:center;
    padding:40px 20px;
}

.logo{
    width:320px;
    max-width:90%;
    margin-bottom:20px;
}

h1{
    color:#d4af37;
    font-size:54px;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.tagline{
    font-size:22px;
    color:#f5f5f5;
    margin-bottom:40px;
}

.buttons{
    margin:30px 0;
}

.btn{
    display:inline-block;
    padding:16px 32px;
    margin:10px;
    border-radius:40px;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    transition:0.3s ease;
}

.live{
    background:#d4af37;
    color:#000;
}

.give{
    background:#111;
    color:#d4af37;
    border:2px solid #d4af37;
}

.btn:hover{
    transform:scale(1.05);
}

.section{
    padding:60px 20px;
    background:#050505;
}

.section h2{
    color:#d4af37;
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.card{
    background:#111;
    border:1px solid #d4af37;
    border-radius:20px;
    overflow:hidden;
    width:450px;
    box-shadow:0 0 25px rgba(212,175,55,.3);
}

.card img{
    width:100%;
    display:block;
}

.card-content{
    padding:20px;
}

.live-stream{
    padding:60px 20px;
    background:#000;
}

iframe{
    border-radius:20px;
    min-height:600px;
}

footer{
    text-align:center;
    padding:30px;
    background:#111;
    color:#d4af37;
    font-size:18px;
}
