* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f6f6f6;
}

/* NAVBAR CONTAINER */
.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(0, 0, 0, 0); 
    transition: background 0.4s ease;
	padding: 10px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    transition: background-color 0.4s ease;
}

.navbar:not(.scrolled) .nav-brand img {
	filter: brightness(1000%);
    opacity: 1;
}

/* When scrolled — show normal logo colours */
.navbar.scrolled .nav-brand img {
    filter: none;
    opacity: 1;
}


/* BRAND */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 60px;
    width: auto;
    display: block;
	transition: filter 0.4s ease, opacity 0.4s ease;
}




/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* HIDE CHECKBOX */
.nav-toggle {
    display: none;
}

.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
	filter: brightness(0.6);
}

/* tagline text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

	font-family: "Open Sans", serif;
	font-weight: 400;
	font-style: normal;
    color: white;
    font-size: 3.2rem;
    letter-spacing: 1px;
    text-align: center;

    width: 90%;
    max-width: 900px;

    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* Founders Statement */
/* Founder Section */
.founder {
    padding: 80px 20px;
    background: #ffffff;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Founder photo (optional) */
.founder-image img {
    width: 260px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
	margin-top: 50px;
}

/* Text column */
.founder-text {
    flex: 1;
}

.founder-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-family: "Open Sans", serif;
    color: #222;
}

.founder-text p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

.founder-signoff {
    margin-top: 25px;
    font-style: italic;
    text-align: right;
    font-size: 1rem;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 800px) {
    .founder-container {
        flex-direction: column;
        text-align: left;
		
        align-items: center;
    }

    .founder-image img {
        width: 100%;
        max-width: 350px;
		margin: 0 auto 25px;
    }

    .founder-signoff {
        text-align: left;
    }
}

/* PARTNERS SECTION */
.partners {
    padding: 80px 20px;
	background: #f6f6f6;
    text-align: center;
}

.partners h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-family: "Open Sans", serif;
    color: #222;
}

.partners p {
    font-size: 1.1rem;
	line-height: 1.7rem;
    margin-bottom: 40px;
    font-family: "Open Sans", serif;
    color: #222;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* Grid Layout */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Logo Container */
.partner-item img {
    max-width: 200px;
	height: 50px;
	filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    opacity: 1;
}

/* Hover Effect: Full Colour + Slight Lift */
.partner-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px);
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .partners-grid {
        gap: 30px;
    }
}


/* Mission Section */
.mission {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Open Sans', serif;
    color: #222;
}

/* Mission Boxes Grid */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mission Box Styling */
.mission-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

.mission-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mission-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.mission-photo {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

/* FOOTER */
.footer {
    background: #f0f0f0;
    padding: 50px 20px 20px;
    margin-top: 60px;
    color: #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: "Open Sans", serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #222;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-col ul li a:hover {
    opacity: 0.6;
}

/* Social icons */
.footer-social a {
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease, fill 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.15);
    fill: #4559a7;
}

/* Bottom copyright bar */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 25px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RESPONSIVE: stack columns on mobile */
@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social a {
        margin-right: 10px;
    }
}


/* Tablet: 2 columns */
@media (min-width: 600px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 4 columns */
@media (min-width: 992px) {
    .mission-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* MOBILE STYLES */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        background: #1a1a1a;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        overflow: hidden;
        max-height: 0;
        padding: 0;
        transition: max-height 0.35s ease-out, padding 0.35s ease-out;
    }

    /* SHOW MENU WHEN CHECKBOX CHECKED */
    .nav-toggle:checked ~ .nav-links {
        max-height: 300px;
        padding: 15px 0;
    }
	
	.hero-text {
        font-size: 1.8rem;
        max-width: 90%;
        line-height: 1.2;
    }

}