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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.top-bar {
    background-color: #000;
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
}

.contact-info span {
    margin: 0 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e63946;
}

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

.dropdown-content a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d00000;
}

/* Community Section */
.community {
    padding: 80px 10%;
    background-color: #f8f9fa;
    text-align: center;
}

.community h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1d3557;
}

.community p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #457b9d;
}

.community-highlight {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.mission {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e63946;
}

.mission h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1d3557;
}

.mission button {
    background-color: #1d3557;
    color: white;
    border: none;
    padding: 12px 30px;
    margin: 20px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mission button:hover {
    background-color: #14213d;
}

.hashtag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e63946;
    margin-top: 15px;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    padding: 60px 5%;
    background-color: #1d3557;
    color: white;
}

.feature-card {
    text-align: center;
    padding: 30px;
    margin: 0 20px;
    flex: 1;
    max-width: 300px;
    border: 2px solid #e63946;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
}

/* Merchandise Section */
.merchandise {
    padding: 80px 5%;
    text-align: center;
    background-color: #f1faee;
}

.merchandise h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1d3557;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.merch-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}

.merch-item:hover {
    background-color: #e63946;
    color: white;
    transform: scale(1.05);
}

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-showcase img {
    width: 300px;
    border-radius: 5px;
}

.product-info {
    text-align: left;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1d3557;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e63946;
    margin: 15px 0;
}

.buy-button {
    background-color: #1d3557;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #14213d;
}

/* Specs Section */
.specs {
    padding: 80px 5%;
    background: linear-gradient(to right, #1d3557, #457b9d);
    color: white;
    text-align: center;
}

.specs h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.specs-content {
    max-width: 900px;
    margin: 0 auto;
}

.specs-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.specs-details {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    margin-top: 30px;
}

.specs-details h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #a8dadc;
}

.specs-details ul {
    list-style-position: inside;
}

.specs-details li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Events CTA */
.events-cta {
    padding: 100px 5%;
    background: url('images/community-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.events-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 53, 87, 0.8);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-content button {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-content button:hover {
    background-color: #d00000;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    text-align: left;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e63946;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #a8dadc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #457b9d;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-icons span:hover {
    background-color: #e63946;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #457b9d;
    font-size: 0.9rem;
    color: #a8dadc;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        margin: 15px 0;
        max-width: 80%;
    }
    
    .product-showcase {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .specs-details {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        display: flex;
        flex-direction: column;
    }
    
    .contact-info span {
        margin: 5px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}