:root {
    --dark-color: #000000; 
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #cccccc;
    --white: #ffffff;
    --gold-accent: #c4a037; 
    --dark-gold: #635222;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}
body a{
    color: black;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation Layout (Edge-to-Edge) --- */
header {
    padding: 20px 0;
    background: var(--white);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px; /* Moves Logo and Button to the far edges */
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img { height: 50px; }
.logo-text { font-weight: 700; margin-left: 10px; font-size: 1.2rem; }

header nav {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Centers the list in the middle */
}

header nav ul {
    display: flex;
    gap: 40px;
}

header nav ul li a {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

header nav ul li a.active, 
header nav ul li a:hover {
    font-weight: 700;
    color: var(--dark-color);
}

/* --- Burger Menu (Hidden by default) --- */
.menu-toggle {
    display: none; 
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Buttons (Bigger & Gold Touch) --- */
.btn {
    display: inline-block;
    padding: 14px 32px; 
    border-radius: 50px; 
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

/* Header Specific: Bigger Button */
header .btn {
    padding: 18px 55px; /* Significantly bigger */
    font-size: 1.15rem;
    flex-shrink: 0;
}

.btn-dark {
    color: var(--white);
    /* Gold-tinted radial gradient */
    background: radial-gradient(100% 100% at 50% 0%, var(--dark-gold) 0%, #000000 100%);
    border: 1px solid #4a3b10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: radial-gradient(100% 100% at 50% 0%, #856d2b 0%, #1a1a1a 100%);
    border-color: var(--gold-accent);
}

/* --- Main Sections --- */
.contact-hero { padding: 60px 0 80px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input { width: 100%; padding: 15px 25px; border: 1px solid var(--border-color); border-radius: 50px; outline: none; }
.form-group textarea { width: 100%; padding: 20px 25px; border: 1px solid var(--border-color); border-radius: 25px; outline: none; }

.checkbox-group { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.checkbox-group a { text-decoration: underline; }
/* --- Custom Checkbox Styling --- */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* Hide the default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* The custom box (The "container") */
.custom-checkbox {
    position: relative;
    display: block;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #000; /* Black background */
    border: 1px solid #4a3b10; /* Dark gold border */
    border-radius: 6px; /* Slightly rounded corners */
    transition: all 0.3s ease;
}

/* On hover, make the border brighter gold */
.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--gold-accent);
    box-shadow: 0 0 8px rgba(196, 160, 55, 0.2);
}

/* When checked, add the gold glow */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #000;
    border-color: var(--gold-accent);
}

/* Create the checkmark indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark (the actual 'L' shape) */
.custom-checkbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid var(--gold-accent); /* Gold checkmark */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-text {
    font-size: 0.95rem;
    color: var(--text-color);
}

.label-text a {
    text-decoration: underline;
    font-weight: 600;
}

.image-container img { width: 100%; border-radius: 30px; display: block; }

/* --- Details & Footer --- */
.contact-details {
    padding: 120px 0;
    border-top: 1px solid #eee;
}

.details-grid {
    display: flex; /* Changed to flex for better spreading */
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.detail-item {
    flex: 1;
    max-width: 320px; /* Limits width to keep text readable while spreading items */
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.detail-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-item p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.detail-link {
    font-weight: 700;
    text-decoration: underline;
    font-size: 1.15rem;
    color: var(--dark-color);
}

.detail-link:hover {
    color: var(--gold-accent);
}

footer { padding: 60px 0 30px; border-top: 1px solid var(--border-color); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.social-icons { display: flex; gap: 20px; }
.social-icons a { font-size: 1.4rem; color: var(--dark-color); transition: 0.3s; }
.social-icons a:hover { color: var(--gold-accent); transform: scale(1.2); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid #eee; font-size: 0.9rem; }

/* --- Mobile View (768px and below) --- */
@media (max-width: 768px) {
    .nav-wrapper { padding: 0 25px; }
    .menu-toggle { display: block; } /* Burger appears only on mobile */
    
    header nav {
        display: none; /* Hidden on mobile by default */
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: #fff; padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    header nav.active { display: block; }
    header nav ul { flex-direction: column; text-align: center; gap: 20px; }
    
    header .btn { display: none; } /* Hides "Get Started" to make room for Burger */
    
    .contact-grid, .details-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-header h1 { font-size: 2.5rem; }
    .footer-top, .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
     .details-grid{
        display: flex;
        flex-direction: column;
    }
}






/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

/* Layout Container */
.gallery-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
}

/* Header Styling */
.header-content {
    text-align: center;
    margin-bottom: 60px;
}

.label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.title {
    font-size: 48px; /* Big bold title */
    font-weight: 800;
    /* Dark Olive Green from screenshot */
    color: #2F3808; 
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
}

/* THE GRID SYSTEM 
   We use 12 columns to allow for easy division by 2 or 3.
*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px; /* Matches the whitespace in screenshots */
}

/* Card Base Style */
.card {
    position: relative;
    border-radius: 35px; /* Heavy rounding like screenshots */
    overflow: hidden;
    height: 340px; /* Fixed height for consistent look */
    background: #f0f0f0;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures photos fill the box perfectly */
    display: block;
}

/* SIZING CLASSES 
*/

/* Wide cards span 6 columns (12/6 = 2 items per row) */
.wide {
    grid-column: span 6;
}

/* Normal cards span 4 columns (12/4 = 3 items per row) */
.normal {
    grid-column: span 4;
}


/* Responsive Mobile Styles */
@media (max-width: 900px) {
    /* On tablet, everything becomes 2 per row */
    .wide, .normal {
        grid-column: span 6; 
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 32px;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .card {
        width: 100%;
        height: 280px;
        border-radius: 25px;
    }
}






/* --- RESET & VARIABLES --- */
:root {
    --primary-green: #1a2902; /* Deep Olive Green */
    --text-dark: #111111;
    --text-gray: #4a4a4a;
    --bg-white: #ffffff;
    --bg-light: #f4f4f4;
    --marker-black: #000000;
    --radius-large: 32px; /* Large rounded corners from screenshot */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif; /* Cleaner font */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--marker-black);
}

.sub-heading {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mb-large { margin-bottom: 60px; }
.border-top { border-top: 1px solid #eaeaea; }
.bg-gray { background-color: #f0f2f5; }

/* Images */
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-large);
}

/* --- HERO / WHO WE ARE --- */
.hero-image-wrapper {
    margin-top: 40px;
    height: 500px;
    width: 100%;
}

/* --- FOCUS AREAS (TIMELINE) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.split-image {
    height: 600px; /* Matches height of list roughly */
}

/* The Timeline Logic */
.timeline-item {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 50px; /* Space for the line */
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* The Vertical Line */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px; /* Center of the 48px circle */
    top: 48px;  /* Start right below circle */
    bottom: 0;
    width: 2px;
    background-color: #000;
    transform: translateX(-50%);
}

.timeline-marker {
    width: 48px;
    height: 48px;
    background-color: var(--marker-black);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 2; /* Sit on top of line */
}

.timeline-content {
    padding-top: 5px; /* Align text with circle */
}

/* --- GALLERY GRID --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Left side slightly wider */
    gap: 24px;
    height: 600px; /* Fixed height for the grid */
}

.gallery-tall {
    height: 100%;
}

.gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.gallery-small {
    flex: 1; /* Each takes 50% height */
    overflow: hidden;
    border-radius: var(--radius-large);
}

/* --- FOOTER --- */
footer {
    padding: 40px 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    h2 { font-size: 2.2rem; }
    
    .split-layout {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
    }

    .split-image { height: 350px; }

    .gallery-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        height: auto;
    }

    .gallery-tall { height: 400px; }
    .gallery-stack { height: auto; }
    .gallery-small { height: 300px; }
    
    /* Hide timeline line on mobile for cleaner look? 
       Or keep it. Let's keep it but adjust spacing. */
    .timeline-item { padding-bottom: 40px; }
}






/* --- RESET & GLOBAL VARIABLES --- */
:root {
    --primary-text: #1a1a1a;
    --secondary-text: #4a4a4a;
    --accent-color: #2e3b1f; /* Dark Olive/Green tone from screenshots */
    --accent-gradient: linear-gradient(90deg, #1a1a1a 0%, #3e3e00 100%);
    --button-bg: #1f2512;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-radius-lg: 30px;
    --border-radius-sm: 8px;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--primary-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    color: var(--button-bg); /* Dark tone */
    line-height: 1.2;
}

p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px; /* Pill shape */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--button-bg);
    background: linear-gradient(to right, #000, #333); /* Subtle gradient look */
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: var(--primary-text);
}

.btn-outline:hover {
    border-color: var(--primary-text);
    background-color: #f5f5f5;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-text);
}

/* --- SECTION 1: HERO (Honoring a Legacy) --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 60px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero h1 span {
    color: #4a4a00; /* Gold/Olive tone */
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    background-color: #e0e0e0;
}

/* --- SECTION 2: ABOUT (Legacy of Hope) --- */
.about-header {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f2512;
}

.about-image-wrapper {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SECTION 3: GALLERY --- */
.gallery-header {
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- SECTION 4: CONTACT --- */
.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-image-wrapper {
    flex: 1;
}

.contact-image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    height: auto;
    object-fit: cover;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-text);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 50px; /* Pill shape for inputs */
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 150px;
}

.form-control:focus {
    border-color: var(--accent-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
}

.terms-link {
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}



.footer-nav ul {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .hero, .contact-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image, .contact-form-wrapper, .contact-image-wrapper {
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}




