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

:root {
    /* Color Palette */
    --primary-blue: #1a3a5c;
    --secondary-blue: #2c5f8d;
    --accent-gold: #c9a96e;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

.hero-overlay {
    width: 100%;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.prepared-by {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.committee {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-subtitle .church-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-subtitle .address {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-badge {
    background: var(--bg-white);
    color: var(--primary-blue);
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid var(--accent-gold);
}

.proposal-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.church-name-badge {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.confidential {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.7;
}

/* ===========================
   OVERVIEW SECTION
   =========================== */
.overview {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-block {
    margin-bottom: 40px;
}

.text-block p {
    margin-bottom: 20px;
    text-align: justify;
}

.mission-section {
    margin: 50px 0;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-gold);
}

.mission-block {
    margin-bottom: 30px;
}

.mission-block:last-child {
    margin-bottom: 0;
}

.mission-block h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
}

.mission-block ol {
    margin-left: 25px;
}

.mission-block ol li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.founders-section {
    margin-top: 50px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.founders-intro {
    margin-bottom: 20px;
    text-align: center;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.founder-column ol {
    margin-left: 25px;
}

.founder-column ol li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===========================
   ACTIVITIES SECTION
   =========================== */
.activities {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-category {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--accent-gold);
}

.activity-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.activity-category h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.4;
}

.activity-category ul {
    list-style: none;
}

.activity-category ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.activity-category ul li:last-child {
    border-bottom: none;
}

.activity-category ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===========================
   PURCHASE SECTION
   =========================== */
.purchase {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.purchase-content {
    max-width: 900px;
    margin: 0 auto;
}

.purchase-text {
    margin-bottom: 50px;
}

.purchase-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.purchase-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ===========================
   LOCATION SECTION
   =========================== */
.location {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-details {
    text-align: center;
    margin-bottom: 40px;
}

.address-large {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.8;
    margin-bottom: 15px;
}

.coordinates {
    font-size: 1rem;
    color: var(--text-dark);
    font-family: monospace;
    opacity: 0.8;
}

.map-placeholder {
    background: var(--bg-white);
    height: 400px;
    border-radius: 10px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.location-description {
    margin-top: 40px;
}

.location-description p {
    text-align: justify;
    line-height: 1.8;
}

/* ===========================
   BUDGET SECTION
   =========================== */
.budget {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.budget-content {
    max-width: 900px;
    margin: 0 auto;
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.budget-table thead {
    background: var(--primary-blue);
    color: var(--text-light);
}

.budget-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.budget-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.budget-table tbody tr:hover {
    background: var(--bg-light);
}

.budget-table .total-row {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.budget-table .shortage-row {
    background: #fff3cd;
    font-weight: 700;
    color: #856404;
    font-size: 1.1rem;
}

.donation-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-gold);
}

.donation-info h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

.bank-details {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bank-details p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.bank-details p:last-child {
    margin-bottom: 0;
}

.social-media {
    text-align: center;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ===========================
   FLOORPLAN SECTION
   =========================== */
.floorplan {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-weight: 600;
}

.floorplan-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.floorplan-image .image-placeholder {
    height: 600px;
}

.floorplan-legend {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.floorplan-legend ol {
    margin-left: 25px;
}

.floorplan-legend ol li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* ===========================
   INTERIOR SECTION
   =========================== */
.interior {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===========================
   CLOSING SECTION
   =========================== */
.closing {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.closing-content {
    max-width: 900px;
    margin: 0 auto;
}

.verse {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.verse .quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.verse .reference {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
}

.closing-message {
    margin-bottom: 50px;
}

.closing-message p {
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}

.closing-message .social-media {
    margin-top: 30px;
}

.contact-info {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===========================
   IMAGE PLACEHOLDERS
   =========================== */
.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
}

.image-placeholder.large {
    min-height: 500px;
}

.image-placeholder p {
    text-align: center;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floorplan-content {
        grid-template-columns: 1fr;
    }
    
    .interior-gallery {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        padding: 30px 40px;
    }
    
    .proposal-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .mission-section,
    .founders-section {
        padding: 30px 20px;
    }
    
    .activity-category {
        padding: 30px 25px;
    }
    
    .purchase-images {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .budget-table {
        font-size: 0.9rem;
    }
    
    .budget-table th,
    .budget-table td {
        padding: 15px 10px;
    }
    
    .donation-info {
        padding: 25px 20px;
    }
    
    .bank-details {
        padding: 20px;
    }
    
    .verse {
        padding: 30px 20px;
    }
    
    .verse .quote {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle .church-name {
        font-size: 1rem;
    }
    
    .hero-subtitle .address {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .budget-table {
        font-size: 0.8rem;
    }
    
    .budget-table th,
    .budget-table td {
        padding: 12px 8px;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
strong {
    font-weight: 600;
    color: var(--primary-blue);
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}
