/* 
    This CSS file styles a the website for a professional and clean look.
    It contains styles for the body, header, navigation, main content, buttons, images, and footer.
*/

/* body styles for overall font and background */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9; /* Neutral light background */
    color: #333;
    line-height: 1.6; /* This line height improves readability */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles for header section */
header {
    background: #005f73; /* Dark teal for professionalism */
    color: #fff; 
    padding: 1rem 0; /* Vertical padding for header */
    text-align: center; /* Centered header text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* This section styles the navigation menu */
header nav ul {
    list-style: none; /* Remove default list styling */
    padding: 0; 
    margin: 0;
    display: flex; /* Flexbox for horizontal layout */
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Navigation link styles */
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

/* this section styles the hover effect for navigation links */
header nav ul li a:hover {
    color: #0a9396; /* Lighter teal */
}

/* Main content styles */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* h2 styles for section headings */
h2 {
    color: #005f73;
    text-align: center;
    margin-bottom: 1rem;
}

/* Button styles for call-to-action buttons */
button {
    background-color: #005f73;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Button hover effect */
button:hover {
    background-color: #0a9396; /* Slightly lighter teal */
}

/* Logo styles for resizing and centering */
.logo {
    max-width: 250px; /* Resize logo */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo horizontally */
}

/* About section image styles */
.about-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Individual image styles within the about section */
.about-images img {
    max-width: 200px; /* Reduce maximum width */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: none; /* Prevent flex resizing */
    max-width: 100%;
}

/* Image hover effect */
.about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Styling for the about-images2 section */
.about-images2 img {
    max-width: 500px; /* Reduce the maximum width */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the image */
}

/* Footer styles for footer section */
footer {
    background: #005f73;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Center the main text in the about section */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Importing additional fonts for the price list */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300italic,400');

/* Styling for the price list */
h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}

/* Adjusting the price list layout */
.item-wrapper {
    width: 80%; /* Slightly reduce width for better alignment */
    max-width: 600px;
    margin: 0 auto;
}

/* Adjusting image sizes */
.about-images img {
    max-width: 200px; /* Reduce maximum width */
    height: auto;
    flex: none; /* Prevent flex resizing */
}

/* Individual item styles within the price list */
.item {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensure proper alignment */
    flex-wrap: nowrap; /* Prevent wrapping */
    margin-top: 20px;
}

/* Item title styles */
.item .title {
    flex-grow: 1;
    font-size: 18px;
    text-align: left; /* Align titles to the left */
    flex: 1 1 100%;
}

/* Item price styles */
.item .price {
    font-size: 18px;
    text-align: right; /* Align prices to the right */
    flex: 1 1 100%;
}

/* Item description styles */
.description {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    width: 80%;
}

/* Responsive styles for all pages */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure sections adjust to smaller screens */
section {
    padding: 1rem;
}

/* Importing modular CSS files */
@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('pricing.css');


