/* Global Styles */
:root {
    --primary-color: #ff6600; /* Harley Orange */
    --dark-bg: #0a0a0a;
    --black-bg: #000000;
    --gray-bg: #121212;
    --text-color: #e0e0e0;
    --chrome-gradient: linear-gradient(135deg, #e0e0e0 0%, #999999 50%, #e0e0e0 100%);
    --neon-glow: 0 0 10px rgba(255, 102, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-dark { background-color: var(--dark-bg); }
.bg-black { background-color: var(--black-bg); }
.bg-dark-gray { background-color: var(--gray-bg); }

.text-orange { 
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}
.text-chrome { 
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #fff;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--neon-glow);
}

.btn-small {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 0);
    transition: 0.3s;
}

.btn-small:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
    box-shadow: 0 0 5px var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    color: var(--primary-color) !important;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    box-shadow: var(--neon-glow);
}

.btn-nav::after { display: none; }

.music-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.music-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--neon-glow);
    transform: scale(1.1) rotate(360deg);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1558981285-6f0c94958bb6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    letter-spacing: 5px;
}

.subheadline {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    display: inline-block;
    padding: 0 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.hero-btns {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-header h2::before {
    content: attr(data-text); /* Requires data-text attribute in HTML */
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    white-space: nowrap;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    box-shadow: var(--neon-glow);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.2;
}

.values-list {
    margin-top: 40px;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    padding: 15px;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.values-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 102, 0, 0.1);
}

.values-list i {
    margin-right: 20px;
    width: 30px;
    text-align: center;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: 0;
    opacity: 0.5;
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    filter: grayscale(100%) contrast(120%);
    transition: 0.5s;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.02);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, var(--primary-color), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item h4 {
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Culture Section */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.culture-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 50px 30px;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.culture-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.08);
}

.culture-card:hover::before {
    transform: scaleX(1);
}

.culture-card i {
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 15px var(--primary-color);
    transition: 0.3s;
}

.culture-card:hover i {
    color: var(--primary-color);
    transform: scale(1.2);
}

.culture-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: 0.3s;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: auto;
    text-align: left;
    text-shadow: var(--neon-glow);
}

.benefit-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Events Section */
.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: var(--glass-border);
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.event-date {
    background: transparent;
    color: var(--primary-color);
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.event-date .day {
    font-size: 2.5rem;
    text-shadow: var(--neon-glow);
}

.event-date .month {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.event-details {
    padding: 30px;
    flex-grow: 1;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.event-details p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.event-details i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Merch Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.merch-item {
    background: transparent;
    padding: 0;
    text-align: left;
    border-radius: 0;
    position: relative;
    group: hover;
}

.merch-img {
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 0;
    position: relative;
}

.merch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.merch-item:hover .merch-img img {
    transform: scale(1.1);
}

.merch-item h4 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.merch-item p {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.btn-cart {
    background-color: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 10px 25px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.btn-cart:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--neon-glow);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #050505;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-col p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
    transform: translateY(-5px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aaa;
    transition: 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header h2::before {
        font-size: 4rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .subheadline {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 0;
        text-align: center;
        border-bottom: 1px solid var(--primary-color);
        height: 100vh; /* Full screen menu */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 15px 0;
        display: block;
    }

    .menu-toggle {
        display: block;
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 2rem;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header h2::before {
        font-size: 3rem;
        top: -15px;
    }

    .gallery-grid, .culture-grid, .events-list, .merch-grid {
        grid-template-columns: 1fr; /* Force single column on mobile */
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .benefit-item {
        align-items: center;
        text-align: center;
    }

    .benefit-icon {
        margin-bottom: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
    }
    
    .music-btn {
        margin-left: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header h2::before {
        display: none; /* Hide background text on very small screens to avoid clutter */
    }
}
