/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-image: url('https://source.unsplash.com/1600x900/?light,sky');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
}

header .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
}

header .hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section.light-background {
    background-color: #f4f4f9;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
}

/* Blockquote */
blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 40px 0;
    color: #666;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-left: 5px solid #ffd700;
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 20px auto;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #555;
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #333;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .hero h1 {
        font-size: 2.5rem;
    }

    header .hero p {
        font-size: 1.2rem;
    }

    nav ul {
        top: 10px;
        right: 10px;
    }
}

/* God's Attributes */
.attribute-card {
    max-width: 800px;
    margin: 20px auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.attribute-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
}

.attribute-card p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 40px 0;
    color: #666;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-left: 5px solid #ffd700;
}
