

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f3e9;
    color: #333;
}

/* Header styles with stylized banner */


header {
    background-image: url('img/ban.jpg'); /* Path to your background image */
    background-size: cover;
    border: 10px solid #d57a00; /* Warm color for header */
    padding: 40px; /* Padding around header content */
    text-align: center; /* Center align header text */
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem; /* Larger font for header */
    font-weight: bold;
    color: #fff; /* White text */

}

hr {
    border: 0;
    height: 2px; /* Thickness of the line */
    width: 60%; /* 60% of the container width */
    background-color: #333; /* Line color */
    margin: 20px auto; /* Center the line */
}

header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 10px 0;
}


/* Navigation menu styles */
nav ul {
    list-style-type: none; /* Remove bullet points from list */
    padding: 0; /* Remove padding */
}

/* Navigation items styles */
nav ul li {
    display: inline; /* Display list items inline */
    margin: 0 15px; /* Spacing between menu items */
}

/* Navigation link styles */
nav a {
    color: white; /* White text color for links */
    text-decoration: none; /* Remove underline from links */
    font-family: 'Montserrat', sans-serif; /* Font for navigation */
    text-transform: uppercase;
    font-size: 1rem;
}

/* Hover effect for navigation links */
nav a:hover {
    color: #ffcc00; /* Change link color on hover */
}

.author-image {
    top: 20px; /* Distance from the top of the viewport */
    background: #fff; /* Optional: to make it stand out */
    padding: 10px;
    border: 1px solid #ccc; /* Optional: for visual separation */
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
    margin: 20px 0; /* Spacing around author image */
    background-color: #d57a00;
}


.container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.column {
    flex: 1;
    margin: 0 20px;
}

/* About section text */
.column h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #d57a00;
}

.column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* About images */
.about-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

figcaption {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-top: 10px;
}

/* Footer styles */
footer {
    background-color: #d57a00;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
}

/* Responsive Design */

/* For screens smaller than 768px (Tablets and mobile devices) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }
    .column {
        margin: 20px 0;
    }
    header h1 {
        font-size: 2.5rem;
    }
    header p {
        font-size: 1rem;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    nav ul {
        padding: 10px 0;
    }
}

/* For screens smaller than 480px (Mobile devices) */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 0.9rem;
    }
    .container {
        padding: 10px;
    }
    .column h2 {
        font-size: 1.8rem;
    }
    nav ul li {
        margin: 5px 0;
    }
}

/* For larger screens (Desktops and wide displays) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    header {
        padding: 80px;
    }
    header h1 {
        font-size: 3.5rem;
    }
    header p {
        font-size: 1.5rem;
    }
    .column h2 {
        font-size: 2.5rem;
    }
}
