/* ============================
   GLOBAL STYLES
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* ============================
   HEADER + NAVIGATION
============================ */
header {
    background: linear-gradient(
        135deg,
        #0033A0,
        #3C3B6E,
        #CE1126
    );
    color: white;
    padding: 20px;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 120px;
}

.header-title {
    text-align: center;
    flex-grow: 1;
}

.header-title h1 {
    font-size: 45px;
    font-weight: bold;
}

.header-title h2 {
    font-size: 30px;
    font-weight: normal;
    margin-top: 5px;
}

/* NAVIGATION */
nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 5px;
}

nav a.active {
    border-bottom: 3px solid #FCD116;
    color: #FCD116;
}

/* JOIN BUTTON */
.join-btn {
    background: #FCD116;
    color: #0033A0;
    padding: 8px 15px;
    border-radius: 5px;
}

/* тнР FIX: JOIN US active button readability */
.join-btn.active {
    color: #0033A0 !important;
    border-bottom: none !important;
}

/* ============================
   MOBILE MENU
============================ */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    display: none !important;
    flex-direction: column;
    background: rgba(0,0,0,0.7);
    padding: 20px;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-align: center;
}

.mobile-menu.active {
    display: flex !important;
}

/* ============================
   HERO SECTION
============================ */
.hero {
    min-height: 100vh;
    background: url('images/lasvegas-bg.jpg') center/cover no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 20px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #CE1126;
    color: white;
}

.btn-secondary {
    background: white;
    color: #0033A0;
}

/* ⭐ NEW SMALL FLYER CLASS */
.flyer-small {
    margin-top: 25px;
    max-width: 600px;      /* SHRINKED SIZE */
    width: 80%;
    border-radius: 12px;
    border: 3px solid #FCD116;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* ============================
   FOOTER
============================ */
footer {
    background: #0033A0;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* ============================
   HOMEPAGE EVENTS
============================ */
.home-events {
    padding: 40px 20px;
}

.events-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.events-left {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
    padding-top: 115px;
}

.events-message {
    padding: 20px 25px;
    max-width: 380px;
    background: linear-gradient(135deg, #0033A0, #3C3B6E);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: left;
    margin-left: -80px;
}

.events-message p {
    font-size: 20px;
    line-height: 1.5;
}

.events-message strong {
    color: #FCD116;
    font-size: 22px;
}

.events-right {
    flex: 1.2;
    text-align: center;
}

.events-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0033A0;
}

#upcoming-events {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.event-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.event-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #CE1126;
}

.event-card p {
    margin: 4px 0;
    font-size: 14px;
}

/* ============================
   CONTACT PAGE LINK FIX
============================ */
.contact-link {
    color: #FCD116;
    text-decoration: underline;
    font-size: 20px;
    font-weight: bold;
}

.contact-link:hover {
    color: white;
}

/* ============================
   CONTACT INFO READABILITY FIX
============================ */
.contact-info {
    margin-top: 30px;
    font-size: 18px;
    background: rgba(0,0,0,0.55);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.contact-info p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* ============================
   CONTACT FORM
============================ */
.contact-form {
    max-width: 450px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.contact-form button {
    cursor: pointer;
}

/* ============================
   JOIN DETAILS (JOIN PAGE)
============================ */
.join-details {
    max-width: 700px;
    margin: 25px auto;
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.45);
    padding: 20px 25px;
    border-radius: 10px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

@media (max-width: 900px) {
    .events-row {
        flex-direction: column;
        align-items: center;
    }

    #upcoming-events {
        flex-wrap: wrap;
        justify-content: center;
    }

    .events-left,
    .events-right {
        width: 100%;
        padding-top: 0;
    }

    .events-message {
        margin-left: 0;
    }
}

/* ============================
   ONELINER
============================ */

.one-liner {
    font-size: 16px;
    font-style: italic;
    margin-top: 5px;
    color: #fff;
}

/* ============================
   OFFICERS PAGE
============================ */

.officer-card {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    background: rgba(0,0,0,0.45);
    padding: 25px;
    border-radius: 12px;
}

.officer-card img {
    width: 200px;
    border-radius: 10px;
}

.officer-info {
    flex: 1;
}

.officer-name {
    font-size: 24px;
    font-weight: bold;
}

.officer-role,
.officer-email {
    font-size: 18px;
}

@media (max-width: 768px) {
    .officer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .officer-card img {
        width: 180px;
    }
}
