/*==================================================
    WEST HERNANDO COIN CLUB
    Main Stylesheet
==================================================*/

/* ---------- RESET ---------- */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#f6f3ea;
    color:#1b2f49;
    font-family:'Source Sans 3',sans-serif;
    font-size:18px;
    line-height:1.7;
}

/* ---------- TYPOGRAPHY ---------- */

h1,h2,h3,h4{
    font-family:'Cinzel',serif;
    font-weight:700;
    color:#0b2f5b;
}

h1{
    font-size:2.6rem;
}

h2{
    font-size:2.3rem;
    margin-bottom:20px;
}

h3{
    font-size:1.5rem;
    margin-bottom:15px;
}

p{
    margin-bottom:18px;
}

a{
    color:#0b2f5b;
    text-decoration:none;
    transition:.3s;
}

a:hover{
    color:#b8892d;
}

/* ---------- LAYOUT ---------- */

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:80px 0;
}

.light{
    background:#ffffff;
}

.dark{
    background:#0b2f5b;
    color:white;
}

.dark h2,
.dark h3,
.dark p{
    color:white;
}

/* ---------- HEADER / NAVIGATION ---------- */

header{
    background:#0b2f5b;
    color:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:75px;
    flex-shrink:0;
}

.logo h1{
    color:white;
    margin:0;
    font-size:1.75rem;
    line-height:1.1;
}

.logo p{
    color:#dddddd;
    margin:4px 0 0;
    font-size:.95rem;
}

.menu-toggle{
    display:none;
    background:#c49a3d;
    color:#0b2f5b;
    border:none;
    padding:12px 18px;
    border-radius:6px;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
}

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

nav a{
    color:white;
    font-weight:700;
    text-decoration:none;
}

nav a:hover{
    color:#d7b160;
}

/* ---------- HERO ---------- */

.hero{
    background:linear-gradient(rgba(11,47,91,.85),rgba(11,47,91,.85));
    color:white;
    text-align:center;
    padding:120px 0;
}

.hero h2{
    color:white;
    font-size:3.2rem;
}

.hero p{
    max-width:800px;
    margin:25px auto;
    font-size:1.3rem;
}

/* ---------- BUTTONS ---------- */

.buttons{
    margin-top:40px;
}

.button{
    display:inline-block;
    padding:16px 32px;
    border-radius:6px;
    background:#c49a3d;
    color:#0b2f5b;
    font-weight:700;
    margin:10px;
    transition:.3s;
}

.button:hover{
    background:#ddb560;
    color:#0b2f5b;
}

.secondary{
    background:white;
}

.secondary:hover{
    background:#ececec;
}

/* ---------- MEETING CARD ---------- */

.meeting-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 8px 30px rgba(0,0,0,.10);
}

.meeting-card iframe{
    border-radius:12px;
}

/* ---------- INTRO ---------- */

.intro{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

/* ---------- CARD GRID ---------- */

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

.cards article{
    background:white;
    border-radius:12px;
    padding:35px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.cards article:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.cards article h3{
    margin-bottom:15px;
}

/* ---------- TABLES ---------- */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
}

th{
    background:#0b2f5b;
    color:white;
    padding:15px;
}

td{
    padding:15px;
    border-bottom:1px solid #ddd;
}

/* ---------- FORMS ---------- */

input,
textarea,
select{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:6px;
    margin-bottom:20px;
    font-size:1rem;
}

input:focus,
textarea:focus,
select:focus{
    outline:none;
    border-color:#c49a3d;
}

/* ---------- IMAGES ---------- */

img{
    max-width:100%;
    display:block;
}

/* ---------- GALLERY ---------- */

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

.gallery-grid figure{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.gallery-grid img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.gallery-grid figcaption{
    padding:18px;
    font-weight:700;
    color:#0b2f5b;
    text-align:center;
}

/* ---------- FOOTER ---------- */

footer{
    background:#091f3d;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h3{
    color:white;
}

footer p{
    color:#dddddd;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:900px){

    body{
        font-size:17px;
    }

    header .container{
        display:grid;
        grid-template-columns:1fr auto;
        align-items:center;
        gap:15px;
        padding:14px 0;
    }

    .logo{
        gap:12px;
    }

    .logo img{
        width:58px;
    }

    .logo h1{
        font-size:1.15rem;
    }

    .logo p{
        font-size:.8rem;
        line-height:1.2;
    }

    .menu-toggle{
        display:block;
        padding:10px 14px;
        white-space:nowrap;
    }

    nav{
        grid-column:1 / -1;
        display:none;
        width:100%;
    }

    nav.open{
        display:block;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        gap:0;
        background:#091f3d;
        border-radius:10px;
        overflow:hidden;
    }

    nav li{
        border-bottom:1px solid rgba(255,255,255,.14);
    }

    nav li:last-child{
        border-bottom:none;
    }

    nav a{
        display:block;
        padding:15px;
        text-align:center;
        font-size:1.05rem;
    }

    .hero{
        padding:80px 0;
    }

    .hero h2{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1.1rem;
    }

    .meeting-card{
        grid-template-columns:1fr;
        gap:30px;
        padding:28px;
    }

    section{
        padding:60px 0;
    }

    h2{
        font-size:2rem;
    }
}

@media(max-width:600px){

    .button{
        display:block;
        width:100%;
        margin:15px 0;
        text-align:center;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .hero h2{
        font-size:1.8rem;
    }

    .hero p{
        font-size:1rem;
    }

    .meeting-card{
        padding:22px;
    }
}

@media(max-width:480px){

    .logo img{
        width:50px;
    }

    .logo h1{
        font-size:1rem;
    }

    .logo p{
        display:none;
    }

    .menu-toggle{
        font-size:.95rem;
        padding:9px 12px;
    }
}
.meeting-banner {
    background: #8b1e1e;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 600;
}

.meeting-banner strong {
    color: #ffd166;
}