@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lora:wght@400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Georgia, serif;

    background:
    radial-gradient(circle at top, rgba(120,20,30,0.35), transparent 40%),
    linear-gradient(to bottom, #5A1822, #3A0D14);
    
    font-family: 'Lora', serif;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* NAVBAR */

nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 32px;

    background:
    linear-gradient(
    to right,
    rgba(55,0,0,0.92),
    rgba(90,10,10,0.82),
    rgba(55,0,0,0.92)
    );

    backdrop-filter: blur(6px);

    border-bottom: 1px solid rgba(212,175,55,0.6);

    z-index: 1000;

    box-sizing: border-box;
}

.logo {
    color: #D4AF37;

    font-size: 18px;

    font-style: italic;

    font-weight: bold;
}

.nav-links {
    display: flex;

    gap: 22px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #F5E6C8;

    text-decoration: none;

    font-size: 16px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #D4AF37;
}

/* HERO SECTION */

.hero {
    position: relative;

    height: 68vh;

    background-image: url('../images/bishop-firstlady.jpeg');
    background-size: cover;
    background-position: center 8%;
    background-repeat: no-repeat;

    background-attachment: scroll;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.leadership-section {
    background: #4A1018;

    padding: 70px 20px;

    text-align: center;

    border-top: 2px solid #D4AF37;

    color: #F5E6C8;
}

.leadership-container {
    max-width: 1100px;

    margin: auto;
}

.leadership-section h2 {
    color: #D4AF37;

    font-size: 42px;

    font-style: italic;

    margin-bottom: 50px;

    font-family: 'Cormorant Garamond', serif;

    text-align: center;
}

.leadership-grid {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    align-items: flex-start;
}

.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 500px;
    text-align: left;
}

.leader-info {
    flex: 1;
    max-width: 340px;
    padding-top: 10px;
}

.leader-card img {
    width: 160px;

    height: 220px;

    object-fit: cover;

    flex-shrink: 0;

    border-radius: 10px;

    border: 3px solid #D4AF37;

    margin-bottom: 20px;
}

.leader-card h3 {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 15px;
    font-style: italic;

    min-height: 80px;
}

.leader-card p {
    color: #F5E6C8;

    font-size: 18px;

    line-height: 1.6;
}

.leader-card:hover {

    transform: translateY(-4px);

    transition: 0.3s ease;
}

/* DARK OVERLAY */

.overlay {
    position: absolute;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        to bottom,
        rgba(10,0,0,0.55),
        rgba(30,0,0,0.45),
        rgba(10,0,0,0.70)
    );

    z-index: 1;
}

/* HERO CONTENT */

.hero-content {
    position: absolute;

    bottom: 45px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    text-align: center;

    width: 100%;

    max-width: 900px;

    padding: 20px;
}

