/* 
 * Linking Shores Website Styles
 * Simple, clean design that's easy to edit
 */

/* ===== BASIC RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:hover {
    color: #0066cc;
}

/* ===== SECTIONS ===== */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #666;
}

/* ===== VISION SECTION ===== */
.vision {
    background-color: #f5f5f5;
}

/* ===== DIVIDED / CONNECTED SECTIONS ===== */
.divided, .connected {
    text-align: center;
}

.divided img, .connected img {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Benefits grid */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    background-color: #0066cc;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: bold;
}

/* ===== PROJECT SECTIONS ===== */
.project {
    background-color: #f9f9f9;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.project:nth-child(even) {
    background-color: #fff;
}

.project img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
}

/* Project grid for footbridge section */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.solution {
    text-align: center;
}

.solution img {
    width: 100%;
    max-width: 280px;
}

/* Project images side by side */
.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

/* Safe paths layout */
.safe-paths-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.safe-paths-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* ===== SUPPORTERS SECTION ===== */
.supporters {
    text-align: center;
}

.supporter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.supporter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.supporter img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.supporter a {
    color: #0066cc;
    text-decoration: none;
}

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

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #f5f5f5;
    text-align: center;
}

.contact h3 {
    margin-top: 2rem;
}

/* Contact form */
form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

textarea {
    resize: vertical;
}

button {
    background-color: #0066cc;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #0052a3;
}

/* Share buttons */
.share {
    margin-top: 3rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.share-buttons a {
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
}

.share-buttons a:hover {
    background-color: #0052a3;
}

/* ===== FOOTER ===== */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Stack navigation on mobile */
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Make grids single column on mobile */
    .project-grid,
    .safe-paths-content,
    .project-images {
        grid-template-columns: 1fr;
    }
    
    /* Smaller text on mobile */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Reduce padding on mobile */
    section {
        padding: 2rem 1rem;
    }
}
