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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #e0a800;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 auto;
    margin-left: -15px;
}

.logo {
    height: 80px;
    width: auto;
}

.contact-button {
    flex: 0 0 auto;
    margin-left: 20px;
}

.contact-btn {
    background-color: #3b735f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #3b735f;
}

/* Navigation Styling */
.nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav {
    width: auto;
}

nav ul,
.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li,
.main-nav ul li {
    margin: 0;
}

nav ul li a,
.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    white-space: nowrap;
}

nav ul li a:hover,
.main-nav ul li a:hover {
    color: #e0a800;
}

/* Hero Section */
.hero {
    height: 60vh;
    background-image: url('images/About commuity event 01.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 4rem;
    color: #e0a800;
    font-weight: 700;
}

/* Revolution Section */
.revolution {
    padding: 40px 0;
    background-color: #1e1e1e;
}

.revolution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.revolution-image {
    flex: 1;
    background-color: #4caf5020;
    padding: 20px;
    border-radius: 8px;
}

.revolution-content {
    flex: 2;
    padding: 40px;
}

.revolution-content h2 {
    color: #e0a800;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.revolution-content p {
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: #121212;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-it-works h2 {
    color: #e0a800;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.how-it-works ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.how-it-works ul li strong {
    color: #e0a800;
}

/* Why Participate Section */
.why-participate {
    padding: 60px 0;
    background-color: #1e1e1e;
}

.why-participate .section-container {
    display: flex;
    align-items: center;
}

.why-content {
    flex: 2;
    padding-right: 40px;
}

.why-image {
    flex: 1;
}

.why-participate h2 {
    color: #e0a800;
    margin-bottom: 30px;
    font-size: 2rem;
}

.why-participate ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.why-participate ul li strong {
    color: #e0a800;
}

/* Membership Section */
.membership {
    padding: 60px 0;
    background-color: #121212;
}

.membership .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.membership-titles {
    flex: 1;
    text-align: left;
    padding-right: 30px;
}

.membership h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: left;
}

.rogue-week {
    color: #e0a800;
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
    line-height: 1;
}

.membership-box {
    flex: 1;
    background-color: #e9e9e9;
    border-radius: 8px;
    padding: 30px;
    color: #333;
    text-align: left;
}

.membership-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.membership-box ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.membership-box ul li strong {
    color: #333;
}

/* Ready To Join Section */
.ready-to-join {
    padding: 60px 0;
    background-color: #1e1e1e;
    text-align: center;
}

.ready-to-join h2 {
    color: #e0a800;
    margin-bottom: 20px;
    font-size: 2rem;
}

.ready-to-join p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-link {
    font-weight: 600;
    color: #007bff;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-links ul {
    display: flex;
}

.footer-links ul li {
    margin-right: 20px;
}

.footer-links ul li a {
    color: white;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #e0a800;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e0a800;
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .revolution-container {
        flex-direction: column;
    }
    
    .revolution-image {
        margin-bottom: 30px;
    }
    
    .why-participate .section-container {
        flex-direction: column-reverse;
    }
    
    .why-content {
        padding-right: 0;
        margin-top: 30px;
    }
    
    .membership .section-container {
        flex-direction: column;
    }
    
    .membership-titles {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .membership h2 {
        text-align: center;
    }
    
    .rogue-week {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        justify-content: flex-end;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .social-icons {
        margin-bottom: 20px;
    }
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    border: 1px solid #333;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #333;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #333;
    color: #e0a800;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Make sure the dropdown arrow changes color on hover too */
.dropdown:hover .dropbtn, .dropdown:hover .dropdown-arrow {
    color: #e0a800;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 101;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #e0e0e0;
    transition: transform 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #e0e0e0;
    transition: transform 0.3s ease;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

.menu-toggle.active .hamburger-icon {
    background-color: transparent;
}

.menu-toggle.active .hamburger-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: #1a1a1a;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 576px) {
    /* Header adjustments */
    header {
        padding: 10px 15px;
    }
    
    /* Hero section */
    .hero {
        height: 40vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Revolution section */
    .revolution-container {
        flex-direction: column;
    }
    
    .revolution-image {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .revolution-content {
        flex: none;
        width: 100%;
        padding: 20px;
    }
    
    .revolution-content h2 {
        font-size: 1.5rem;
    }
    
    /* Why participate section */
    .section-container {
        padding: 20px 15px;
    }
    
    .why-participate .section-container {
        flex-direction: column;
    }
    
    .why-content {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .why-image {
        width: 100%;
    }
    
    /* Membership section */
    .membership-titles h1 {
        font-size: 2rem;
    }
    
    .membership-titles h2 {
        font-size: 1.2rem;
    }
    
    .membership-box {
        padding: 15px;
    }
    
    /* Footer adjustments */
    .footer-container {
        padding: 20px 15px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
}

/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 992px) {
    .revolution-container {
        flex-direction: column;
    }
    
    .revolution-image, .revolution-content {
        flex: none;
        width: 100%;
    }
    
    .why-participate .section-container {
        flex-direction: column;
    }
    
    .why-content, .why-image {
        width: 100%;
    }
} 