/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

/* Base */

body{
font-family:Arial, Helvetica, sans-serif;
background:linear-gradient(180deg,#0b1f3a,#1e4c7a,#3c82b8);
color:white;
text-align:center;
line-height:1.6;
}

/* Container */

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* Header */

header{
background:#00000070;
padding:10px 0;
position:sticky;
top:0;
z-index:100;
backdrop-filter:blur(8px);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

/* Logo */

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:60px;
height:60px;
object-fit:contain;
}

.logo h1{
font-size:20px;
}

.logo p{
font-size:14px;
color:#d8ecff;
}

/* Menu */

nav a{
margin:10px;
color:white;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#ffd54a;
}

/* Bible Button */

.bible{
background:#ffd54a;
color:#1a2d4a;
padding:8px 14px;
border-radius:8px;
}

/* Hero */

.hero{
padding:80px 20px;
}

.hero h2{
font-size:36px;
margin-bottom:10px;
}

.hero p{
color:#e5f2ff;
}

/* Sections */

section{
padding:60px 0;
}

section h2{
margin-bottom:20px;
font-size:28px;
}

/* Cards */

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

.card{
background:white;
color:#222;
padding:20px;
border-radius:12px;
min-width:150px;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
}

/* Gallery */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
padding:20px;
justify-items:center;
}

.gallery-item{
width:100%;
max-width:280px;
height:180px;
border:none;
background:transparent;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
transition:transform .2s;
}

.gallery-item img:hover{
transform:scale(1.03);
}

/* Empty gallery */

.empty-gallery{
background:rgba(255,255,255,0.1);
padding:20px;
border-radius:10px;
}

/* Map */

iframe{
width:90%;
height:400px;
border:none;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,0.3);
}

/* Footer */

footer{
padding:20px;
background:#00000060;
}

/* Lightbox */

#lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.92);
justify-content:center;
align-items:center;
z-index:9999;
padding:20px;
}

#lightbox-img{
max-width:95%;
max-height:90%;
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.4);
}

#close-lightbox{
position:absolute;
top:20px;
right:20px;
width:46px;
height:46px;
border:none;
border-radius:50%;
background:rgba(255,255,255,0.15);
color:white;
font-size:30px;
cursor:pointer;
}

/* WhatsApp Button */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.whatsapp:hover{
transform:translateY(-2px);
}

/* Responsive */

@media (max-width:900px){

.nav{
flex-direction:column;
align-items:flex-start;
}

.cards{
flex-direction:column;
align-items:center;
}

.gallery{
grid-template-columns:1fr;
}

}

@media (max-width:500px){

.hero h2{
font-size:26px;
}

.logo img{
width:50px;
}

}