/* ===================================================
   PRO PULOT CO.
   Premium Website
   Author: ChatGPT
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root{
    --gold:#c6922d;
    --black:#121212;
    --white:#ffffff;
    --light:#f5f5f5;
    --gray:#6b6b6b;
    --shadow:0 10px 25px rgba(0,0,0,.18);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--black);
}

/* ======================
   NAVIGATION
====================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(18,18,18,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
}

nav{

    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    transition:all .4s ease;

}
   nav.scrolled{

    background:rgba(20,20,20,.96);

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    backdrop-filter:blur(8px);

}

.logo{
    color:var(--gold);
    font-size:30px;
    font-weight:800;
    font-family:'Montserrat',sans-serif;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

nav ul li a:hover{
    color:var(--gold);
}

/* ======================
   HERO
====================== */

/* ==========================
   PREMIUM HERO
========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
   
}

.hero-slides{
    position:absolute;
    inset:0;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1);
    transition:opacity 1.5s ease-in-out, transform 8s linear;
}

.hero-slide.active{
    opacity:1;
    transform:scale(1.08);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
    animation:fadeUp 1.2s ease;
    transform:translateY(-35px);
}

.hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
    letter-spacing:2px;
}

.hero-subtitle{
    color:#d4af37;
    font-size:22px;
    margin-bottom:18px;
    font-weight:600;
}

.hero h2{
    font-size:34px;
    color:#d4af37;
    line-height:1.3;
    margin-bottom:25px;
    letter-spacing:1px;
}

.hero-description{
    max-width:680px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
}

.hero-founded{
    margin-top:22px;
    color:#d4af37;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:30px;
}

.hero-subtitle{
    font-size:18px;
}

.hero-description{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

}

.featured-grid{

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

    justify-content:center;

    gap:20px;

}

.featured-photo{

    width:110px;

    height:110px;

}

.payment-fee span{

    font-size:2rem;

}

.payment-qr{

    width:100px;

}

/* ======================
   BUTTON
====================== */

.btn{
    display:inline-block;
    padding:15px 40px;
    background:var(--gold);
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

/* ======================
   SECTION
====================== */

section{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:70px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--gold);
    font-size:32px;
    font-family:'Montserrat';
}

/* ======================
   CARDS
====================== */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.3s;
}

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

/* ======================
   MEMBERS
====================== */

/* ======================
   PREMIUM MEMBERS CAROUSEL
====================== */

.members-section{
    padding:70px 0;
    background:#111;
}

.members-section .section-title h2{
    color:#fff;
}

.members-section .section-title p{
    color:#bbb;
}

.carousel-container{
    position:relative;
    width:95%;
    max-width:1400px;
    margin:auto;
    overflow:hidden;
}

.carousel{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.carousel::-webkit-scrollbar{
    display:none;
}

.member-card{

    min-width:280px;
    background:#1a1a1a;
    border:2px solid #c6922d;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
    transition:.35s;

}

.member-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(198,146,45,.35);

}

.member-card img{

    width:100%;
    height:380px;
    object-fit:cover;
    display:block;

}

.member-info{

    padding:18px;
    text-align:center;

}

.member-info h3{

    color:#fff;
    margin-bottom:8px;
    font-size:22px;

}

.member-id{

    display:inline-block;
    background:#c6922d;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-weight:bold;

}

/* Buttons */

.carousel-btn{

position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#c6922d;
color:#fff;
font-size:24px;
cursor:pointer;
z-index:100;

}

.carousel-btn:hover{

background:#a97b21;

}

.prev{

left:10px;

}

.next{

right:10px;

}

@media(max-width:992px){

.member-card{

min-width:45%;

}

}

@media(max-width:768px){

.member-card{

min-width:100%;

}

.carousel-btn{

display:none;

}

}

/* ======================
   GALLERY
====================== */

/* ==========================
   PREMIUM MASONRY GALLERY
========================== */

#gallery{
    background:#f8f8f8;
    padding:70px 8%;
}

.gallery{
    columns:4 280px;
    column-gap:18px;
    margin-top:50px;
}