.hero-content h1 {
    color: #D4AF37;

    font-size: 4.3rem;

    font-style: italic;

    font-weight: 500;

    line-height: 0.95;

    margin-bottom: 10px;

    text-align: center;

    text-shadow:
        0 4px 12px rgba(0,0,0,0.6),
        0 0 25px rgba(212,175,55,0.15);

    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.service-times {
    margin-top: 18px;
}

.service-times p {
    color: #F5E6C8;

    font-size: 20px;

    margin: 6px 0;

    font-weight: 500;

    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.subtitle {
    color: #F5E6C8;

    font-size: 18px;

    line-height: 1.6;

    margin-bottom: 22px;

    text-shadow: 0 2px 10px rgba(0,0,0,0.5);

    text-align: center;
}

/* ABOUT SECTION */

.about-section {
    background: #5A1822;

    padding: 70px 60px;

    color: #F5E6C8;

    border-top: 2px solid #D4AF37;

    box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
}

.about-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    max-width: 1200px;

    margin: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #D4AF37;

    font-size: 42px;

    font-style: italic;

    margin-bottom: 30px;

    font-family: 'Cormorant Garamond', serif;

    font-weight: 600;
}

.about-text p {
    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;

    max-width: 540px;

    border-radius: 10px;

    border: 4px solid #D4AF37;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* OUTREACH SECTION */

.outreach-section {
    background:
    linear-gradient(to bottom, #4A1018, #5A1822);

    padding: 70px 60px;

    color: #F5E6C8;

    text-align: center;

    border-top: 2px solid #D4AF37;

    box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
}

.outreach-container {
    max-width: 1100px;

    margin: auto;
}

.outreach-section h2 {
    color: #D4AF37;

    font-size: 42px;

    font-style: italic;

    margin-bottom: 25px;

    font-family: 'Cormorant Garamond', serif;

    font-weight: 600;
}

.outreach-section p {
    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 60px;
}

.outreach-grid {
    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;
}

.outreach-card {
    background: rgba(255,255,255,0.05);

    border: 1px solid #D4AF37;

    border-radius: 10px;

    padding: 32px;

    width: 280px;

    box-shadow: 0 8px 18px rgba(0,0,0,0.25);

    transition: 0.3s;

    backdrop-filter: blur(3px);
}

.outreach-card:hover {
    transform: translateY(-5px);
}

.outreach-card h3 {
    color: #D4AF37;

    font-size: 30px;

    margin-bottom: 20px;
}

.outreach-card p {
    font-size: 20px;

    margin: 0;
}

/* EVENTS SECTION */

.events-section {

    background: #5A1822;

    padding: 35px 20px 30px;

    text-align: center;

    color: #F5E6C8;

    border-top: 2px solid #D4AF37;

    box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
}

.events-container {
    max-width: 1200px;

    margin: auto;
}

.events-section h2 {
    color: #D4AF37;

    font-size: 2.5rem;

    font-style: italic;

    margin-bottom: 10px;

    font-family: 'Cormorant Garamond', serif;

    font-weight: 600;
}

.events-section p {
    font-size: 17px;

    margin-bottom: 60px;

    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.events-grid {

    display: grid;

    grid-template-columns: repeat(2, 360px);

    gap: 26px;

    justify-content: center;

    margin-top: 50px;
}

.event-card {

    position: relative;

    width: 360px;

    height: 210px;

    border: 1px solid #D4AF37;

    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 6px 18px rgba(0,0,0,0.28);

    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    display: block;
}

.event-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.18)
    );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    padding: 14px;

    gap: 6px;

    color: #F5E6C8;
}

.event-overlay h3 {

    color: #F5E6C8;

    font-size: 18px;

    font-style: italic;

    margin: 0;
    
    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.event-overlay p {

    font-size: 13px;

    line-height: 1.4;

    margin: 0 0 6px 0;

    max-width: 85%;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    color: #D4AF37;

    font-size: 34px;

    margin-bottom: 15px;
}

.event-content p {
    font-size: 20px;

    margin-bottom: 25px;
}

/* GOLD BUTTON */

.gold-button {

    display: inline-block;

    background: #D4AF37;

    color: #5A1822;

    padding: 10px 20px;

    border-radius: 2px;

    text-decoration: none;

    font-weight: bold;

    font-size: 13px;

    transition: 0.3s;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gold-button:hover {
    background: #F1CC5B;

    transform: scale(1.05);
}

/* CONNECT SECTION */

.connect-section {
    background:
    linear-gradient(to bottom, #4A1018, #3A0D14);

    padding: 35px 20px;

    text-align: center;

    color: #F5E6C8;

    border-top: 2px solid #D4AF37;

    box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
}

.connect-container {
    max-width: 1000px;

    margin: auto;
}

.connect-section h2 {
    color: #D4AF37;

    font-size: 42px;

    font-style: italic;

    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;

    font-weight: 600;
}

.connect-section p {
    font-size: 22px;

    margin-bottom: 40px;
}

.connect-form {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.connect-form input {
    padding: 16px 20px;

    width: 260px;

    border: 2px solid #D4AF37;

    background: rgba(255,255,255,0.08);

    color: #F5E6C8;

    border-radius: 6px;

    font-size: 16px;
}

.connect-form input::placeholder {
    color: #E6D3A3;
}

.connect-form button {
    padding: 16px 30px;

    background: #D4AF37;

    color: #5A1822;

    border: none;

    border-radius: 6px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.connect-form button:hover {
    background: #F1CC5B;

    transform: scale(1.05);
}

@media (max-width: 768px) {

    nav {
        padding: 12px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 18px;
        text-align: center;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;

        font-family: 'Lora', serif;
        font-size: 17px;
    }

    .hero {
        height: 65vh;
        
        background-position: center 20%;
    }

    .hero-content {
        padding: 20px;
        max-width: 560px;

        bottom: 40px;
    }

    h1 {
        font-size: 42px;
        line-height: 1.15;
    }

    .subtitle {
        font-size: 18px;
    }

    .service-times p {
        font-size: 18px;
    }

    .divider {
        width: 140px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2,
    .outreach-section h2,
    .events-section h2,
    .connect-section h2 {
        font-size: 34px;
    }

    .about-text p,
    .outreach-section p,
    .events-section p,
    .connect-section p {
        font-size: 18px;
    }

    .about-section,
    .outreach-section,
    .events-section,
    .connect-section {
        padding: 60px 24px;
    }

    .outreach-grid,
    .events-grid {
        grid-template-columns: 1fr;
        justify-items: center;
}

    .outreach-card,
    .event-card {
        width: 100%;
        max-width: 340px;
    }

    .event-card img {
        height: 200px;
    }

    .event-image {
    position: relative;
    width: 100%;
    height: 100%;
}

    .connect-form {
        flex-direction: column;
        align-items: center;
    }

    .connect-form input,
    .connect-form button {
        width: 90%;
        max-width: 320px;
   }
}

/* FOOTER */

.footer {

    background: #5A1822;

    border-top: 2px solid #D4AF37;

    padding: 24px 20px;

    text-align: center;

}

.footer-content h3 {

    color: #D4AF37;

    font-size: 1.5rem;

    margin-bottom: 15px;

    font-style: italic;

}

.footer-content p {

    color: #F5E6C8;

    margin: 4px 0;
    
    font-size: 1rem;

    line-height: 1.6;

}

.footer-divider {

    width: 80px;

    height: 2px;

    background: #D4AF37;

    margin: 12px auto;

}

.copyright {

    font-size: 0.8rem;

    opacity: 0.8;

}

/* MOBILE STYLES */
@media (max-width: 768px) {

    /* Hero title */
    .hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.1;
    }

    /* Leadership section */
    .leadership-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 12px;
}

    .leader-info {
        max-width: 90%;
        margin: 0 auto;
}
    
    .leader-card img {
        width: 160px;
        height: auto;
    }

    .leader-card img {
    margin-bottom: 0;
}

    .leader-info {
    margin-top: -10px;
}
    
    .leadership-section h2 {
    font-size: 3rem;
    margin-top: 20px;
    margin-bottom: 30px;
}

    /* Event cards */
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-overlay h3 {
        font-size: 1.2rem;
    }

    .event-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Navigation */
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* VISIT US SECTION */

.visit-section {
    background: #6A0914;
    border-top: 2px solid #D4AF37;
    padding: 70px 20px;
    text-align: center;
}

.visit-container {
    max-width: 800px;
    margin: 0 auto;
}

.visit-section h2 {
    color: #D4AF37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.visit-intro {
    color: #F5E6C8;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.visit-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.visit-details p {
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border: 1px solid #D4AF37;
    border-radius: 10px;
}

.visit-details p {
    color: #F5E6C8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.visit-details strong {
    color: #D4AF37;
}

.visit-section h2 {
    font-size: 2.5rem;
}

.visit-details {
    flex-direction: column;
    gap: 25px;
}

/* Food Drive Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}

.modal-content {
    background: #4A1018;
    color: #F5E6C8;
    max-width: 600px;
    margin: 8% auto;
    padding: 30px;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #D4AF37;
}

.modal-content h2 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.modal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-content li {
    margin-bottom: 10px;
}

.bio-more {
    display: none;
}

.bio-button {
    background: #D4AF37;
    color: #5A0A0A;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 6px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: bold;
}

.bio-button:hover {
    opacity: 0.9;
}
