*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: clamp(335px, 90%, 1220px);
    
    
    margin: 0 auto;
    background-color: #fff;
    color: #13183F;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
}

.navbar {
    font-size: 1.125rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    text-align: center;
    
}

.main-nav {
    list-style-type: none;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 50%;
    background-color: #13183F;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    
}

main {
    flex: 1 0 0%;
}

.nav-links {
    text-decoration: none;
    color: inherit;
}

.main-nav li {
    text-align: center;
    
}

.logo {    
    width: 50px;
    height: 50px;
    margin-top: 10px;
    margin-left: 20px;
}

.navbar-toggle-hamburger,
.navbar-toggle-close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
}

.active {
    display: flex;
}

.banner-wraper {
    width: 100%;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.intro {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.title1 {
    font-size: 3.5rem;
    font-weight: 900;
}

.paragraph {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    color: #83869A;
}

.btn {
    background: linear-gradient(#FF6F48, #F02AA6);
    border-radius: 20px;
    padding: 5px 15px;
}

.btn:hover {
    box-shadow: 0 5px 15px rgba(242, 42, 160, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.link-btn {
    text-decoration: none;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
}

.container-main {
    display: block;
    text-align: center;

    margin: 1rem 0;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 10px;
}

.info,
.form-response {
    background-color: #F8F9FB;
    border: #EDEDED;
    border-radius: 8px;
    padding: 24px;
}

.footer {
    background-color: #F8F9FB;
    display: block;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    margin-top: auto;
    
}

.info-links {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 15px;
}

.social-links {
    color: #13183F !important;
    text-decoration: none;

}

.social-links i {
    font-size: 20px;
    color: inherit;
    
}

@media (min-width: 768px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        height: 70px;
        align-items: center;
    }

    .main-nav {
        display: flex;
        margin-right: 30px;
        flex-direction: row;
        justify-content: flex-end;
        background-color: #fff;
        color: #13183F;
    }

    .main-nav li {
        margin: 0;
    }

    .nav-links {
        margin-left: 40px;
    }

    .navbar-toggle-hamburger,
    .navbar-toggle-close {
        display: none;
    }

}

@media (max-width: 500px) {
    .navbar {
        font-size: 1rem;
    }

    .navbar-toggle-hamburger {
        font-size: 1.25rem;
    }

    .title1 {
        font-size: 2.75rem;
    }

    .paragraph {
        font-size: 1rem;
    }

    .link-btn {
        font-size: 1rem;
    }

    .info,
    .intro {
        display: flex;
        flex-direction: column;
    }

    
}

/* About page*/
.main {
 position: relative;
 width: 100%;
 /*min-height: 70vh*/;
 overflow: hidden;   
}

.main::before{
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url(assets/logo-TiSiSliven.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    z-index: -1;
}

.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #EDEDED;
    padding: 5px;
    margin-top: 10px;
}

.container1-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-around;
    align-items: baseline;
    padding: 10px;

}

.container1-info h3 {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.2;
}

.container1-info p {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    color: #83869A;
    
}

.container1 img {
    width: 400px;
    height: 300px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    .container1 {
        flex-direction: column;
    }

    .container1 > img {
        width: 100%;
    }

    .container1-info h3 {
        font-size: 1.125rem;
    }

    .container1-info p {
        font-size: 1rem;
    }

}

.form-response {

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;

}

.fields {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    

    width: 100%;
}

.fields > label {
    font-size: 1.5rem;
    font-weight: 600;
}

.fields > input {
    
    width: 100%;
    border-radius: 8px;
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
}

.fields > textarea {
    resize: none;
    height: 6rem;
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
    border-radius: 8px;
}

.btn-submit {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
}

.map-container {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.map-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 500px){
    .map-container iframe {
        height: 300px;
    }
}
/* Page program.html */

.program-links {
    text-decoration: none;
}

.program-links:hover, .program-links:focus {
    filter: brightness(0.9);
}

.program-links:focus {
    outline: 3px solid #5a5a5a;
    box-shadow: 0 0 0 3px rgba(135, 18, 113, 0.5);
    transition: outline 0.2s ease, box-shadow 0.2s ease;
}

article {
    border-radius: 0.2em;
    background-color: #e5e5e5;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.article-header {
    box-sizing: border-box;
    padding: 1em;
    width: 100%;

    flex-grow: 1;
}

.header-two {
    font-size: 0.88rem;
    color: #5D0E50;
    margin: 0;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.header-three {
    font-size: 1rem;
    margin: .4em 0;
    letter-spacing: 0.03em;
    color: #111111;
    font-weight: 500;
}

.image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: .2em;
    border-top-right-radius: .2em;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
}

@media (min-width: 500px) {

    .grid-container {
        grid-template: 1fr 1fr 1fr 1fr 1fr / 1fr 1fr;
    }

    .sports {
        grid-column: span 2;
    }

    .cinema {
        grid-row: span 2;
    }

    .seminars {
        grid-column: span 2;
    }


}

@media (min-width: 870px) {

    .grid-container {
        grid-template: repeat(6, 1fr) / repeat(12, 1fr);
    }

    .sports {
        grid-column: 1/-1;
        grid-row: 1/2;
    }

    .market {
        grid-column: 1/4;
        grid-row: 2/3;
    }

    .cinema {
        grid-column: 1/4;
        grid-row: 3/5;
    }

    .party {
        grid-column: 4/9;
        grid-row: 2/5;
    }

    .community {
        grid-column: 9/-1;
        grid-row: 2/3;
    }

    .concerts {
        grid-column: 9/-1;
        grid-row: 3/5;

    }

    .seminars {
        grid-column: 1/-1;
        grid-row: 5/-1;
    }


}

/* --- Campaign Section (Green Card) --- */
.campaign-section {
    margin: 40px 0;
    padding: 0 10px; /* Aligns with your body clamp */
}

.green-theme {
    background-color: #F1F8F4; /* Light mint green */
    border: 1px solid #D1E7DD;
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
}

.green-theme h2 {
    color: #1B4332; /* Deep forest green */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight {
    font-size: 1.25rem;
    font-weight: 800;
    color: #13183F;
    margin-bottom: 1rem;
}

.extra-info {
    margin-top: 1.5rem;
    color: #4A6B5D;
    font-size: 0.95rem;
}

/* --- Donation/CTA Box Specifics --- */
/* This reuses your existing .info class but adds a special style for bank details */
.donation-box {
    border: 2px dashed #F02AA6; /* Stand-out dashed border */
    background-color: #fff !important; 
}

.bank-details {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace; /* Makes numbers easier to read */
    font-size: 0.9rem;
    margin-top: 15px;
    line-height: 1.6;
    color: #13183F;
    word-break: break-all; /* Prevents IBAN from breaking layout on mobile */
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .green-theme h2 {
        font-size: 1.8rem;
    }
}

.transport-info {
    margin-top: 2rem;
    padding: 20px;
    background-color: #F8F9FB;
    border-radius: 12px;
}

.transport-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.schedule-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #EDEDED;
}

.schedule-card h3 {
    font-size: 1.1rem;
    color: #13183F;
    margin-bottom: 10px;
    border-bottom: 2px solid #F02AA6; /* Accents matching your branding */
    display: inline-block;
}

.schedule-card ul {
    list-style: none;
    padding: 0;
}

.schedule-card li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #83869A;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

.day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    
}

.schedule-list {
    padding-left: 20px;       
}

.schedule-list li {
    margin-bottom: 2rem;
}
