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

/* Body */
body {
    font-family: 'Merriweather', serif;
    background-color: #121212; /* Dark background for dark mode */
    color: #e0e0e0; /* Light text color for readability */
    line-height: 1.7;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #f1f1f1; /* Light color for header text */
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Image Styling */
img {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Darker shadow for dark mode */
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.05);
}

/* Paragraph Styling */
p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
    color: #b0b0b0; /* Lighter gray for paragraph text */
    text-indent: 30px;
}

/* Strong/Emphasized Text */
strong {
    color: #ffa500; /* Bright color for emphasis */
    font-weight: bold;
}

em {
    color: #6a89cc; /* Softer blue for emphasis */
    font-style: italic;
}

/* Highlighted Text */
.highlight {
    color: #95a5a6;
    font-weight: bold;
}

/* Quotes Styling */
.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #acb1b3; /* Light gray for quote text */
    background-color: #1e2729; /* Dark background for quotes */
    padding: 15px;
    margin: 40px 0;
    border-left: 5px solid #9b59b6; /* Purple border for quote */
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.quote:hover {
    background-color: #353b48; /* Darker quote background on hover */
    border-color: #8e44ad; /* Lighter purple border on hover */
}

/* Footer */
footer {
    text-align: center;
    font-size: 1rem;
    color: #b0b0b0; /* Lighter text color for footer */
    margin-top: 50px;
    padding-top: 20px;
}

footer p {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        margin-top: 10px;
    }
}
