/* Base styles */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    z-index: 999;
    box-sizing: border-box;
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dropdown (Header - Select Style) */
.footer-dropdown select {
    padding: 8px;
    font-size: 1em;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
}

/* Mobile/Universal Dropdown */
.mobile-dropdown {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.mobile-dropdown.show {
    display: flex;
}

.mobile-dropdown a {
    padding: 15px 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    background-color: white;
}

.mobile-dropdown a:hover {
    background-color: #f2f2f2;
}

/* Hero Section */
.hero {
    height: 100vh;
    margin-top: 80px;
    background: url('https://us-east-1.tixte.net/uploads/cdn.nsl.syskeyjs.lol/newway_canada_bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    color: white;
    margin: 20px 0;
}

.join-button {
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: black;
    background-color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.join-button:hover {
    background-color: #e0e0e0;
}

/* Content Sections */
.info-section,
.contact-section,
.dropdown-section {
    padding: 50px 20px;
    text-align: center;
}

/* State Dropdown */
.dropdown-section select {
    padding: 10px;
    font-size: 1em;
    background-color: black;
    color: white;
    border: 1px solid white;
}

/* Footer */
.main-footer {
    width: 100%;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.footer-nav {
    display: flex;
    align-items: center;
}

.footer-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Social Media Buttons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.footer-social a img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-header {
        padding: 0 20px;
    }

    .main-footer {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 15px;
    }

    .footer-nav {
        flex-direction: column;
        margin: 10px 0;
    }

    .footer-nav a {
        margin: 10px 0;
    }

    .footer-dropdown {
        margin-top: 10px;
    }

    .footer-social {
        margin-top: 10px;
        justify-content: center;
    }
}

/* Optional Hamburger Dropdown Support */
.header-menu-wrapper {
    position: relative;
    display: inline-block;
}

.header-hamburger {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.header-dropdown-menu {
    position: absolute;
    right: 0;
    top: 50px;
    background-color: white;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 999;
    min-width: 180px;
}

.header-dropdown-menu a {
    padding: 12px 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
}

.header-dropdown-menu a:hover {
    background-color: #f2f2f2;
}

/* Styles for the container holding the boxes */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Styles for each individual box */
.box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-align: center;
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Image inside the box */
.box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Paragraph text */
.box p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

/* Join button */
.box button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.box button:hover {
    background-color: #0056b3;
}

.important-message-box {
    display: flex;
    align-items: center;
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 2em;
    margin: 1em 0;
    border-radius: 5px;
    font-family: sans-serif;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .important-icon {
    font-size: 1.5em;
    margin-right: 0.75em;
  }
  
  .important-content {
    flex: 1;
  }
  
  .important-close {
    background: transparent;
    border: none;
    color: #856404;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0 0.5em;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
  }
  