.gallery img{
    width:100%;
    margin-bottom:18px;
    border-radius:18px;
    display:block;
    cursor:pointer;
    transition:transform .35s ease, box-shadow .35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.gallery img:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}

/* ======================
   FORM
====================== */

form{
    max-width:700px;
    margin:auto;
}

input,
textarea,
select{
    width:100%;
    padding:15px;
    margin:10px 0;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:16px;
}

button{
    width:100%;
    padding:16px;
    border:none;
    background:var(--gold);
    color:white;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    opacity:.9;
}

/* ======================
   FOOTER
====================== */

footer{
    background:var(--black);
    color:white;
    text-align:center;
    padding:40px 20px;
}

footer p{
    color:#bbb;
}

/* ======================
   MOBILE
====================== */

@media(max-width:768px){

.hero h1{
    font-size:40px;
}

.hero p{
    font-size:18px;
}

nav{
    flex-direction:column;
}

nav ul{
    margin-top:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.section-title h2{
    font-size:34px;
}

}
.hero-founded{
    margin-top:30px;
    color:#d4af37;
    font-size:20px;
    font-weight:700;
    letter-spacing:2px;
}
.hero h1,
.hero h2,
.hero-subtitle,
.hero-description,
.hero-founded{
    text-shadow:0 3px 12px rgba(0,0,0,.65);
}
#gallery-page{

    padding:70px 8%;

    background:#f7f7f7;

}

.gallery-button{

    text-align:center;

    margin-top:50px;

}

.gallery-button .btn{

    padding:16px 42px;

    border-radius:50px;

    display:inline-block;

}

.member-grid{

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

    justify-content:center;

    gap:22px;

}

.leader-modal-content{

    padding-top:65px;

}

/* ==========================
   LIGHTBOX
========================== */

.lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox.active{

    display:flex;

}

.lightbox-image{

    max-width:90%;

    max-height:85vh;

    border-radius:15px;

    box-shadow:0 20px 60px rgba(0,0,0,.5);

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:45px;

    cursor:pointer;

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:rgba(255,255,255,.15);

    color:white;

    border:none;

    width:40px;

    height:40px;

    border-radius:50%;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:#c6922d;

}

.lightbox-prev{

    left:40px;

}

.lightbox-next{

    right:40px;

}
/* ==========================
   LEADERSHIP
========================== */

#leadership{
    padding:50px 8%;
    background:#f8f8f8;
}

.leader-heading{
    text-align:center;
    font-size:30px;
    color:#c6922d;
    margin:60px 0 35px;
    font-family:'Montserrat',sans-serif;
}

.leader-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.leader-grid.executive{
    grid-template-columns:repeat(auto-fit,minmax(320px,380px));
    justify-content:center;
}

.leader-card{
    background:#1f1f1f;
    border:2px solid #d4a62a;
    border-radius:22px;

    padding:28px 22px;

    text-align:center;

    transition:.3s ease;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
}

.leader-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(198,146,45,.35);
}

.leader-card img{
    width:190px;
    height:190px;
    object-fit:cover;
    border-radius:50%;

    border:5px solid #d4a62a;

    margin:0 auto 22px;
    display:block;

    transition:.35s ease;
}

.leader-card:hover img{
    transform:scale(1.04);
}

.leader-card h3{
    font-size:1.55rem;
    font-weight:700;
    color:#fff;

    margin:0;

    line-height:1.2;

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

    text-align:center;
}

.leader-role{
    margin-top:2px;

    color:#d4a62a;

    background:none;
    border:none;

    font-size:.95rem;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.leader-actions{
    margin-top:18px;
    margin-bottom:10px;
    text-align:center;
}

.leader-card p{
    padding:0 20px 25px;
    line-height:1.7;
    color:#ddd;
}

.leader-card::after{
    content:"";
    width:70px;
    height:2px;
    background:#d4a62a;
    margin:22px auto;
}

.leader-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 26px;

    border:2px solid #d4a62a;

    color:#fff;
    background:transparent;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.leader-btn:hover{
    background:#d4a62a;
    color:#1f1f1f;
}

/* ==========================
   LEADERSHIP PROFILE MODAL
========================== */

.leader-modal{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);

    display:none;

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

    z-index:9999;

    padding:30px;

}

