/* ==================================
TRUE WORSHIPERS
UPPER ROOM EXTRA FEATURES
================================== */

/* COMMON SECTION STYLE */

.prayer-altar,
.worship-room,
.devotional,
.prayer-wall{

padding:100px 20px;
text-align:center;

}



/* PRAYER ALTAR */

.prayer-altar{

background:#050B18;

}

.prayer-altar h2{

color:#FFD700;
margin-bottom:20px;

}

.prayer-altar p{

max-width:700px;
margin:0 auto 40px;
line-height:1.8;

}

.prayer-altar form{

max-width:650px;
margin:auto;

}

.prayer-altar input,
.prayer-altar textarea{

width:100%;
padding:16px;
margin:12px 0;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,215,0,.5);

border-radius:12px;

color:white;

outline:none;

font-size:16px;

transition:.3s;

}

.prayer-altar input:focus,
.prayer-altar textarea:focus{

border-color:#FFD700;

box-shadow:0 0 15px rgba(255,215,0,.4);

}

.prayer-altar textarea{

height:180px;
resize:vertical;

}



/* WORSHIP ROOM */

.worship-room{

background:#081326;

}

.worship-room h2{

color:#FFD700;
margin-bottom:20px;

}

.worship-room p{

max-width:700px;
margin:0 auto 30px;
line-height:1.8;

}

audio{

width:100%;
max-width:650px;

border-radius:12px;

}



/* DEVOTIONAL */

.devotional{

background:#050B18;

}

.devotional h2{

color:#FFD700;
margin-bottom:35px;

}



/* PRAYER WALL */

.prayer-wall{

background:#081326;

}

.prayer-wall h2{

color:#FFD700;

margin-bottom:20px;

}

.wall-card{

max-width:700px;

margin:20px auto;

padding:25px;

background:rgba(255,255,255,.05);

border-left:5px solid #FFD700;

border-radius:15px;

transition:.4s;

}

.wall-card:hover{

transform:translateY(-8px);

box-shadow:0 0 20px rgba(255,215,0,.35);

}



/* BUTTONS */

.prayer-altar .btn,
.worship-room .btn{

margin-top:20px;

}



/* MOBILE */

@media(max-width:768px){

.prayer-altar,
.worship-room,
.devotional,
.prayer-wall{

padding:70px 15px;

}

.wall-card{

padding:20px;

}

}