/*reset basic margins*/
body{
    margin: 0;
    font-family: "poppins",sans-serif;
    background: #faf9f6;
    color:#333;
}
/*header and hero section*/
header{
    background:linear-gradient(to right,#d4af37,#f1c232);
    color:white;
    text-align: center;
    padding-bottom:4rem;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}
logo{
    font-size: 1.8rem;
    font-weight: bold;
}
nav a{
    color: white;
    text-decoration: none;
    margin:0 1rem;
    font-weight: 500;
}
nav a:hover{
    text-decoration: underline;
}
.hero{
    margin-top: 3rem;
    padding: 0 1rem;
}
.hero h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}
.hero p{
    font-size: 1.1rem;
    margin-bottom: 2rem ;
}
.btn:hover{
    background: #f1c232;
    color:white;
}
/*about section*/
.about{
    text-align: center;
    padding: 3rem 1.5rem;
}
.about h2{
    color:#d4af37;
    margin-bottom: 1rem;
}
/*verse section*/
.verse{
    background:#fffbe6;
    padding: 3rem 1.5rem;
    text-align: center;
}
.verse h2{
    color:#d4af37;
}
blockquote{
    font-style: italic;
    font-size: 1.2rem;
    margin: 1rem auto;
    max-width: 600px;
    color:#555;
}
/*footer*/
footer{
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
.hero h2{
font-size: 2.5rem;
margin-bottom:1rem;
text-shadow:0 0 15px rgba(255,215,0,0.8);
}
.hero p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10 px rgba(0,0,0,0.8);
}
h1 span {
    color: gold;
    text-shadow: 0 0 20px gold;
}
#rating-section{
    margin-top: 3rem;
    padding:2rem;
    background: #fff8e1;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
#rating-section h2{
    color: gold;
    margin-bottom: 1rem;
}
#stars{
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    user-select:none;
}
.star.active{
    color: gold;
    text-shadow:0 0 10px gold;
}
#rating message{
    margin-top:1rem;
    font-style: italic;
    color:#555
}
header{
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.3),
    ),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb')
    center/cover no repeat;
    color:white;
    text-align: center;
    padding-bottom: 6rem;
    background-attachment: fixed;
}
#testimonies{
    background: #4f32f1b9;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    max-width: 800px;
    margin-left:auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
}
#testimonies h2{
    color:gold;
    font-size: 2rem;
    margin-bottom: 1rem;
}
#testimonies p{
    color:#444;
    margin-bottom: 1rem;
}
#testimonyForm{
    display:flex;
    flex-direction:column;
    gap: 1rem;
    margin-bottom: 2rem;
}
#testimonyForm input,
#testimonyForm textarea{
    padding: 0.8rem;
    border:1px solid #ddd;
    border-radius:10px;
    font-size: 1rem;
    width:100%;
}
#testimonyForm button{
    background: gold;
    color:white;
    border:none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
#testimonyForm button:hover{
    background: #e6b800;
}
.testimony-card{
    background: white;
    border-left: 5px solid gold;
    margin-bottom: 1.2rem;
    padding:1rem 1.5rem;
    border-radius: 10px;
    text-align: left;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}
.testimony-card p{
    font-style: italic;
}
.testimony-card span {
    display:block;
    margin-top: 0.5rem;
    color:#777;
    text-align: right;
    font-size: 0.9rem;
}