.leader-modal.active{

    display:flex;

}

.leader-modal-content{

    background:#fff;
    width:90%;
    max-width:900px;
    border-radius:22px;
    padding:40px;
    display:flex;
    gap:40px;
    max-height:90vh;
    overflow-y:auto;
   
    align-items:flex-start;

    position:relative;

    animation:leaderPopup .35s ease;

}

/* ==========================
   LEADER MODAL LAYOUT
========================== */

.leader-left{
    width:35%;
    text-align:center;
    border-right:1px solid #ececec;
    padding-right:30px;
}

.leader-right{
    width:65%;
    position:relative;
}

.leader-header{
    margin-bottom:25px;
}

.leader-header h5{
    color:#c6922d;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:8px;
}

.leader-header h2{
    font-size:26px;
    color:#222;
    margin-bottom:30px;
}

#leader-photo{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #c6922d;
    margin-bottom:12px;
}

.leader-modal.member-view #leader-photo{

    width:100%;
    max-width:230px;

    height:auto;

    border-radius:12px;

    object-fit:contain;

}

#leader-name{
    margin-top:4px;
    margin-bottom:8px;
    font-size:1.3rem;
    line-height:1.2;
}

#leader-position{
    display:inline-block;
    background:#c6922d;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    text-transform:uppercase;
    font-size:9px;
    letter-spacing:1px;
}

@keyframes leaderPopup{
    from{
        opacity:0;
        transform:translateY(30px) scale(.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.leader-close{

    position:absolute;

    top:18px;

    right:20px;

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#999;

    cursor:pointer;

    z-index:1000;

}

.leader-close:hover{
    color:#c6922d;
}

#leader-bio{
    color:#555;
    font-size:16px;
    line-height:1.6;
}

/* ==========================
   LEADER PROFILE CONTENT
========================== */

.leader-profile{
    margin-top:25px;
    text-align:left;
}

.profile-section{
    margin:25px 0;
    padding-bottom:14px;
    border-bottom:1px solid #e5e5e5;
}

.profile-section:last-child{
    border-bottom:none;
}

.profile-section h3{
    color:#c6922d;
    margin-bottom:6px;
    font-size:1.3rem;
    font-family:'Montserrat',sans-serif;
}

.profile-section p{
    color:#555;
    line-height:1.5;
}

.profile-section ul{
    margin:0;
    padding-left:22px;
}

.profile-section li{
    margin:10px 0;
    color:#444;
    line-height:1.7;
}

.leader-navigation{
    margin-top:35px;
    display:flex;
    justify-content:space-between;
}

.leader-navigation button{
    background:#c6922d;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:40px;
    cursor:pointer;
    transition:.3s;
}

.leader-navigation button:hover{
    background:#a67d1d;
}

@media(max-width:900px){

    .leader-modal-content{

        flex-direction:column;

        max-height:90vh;

        overflow-y:auto;

    }

    .leader-left{

        width:100%;

        border-right:none;

        border-bottom:1px solid #ececec;

        padding-right:0;

        padding-bottom:30px;

    }

    .leader-right{

        width:100%;

    }

   .leader-modal-content{

    padding-top:55px;

}
   
}

/* ==========================
   FEATURED SPECIAL MEMBERS
========================== */

.featured-members{
    padding:40px 8% 60px;
    background:#f8f8f8;
    text-align:center;
}

.featured-members .section-title{
    font-size:1.5rem;
    margin-bottom:6px;
}

.featured-description{
    max-width:720px;
    margin:0 auto 12px;
    color:#666;
    line-height:1.6;
    font-size:1rem;
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,130px);
    justify-content:center;
    gap:24px;
    margin-top:0;
}

.featured-item{

    display:flex;

    justify-content:center;

    align-items:center;

}

.featured-photo{

    width:140px;

    height:140px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #c6922d;

    cursor:pointer;

    transition:.35s;

}

.featured-photo:hover{

    transform:scale(1.08);

    box-shadow:0 12px 28px rgba(198,146,45,.35);

}
/* ==========================
   MEMBER DIRECTORY
========================== */

.member-directory {
    padding: 70px 20px 20px;
    background: #f8f8f8;
}

.member-directory .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.member-directory .section-header h2 {
    font-size: 1.5rem;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.member-directory .section-header p {
    color: #666;
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

.member-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,130px);

    justify-content:center;

    gap:28px;

}

.directory-item{

    display:flex;

    justify-content:center;

    align-items:center;

}

.directory-photo{

    width:140px;

    height:140px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #d4af37;

    cursor:pointer;

    transition:.35s;

}

.directory-photo:hover{

    transform:scale(1.08);

    box-shadow:0 12px 28px rgba(212,175,55,.35);

}

.member-role {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-id {
    color: #ccc;
    margin-bottom: 20px;
}

.directory-btn{
    display:inline-block;
    margin-top:8px;
    padding:10px 24px;
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
    font-size:1rem;
    transition:.3s ease;
}

.directory-btn:hover{
    color:#ffffff;
    text-decoration:none;
}

#mission-vision{
    padding:70px 0;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:40px;
}

#mission-vision .card{
    height:100%;
}
@media (max-width:768px){

    .leader-card img{
        width:90px;
        height:90px;
    }

    .directory-photo{

    width:120px;

    height:120px;

}

 .leader-card{
    padding:28px 22px;
}

.leader-card h3{
    font-size:1rem;
}

}
#leader-responsibilities{

    margin: 10px 0 0;

    padding-left: 22px;

}

