/* ============================
   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,   /* PH Blue */
        #3C3B6E,   /* US Navy */
        #CE1126    /* PH Red */
    );
    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;
}

.join-btn {
    background: #FCD116;
    color: #0033A0;
    padding: 8px 15px;
    border-radius: 5px;
}

/* ============================
   HAMBURGER MENU (MOBILE)
============================ */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.7);
    padding: 20px;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* ============================
   HERO SECTION
============================ */
.hero {
    min-height: 100vh;
    background: url('images/lasvegas-bg.jpg') center/cover no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 250px 20px;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: white;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.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;
}

/* ============================
   FOOTER
============================ */
footer {
    background: #0033A0;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* ============================
   RESPONSIVE BREAKPOINTS
============================ */

/* TABLET */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
        text-align: right;
    }
}

/* PHONE */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
}

/* MOBILE MENU ACTIVE */
.mobile-menu.active {
    display: flex;
}



/* ============================
   HOMEPAGE UPCOMING EVENTS
============================ */
.home-events {
    padding: 40px 20px;
    text-align: center;
}

.home-events h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0033A0; /* FAVoLAS Blue */
}

#upcoming-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Event Cards */
.event-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.event-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #CE1126; /* PH Red */
}

.event-card p {
    margin: 5px 0;
    font-size: 16px;
}

/* Event Logo */
.event-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}
