/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background-color: #f5f5dc;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    height: 100px;
    background-color: #005f47;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding-left: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a:focus {
    color: #adebad;
}

/* Main Content Styles */
main {
    padding: 2rem;
    background-color: #f5f5dc;
}

/* Footer Styles */
footer {
    padding: 1rem 2rem;
    background-color: #005f47;
    color: white;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

/* Image and Logo Styles */

.rhondas-chutney-page img {
    width: 20%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

#logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    float: left;
    margin-left: 20px; 
}

.intro-image img,
body > img,
main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.intro-image img:first-of-type {
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}

.intro-image img:not(:first-of-type) {
    margin: 10px auto;
    width: 50%;
    max-width: 300px;
}

/* Introduction Section Styles */
.intro {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.intro-text,
.intro-image,
.featured-recipe {
    flex: 1;
    min-width: 300px;
}

.intro .intro-text h1 {
    font-size: 3rem;
    text-align: center;
    width: 100%;
}

.intro .intro-text .recipe-link img {
    width: 240px;
    height: auto;
}
