/* About page specific styling */
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #7bbf7b; /* Soft green for a natural, calming feel */
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Navbar links container */
.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin-left: 2rem;
}

/* Navbar links styling */
.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #ffffff; /* White text */
    transition: color 0.3s ease-in-out;
}

/* Hover effect for links */
.nav-links a:hover {
    color: #f4a261; /* A warm orange color */
}

/* Responsive design: Align navbar links vertically on smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
}
h1 {
    /* centre */
    text-align: center;
    margin-bottom: 10px;
}

/* About Me Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.owner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.owner-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.bio a {
    color: #5c9e5a;
    text-decoration: none;
}

.bio a:hover {
    text-decoration: underline;
}

/* Style for embedded YouTube video */
.video-container {
    margin-top: 2rem;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
}


footer {
    text-align: center;
    padding: 1rem;
    background-color: #7bbf7b; /* Soft green background for the footer */
    color: white;
    margin-top: 260px;
}