/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

header h1 {
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #007BFF;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007BFF;
}

/* Hero Section */
.hero {
    background: url('./img/lilypad1_en.jpg') center/cover no-repeat;
    padding: 120px 20px 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    max-width: 800px;
}

/* Section Base */
section {
    padding: 80px 20px;
    margin-top: 40px;
}

/* About Section */
.about {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(42, 153, 42, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.about img {
    width: 200px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px;
}


.about h2,
.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007BFF;
}

.about p,
.contact p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
    clear: both;
}

/* Partners Section */
.partners-projects {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(127, 255, 212, 0.15);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.partners-projects h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007BFF;
}

.partners-projects ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Gallery */
.gallery {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(127, 255, 212, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.gallery h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007BFF;
}

.image-viewer {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.image-viewer img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #f0f0f0; /* soft background behind image */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.controls {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.controls button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.controls button:hover {
    background-color: #0056b3;
}

/* Contact Section */
.contact {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(30, 94, 30, 0.1);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.contact a img {
    margin: 0 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.contact a img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
}

footer a {
    color: #00ccff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
