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

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

header {
    background: #474d67;
    color: #474d67;
    padding: 1.5rem;
    text-align: center;
}

main {
    min-height: 150vh;
    padding: 3rem 1.5rem;
}

.content-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Sub Navigation Bar */
.sub-nav {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.sub-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 48px;
}


.sub-nav-inner li {
    margin-right: 2rem;
}

.sub-nav-inner a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
}

.sub-nav-inner a:hover {
    color: #fff;
}


.sub-nav-inner a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.2s ease;
}

.sub-nav-inner a:hover::after {
    width: 100%;
}

.site-header {
    background: #111;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000; /* Add this */
}


/* Full-width image section */
.full-width-image {
    width: 100%;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

quoteHolder {
    display: block;
    background: #111;
    color: #ffebd7;
    padding: 60px 20px;
    text-align: center;
}

quoteHolder h1 {
    font-family: 'Edges', sans-serif;
    font-size: clamp(1rem, 2vw, 2rem); 
    max-width: 900px; 
    margin: 0 auto;   
    line-height: 1.4;
}


/* Logo */
.logo {
    width: 200px;
    height: auto;
}

/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-family: 'Edges';
    color: #ffebd7;
    text-decoration: none;
    font-size: 1.5rem;
    position: relative;
}

.main-nav a:hover {
    color: #ffebd7;
}


.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffebd7;
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.about-team {
    padding: 4rem 2rem;
    background: #111;
}

.about-team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-team h2 {
    color: #ffebd7;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-team p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffebd7;
    margin-bottom: 1rem;
}



.team-section {
    padding: 4rem 2rem;
    background: url('AOTLC_BG.jpg') no-repeat center center; 
    background-size: cover;
    position:inherit;
    text-align: center;
    color: #fff; 
}

.team-section h2 {
    color: #ffebd7;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: #ffebd7;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 5px solid #111; 
}


.team-card h3 {
    font-family: 'Edges';
    margin-bottom: 0.25rem;
    color: #111;
}

.team-card .role {
    font-weight: bold;
    color: #111;
    margin-bottom: 0.75rem;
}

.team-card .bio {
    font-size: 0.95rem;
    color: #111;
}

.newsletter {
    background: #ffebd7;
    padding: 60px 20px;
    color: #111;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 12px 14px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 24px;
    background: #111;
    color:#ffebd7;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
    opacity: 0.85;
}


.supporters { background: #111; padding: 60px 20px; text-align: center; } 
.supporters-inner { max-width: 1000px; margin: 0 auto; } 
.supporters h3 { color: #ffebd7; font-size: 1.3rem; margin-bottom: 5px; } 
.supporters-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 150px; align-items: center; } 
.supporters-logos img { max-height: 200px; max-width: 300px; object-fit: contain; opacity: 0.85; transition: opacity 0.2s ease; } .supporters-logos img:hover { opacity: 1; }


.image-text-section {
  padding: 2rem;
  background-color:#ffebd7;
}

.image-text-container {
  display: flex;
  align-items: flex-start; 
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.image-text-container img {
  width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 8px; 
}

.image-text-container .text {
  flex: 1;
}

.image-text-container .text h3 {
  margin-bottom: 0.5rem;
}

.image-text-container .text p {
  line-height: 1.5;
  margin-bottom: 1rem;
}

.image-section {
    min-height: 60vh; 
    background-image: url("AOTLC_Contact.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}



/* Text container */
.image-section-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.image-section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color:#111;
}

.image-section-content p {
    font-size: 1.2rem;
    color:#111;
}



@media (max-width: 900px) {
    .image-text-container {
        flex-direction: column; 
        align-items: center;    
        text-align: center;     
    }

    .image-text-container img {
        width: 100%;      
        max-width: 400px; 
        margin-bottom: 1.5rem; 
    }

    .image-text-container .text {
        flex: unset;      /* reset flex */
    }
}


@media (max-width: 480px) {
    .image-text-container .text h3 {
        font-size: 1.5rem;
    }

    .image-text-container .text p {
        font-size: 1rem;
    }
}



@media (max-width: 768px) {
    .site-header {
        flex-direction: column; 
        align-items: center;   
    }

    .main-nav ul {
        flex-direction: row;    
        flex-wrap: wrap;        
        justify-content: center;
        margin-top: 1rem;       
        gap: 1rem;              
    }

    .main-nav a {
        font-size: 1.2rem;      
    }
}




/* Responsive */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


@font-face {
    font-family: 'Edges'; 
    src: url('Edges.ttf'); 
}