#leader-responsibilities li{

    font-size: 1rem;

    line-height: 1.4;

    margin-bottom: 6px;

}
#member-preview{

    position:fixed;

    display:none;

    z-index:9999;

    pointer-events:auto;

    transition:.25s;

}

#member-preview img{

    width:280px;

    border-radius:18px;

    box-shadow:0 25px 50px rgba(0,0,0,.35);

    cursor:pointer;

}
.back-btn{

    background:#666;

    color:#fff;

    border:none;

    padding:12px 24px;

    border-radius:40px;

    cursor:pointer;

    margin-bottom:30px;

    transition:.3s;

}

.back-btn:hover{

    background:#444;

}

.payment-title h2{

    font-size:1.5rem;
    margin-bottom:5px;
    color:#c6922d;

}

.payment-card{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    width:240px;

    height:90px;

    background:#fff;

    border:2px solid #c6922d;

    border-radius:18px;

    cursor:pointer;

    transition:.3s;

    font-size:1.15rem;

    font-weight:600;

}

.payment-options{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

    margin:30px auto 40px;

}

.payment-card input{

    width:22px;

    height:22px;

    margin:0;

    cursor:pointer;

}

#qrPayment,
#cashPayment{

    margin-top:40px;

}
.payment-fee{

    text-align:center;
    margin:10px 0 35px;

}

.payment-fee h3{

    color:#666;
    font-size:1rem;
    margin-bottom:10px;

}

.payment-fee span{

    font-size:2.4rem;
    font-weight:700;
    color:#c6922d;

}
/* ==========================
   QR PAYMENT
========================== */

.payment-qr{

    display:block;

    width:220px;

    max-width:100%;

    height:auto;

    margin:20px auto;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}
/* ==========================
   PAYMENT CONTENT
========================== */

#qrPayment,
#cashPayment{

    text-align:center;

}

.payment-heading{

    color:#c6922d;

    font-size:1.4rem;

    margin-bottom:10px;

}

.payment-note{

    max-width:520px;

    margin:0 auto 20px;

    color:#666;

    line-height:1.6;

}

#cashPayment a{

    display:inline-block;

    margin-top:18px;

}

.upload-box{

    max-width:500px;

    margin:30px auto;

    padding:25px;

    background:#fff;

    border:2px dashed #c6922d;

    border-radius:18px;

    text-align:center;

}

.upload-box label{

    display:block;

    margin-bottom:15px;

    font-weight:600;

}

/* ==========================
   SUBMIT APPLICATION
========================== */

.submit-btn{

    display:block;

    width:380px;

    max-width:90%;

    margin:40px auto 0;

    padding:16px 24px;

    font-size:1.1rem;

    font-weight:700;

    border-radius:50px;

}

#cashPayment{

    margin-bottom:40px;

}

#cashPayment .btn{

    margin-bottom:30px;

}
