:root{

    --main-bg:#fff4e6;       
    --section-bg:#fdebd0;    
    --primary:#d2691e;        
    --dark-orange:#b3541e;   
    --accent:#f6c28b;         
    --text-dark:#5a2d0c;   
    --border:#f0c999;         

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background:var(--main-bg);
    color:var(--text-dark);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 70px;
    background: var(--primary);
    border-bottom:2px solid var(--border);
    color: white;
    font-weight: bold;
}

.logo img {
    height: 60px;
}

.social a {
    color: white;
    margin-left: 15px;
    font-size: 20px;
    text-decoration: none;
}
.navbar {
    background: #f39c12;
    padding: 10px;
    text-align: center;
}

.navbar a {
    color: white;
    margin: 0 18px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}
.top-slider {
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.slider-track img {
    width: 590px;      
    height: 350px;      
    object-fit: cover;
    margin-right: 0px;
    border-radius: 0px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.slider-track img:hover {
    transform: scale(1.05);
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 900px) {
    .slider-track img {
        width: 260px;
        height: 180px;
    }
}
.welcome-style {
    text-align: center;
    padding: 60px 80px 20px;
    background:var(--section-bg);
    border-top:2px solid var(--border);
    border-bottom:2px solid var(--border);

}
.welcome-small {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}
.welcome-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.welcome-divider span {
    width: 60px;
    height: 2px;
    background: #f39c12;
}

.welcome-divider i {
    width: 12px;
    height: 12px;
    border: 3px solid #f39c12;
    border-radius: 50%;
}
.welcome-title {
    font-size: 34px;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.welcome-text {
    max-width: 950px;
    margin: 0 auto 12px;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}
@media (max-width: 900px) {
    .welcome-style {
        padding: 35px 20px 10px;
    }

    .welcome-title {
        font-size: 24px;
    }

    .welcome-text {
        font-size: 15px;
    }
}

.holy-trio-box {
    width: fit-content;
    margin: 30px auto 10px auto;
    padding: 12px 50px;
    background:var(--accent);
    color:var(--text-dark);
    border-radius: 14px;
    text-align: center;
    font-family: "Georgia", serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.holy-trio-box h2 {
    font-size: 28px;
    font-weight: 600;
}
.fixed-images {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 25px 80px;
}

.fixed-images img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.fixed-images img:hover {
    transform: scale(1.03);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: white;
    width: 400px;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: popup 0.3s ease;
}

.modal-content h2 {
    color: #b03a2e;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}
.close-btn:hover {
    color: #f39c12;
    transform: scale(1.1);
}


@keyframes popup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.content {
    display: flex;
    padding: 30px 80px;
    gap: 50px;
}

.activities,
.notice {
    width: 50%;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.activities ul {
    margin-top: 10px;
}

.activities li {
    margin: 8px 0;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: white;
    padding: 30px;
    margin: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.about-text {
    width: 50%;
    flex: 1 1 320px;
}

.about-text h1 {
    color: #b03a2e;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #333;
}

.about-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex:1 1 320px;
}

.about-image img {
    width: 65%;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.gallery-section {
    padding: 40px 50px;
    text-align: center;
}

.gallery-section h1 {
    margin-bottom: 25px;
    color: #0b3c5d;
    font-size: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 40px 50px;
    text-align: center;
}

.contact-section h1 {
    font-size: 32px;
    color: #0b3c5d;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 30px;
}

.contact-box {
    width: 45%;
    height: 350px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: left;
    flex:1 1 320px;
}
.address-box {
    width: 45%;
    height: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: left;
    flex:1 1 320px;
}

.contact-box h2,
.address-box h2 {
    margin-bottom: 14px;
    color: #b03a2e;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    margin: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
    word-break: break-word;
    overflow-wrap: anywhere;
    flex-wrap: wrap;
}
.contact-btn.phone {
    background: #2ecc71;
    color: white;
}

.contact-btn.email {
    background: #3498db;
    color: white;
}

.contact-btn.facebook {
    background: #1877f2;
    color: white;
}

.contact-btn.youtube {
    background: #ff0000;
    color: white;
}

.contact-btn:hover {
    transform: translateX(6px);
    opacity: 0.9;
}

.address-box p {
    line-height: 1.7;
    font-size: 16px;
}

.map-box {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}
.footer {
   background:#fde3c1;
    color:var(--text-dark);
    border-top:2px solid var(--border);
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    padding: 30px 50px;
    margin-top: 40px;
}
.footer-menu a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    margin: 8px 0;
}

.footer-contact p {
    margin: 6px 0;
}

.footer-social a {
    color: var(--text-dark);
    margin-right: 10px;
    font-size: 20px;
}
.footer-bottom{
    width:100%;
    background:#fde3c1;
    border-top: 1px solid rgb(39, 27, 27);
    margin-top:40px;
    padding:20px 0;
}
.footer-bottom-inner{ 
    color: var(--text-dark);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 50px;
    font-size:16px;
}
.copyright-left{
    text-align:left;
}
.copyright-right{
    text-align:right;
}
@media (max-width: 900px) {
    .content,
    .about-container,
    .contact-container,
    .footer {
        flex-direction: column;
    }

    .activities,
    .notice,
    .about-text,
    .about-image,
    .contact-box,
    .address-box {
        width: 100%;
    }

    .header {
        padding: 12px 20px;
        text-align: center;
    }

    .fixed-images {
        flex-direction: column;
        align-items: center;
    }

    .fixed-images img {
        width: 85%;
        height: 300px;
    }

    .content,
    .about-container,
    .gallery-section,
    .contact-section {
        padding: 20px;
        margin: 15px;
    }
    .footer-bottom-inner{
    flex-direction:column;
    text-align:center;
    gap:6px;
}
.copyright-left{
    text-align:center;
}
.copyright-right{
    text-align:center;
}
}
.membership-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 100px;
}

.membership-card {
    background: #ffffff;
    padding: 50px;
    width: 500px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    position: relative;
}
.membership-section h1{
    text-align: center;
    width: 100%;
    font-size: 34px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 20px;
    color: #0b3c5d
}
.membership-desc{
    text-align: center;
    width: 100%;
    font-size: 20px;
    margin-bottom: 10Px;
    color: #000
}
.membership-card h2 {
    margin-bottom: 20px;
    padding: 20px;
    color: #0b3c5d;
}
.membership-btn {
    padding: 12px 26px;
    background:var(--primary);
    color:white;
    border:none;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

.membership-menu {
    position: absolute;
    display: none;
    margin-top: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    transform: translateX(+50%);
    width: 260px;
    display: none;
    z-index: 100;  
}

.membership-menu a {
    display: block;
    padding: 14px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.membership-menu a:hover {
    background:var(--dark-orange);
}

.membership-menu a i {
    margin-right: 10px;
    color: #b03a2e;
}

.membership-menu .disabled {
    color: #aaa;
    pointer-events: none;
    background: #fafafa;
}

.membership-menu.show {
    display: block;
}
.bg-music{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:9999;
}

#musicToggle{
    background:#0b5fa5;
    color:white;
    border:none;
    padding:12px;
    border-radius:50%;
    cursor:pointer;
    font-size:16px;
}
.quote-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.quote-box{
    background:#fff4e6;
    padding:30px;
    border-radius:12px;
    text-align:center;
    max-width:400px;
    width:90%;
    position:relative;
    border:2px solid #f0c999;
}

.quote-box h2{
    color:#d2691e;
    margin-bottom:15px;
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    font-size:22px;
    cursor:pointer;
}
.decorated-box{
    position:relative;
    background:#fff8ef;
    padding:30px;
    border-radius:16px;
}
.decorated-box::before{
    content:"";
    position:absolute;
    width:30px;
    height:30px;
    border-top:3px solid #d2691e;
    border-left:3px solid #d2691e;
    top:10px;
    left:10px;
}
.decorated-box::after{
    content:"";
    position:absolute;
    width:30px;
    height:30px;
    border-bottom:3px solid #d2691e;
    border-right:3px solid #d2691e;
    bottom:10px;
    right:10px;
}
.donation-section{
    max-width:1000px;
    margin:0 auto;
    padding:40px 24px;
    text-align:center;
}

.donation-section h2{
    font-size:26px;
    margin-bottom:20px;
}

.donation-section p{
    font-size:18px;
    line-height:1.7;
}

.donation-card{
    max-width:1000px;
    margin:0 auto 50px auto;
    padding:30px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.donation-card h3{
    text-align:center;
    margin-bottom:25px;
}

.donation-table{
    width:100%;
    border-collapse:collapse;
}

.donation-table td{
    padding:12px;
    border:1px solid #e5e5e5;
    text-align:left;
}

.donation-table tr:nth-child(even){
    background:#f9f9f9;
}

.donation-table td:first-child{
    font-weight:600;
    width:40%;
}

.donation-note{
    max-width:1000px;
    margin:0 auto 60px auto;
    padding:30px;
    background:#fff3e0;
    border:1px solid #ffd8a8;
    border-radius:20px;
}

.donation-note h3{
    margin-bottom:15px;
}
@media(max-width:768px){

    .header{
        flex-direction:column;
        text-align:center;
    }

    .navbar{
        flex-wrap:wrap;
        gap:15px;
    }

    .footer-menu,
    .footer-contact{
        width:100%;
        margin-bottom:20px;
    }

    .footer-bottom-inner{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .donation-section{
        padding:30px 15px;
    }

    .donation-card,
    .donation-note{
        padding:20px;
    }
}
