/* style3.css - Floral/Vegetative Theme */

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;/* Friendly sans-serif */
    background-color: #f7f2e7; /* Soft beige background */
    color: #4a4a4a; /* Charcoal gray text */
    margin: 0;
    padding: 0;
    line-height: 1.7;
    /* Subtle floral background (optional) */
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h42v42H0z' fill='%23f7f2e7'/%3E%3Cpath d='M6 4.5L3.5 7 0 9.5l2.5 2.5L6 14.5l2.5-2.5L11 9.5 8.5 7 6 4.5zm18 18L21.5 25 18 27.5l2.5 2.5L24 32.5l2.5-2.5L29 27.5 26.5 25 24 22.5zm18-18L39.5 7 36 9.5l2.5 2.5L42 14.5l2.5-2.5L47 9.5 44.5 7 42 4.5zM12 30l-2.5 2.5L8 35l2.5 2.5L12 40l2.5-2.5L17 35 14.5 32.5 12 30z' fill='%23dcd5c6'/%3E%3C/g%3E");
}

.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    font-family: 'Lora', serif; /* Elegant serif for headings */
    color: #556b2f; /* Olive green heading color */
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: #8fbc8f; /* Light green link color */
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid rgba(143, 188, 143, 0.3); /* Understated underline */
}

a:hover {
    color: #3cb371; /* Medium sea green on hover */
    border-bottom: 2px solid #3cb371;
}

hr {
    border: none;
    height: 4px;
    background-color: #c1cdc1; /* Light gray-green hr */
    margin: 35px 0;
    border-radius: 4px;
}

/* Header */
header {
    text-align: left;
    padding: 3rem 0;
    border-bottom: 2px dashed #a2b494; /* Dashed border */
}

header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.4rem;
    color: #778877; /* Muted green subtitle */
    font-style: italic;
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.gallery img {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid #f0fff0; /* Floral white border */
}

.gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Image Item (for Captions) */
.image-item {
    text-align: left;
}

.caption {
    font-size: 1.1rem;
    color: #556b2f; /* Olive green caption */
    margin-top: 0.8rem;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 3.5rem;
    border-top: 2px dashed #a2b494;
    color: #778877;
    font-size: 0.95rem;
}

footer a {
    color: #778877;
}

footer a:hover {
    color: #2e8b57; /* Sea green hover for footer links */
}

/* Section Titles */
section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px dotted #a2b494; /* Dotted border */
    padding-bottom: 0.7rem;
}
