/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Verdana, sans-serif;
    background-color: #456;
    color: yellowgreen;
    margin: 0;
    padding: 0;
    background-image: url('Background1952.jpg'); /* Background image for the body */
    background-size: cover;
    background-attachment: fixed;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #b2dfdb, #00796b);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid yellowgreen;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.logo {
    height: 100px;
    width: 200px;
    margin: 8px;
    float: left;
}

.site-name {
    display: inline-block;
    padding: 35px 0px;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    background-color: rgba(85, 85, 85, 0.8);
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav a {
    color: yellowgreen;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #555;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

nav a:hover {
    background-color: #777;
    transform: scale(1.1);
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Styles */
main {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main section {
    margin-bottom: 20px;
}

main h2 {
    color: #00796b;
    margin-bottom: 10px;
}

main p {
    margin-bottom: 15px;
    text-indent: 20px;
}

/* Blockquote Styles */
blockquote {
    font-style: italic;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 5px solid #004d40;
    background-color: rgba(224, 242, 241, 0.9);
    color: #004d40;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

blockquote cite {
    display: block;
    margin-top: 5px;
    text-align: right;
    font-weight: bold;
    color: #004d40;
}

/* Figure Styles */
figure {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #b2dfdb;
    border-radius: 8px;
    background-color: rgba(224, 242, 241, 0.9);
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

figure img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

figcaption {
    margin-top: 5px;
    font-style: italic;
    color: #004d40;
}

/* Aside Styles */
aside {
    background-color: rgba(68, 68, 68, 0.8);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

aside h2 {
    color: yellowgreen;
}

aside ul {
    list-style-type: square;
    margin-left: 20px;
}

aside li {
    margin-bottom: 10px;
    color: white;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #b2dfdb, #00796b);
    color: yellowgreen;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Add these styles to the existing homepage.css file */

/* Grid Styles for Photos and Icons */
.photo-grid, .icon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.photo-grid figure, .icon-grid i {
    flex: 1 1 calc(33.333% - 40px);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-grid img {
    max-width: 100%;
    border-radius: 8px;
}

.photo-grid figcaption, .icon-grid i {
    margin-top: 10px;
    color: #004d40;
    font-weight: bold;
}

/* Icon Styles */
.icon-grid i {
    font-size: 48px;
    color: #00796b;
}

