/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@800&family=Work+Sans:wght@400;700&display=swap');

/* Root Variables */
:root {
    --bg-dark: #1D1135;
    --text-on-dark: #FFFFFF;
    --text-on-light: #222831; 
    
    /* Accent Colors */
    --accent-green: #39FF14;
    --accent-blue: #00BFFF;
    --accent-yellow: #FFFF00;
    --accent-red: #FF3131;
    --accent-magenta: #FF44CC; 
    --accent-white: #FFFFFF; 

    /* Fonts */
    --header-font: 'Syne', sans-serif;
    --body-font: 'Work Sans', sans-serif;
}

/* Animations */
@keyframes neon-pulse {
    0%, 100% { text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px var(--accent-green); }
    50% { text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 24px var(--accent-green); }
}

/* General Styles */
*, *::before, *::after {
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--bg-dark);
    color: var(--text-on-light);
    line-height: 1.6; 
    overflow-wrap: break-word; /* Prevents long words from overflowing their container */
}

h1, h2, h3 {
    font-family: var(--header-font);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Fluid Typography for Responsive Titles */
h1 { 
    font-size: clamp(2.2rem, 7vw + 1rem, 4.2rem); /* Scales between 2.5rem and 4.5rem */
    
}
h2 { 
    font-size: clamp(1.2rem, 5vw + 1rem, 3rem); /* Scales between 2rem and 3rem */
    text-align: center; 
    margin-bottom: 2rem; 
}
p { 
    margin-bottom: 1.5rem; 
    font-size: 1.1rem; 
}

/* List Styling with Bullet Points */
ul {
    list-style-type: disc; /* Ensure bullet points are visible */
    padding-left: 25px;      /* Add indentation for the bullets */
    text-align: left;        /* Align list text to the left for readability */
}

li {
    margin-bottom: 0.75rem; /* Space out list items */
}


/* Layout & Background System */
.hero-section, .content-section, .final-cta-section {
    position: relative;
    padding: 8rem 2rem; /* Added more horizontal padding */
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.hero-section::before, .content-section::before, .final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(29, 17, 53, 0.85), rgba(29, 17, 53, 0.85));
    z-index: 1;
}

.container {
    width: 100%; /* Take up full width of parent */
    max-width: 1100px;
    margin: 0 auto; /* This centers the container */
    padding: 0 1.5rem; /* Adjusted padding for better spacing on mobile */
    position: relative;
    z-index: 2;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Header & Navbar */
.hero-section { min-height: 100vh; }
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    box-sizing: border-box;
    z-index: 3;
}
.logo { font-family: var(--header-font);font-size: 2rem;animation: neon-pulse 3s ease-in-out infinite; }
.logo a { color: var(--text-on-dark);text-decoration: none;}
.nav-links a { text-decoration: none; margin-left: 2rem; font-weight: 700; transition: color 0.3s; color: var(--accent-blue);}
.nav-links a:hover { color: var(--accent-green); }

/* Buttons */
.cta-button {
    font-family: var(--body-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    background-color: var(--accent-green);
    color: var(--text-on-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    display: inline-block;
}
.cta-button:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 0 25px rgba(57, 255, 20, 1); }
.button-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }



/* Stick Models (Homepage) */
.stick-models { display: grid;  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; text-align: center; }
.stick-models a {text-decoration: none;color: var(--accent-white);}

.stick-card { background: rgba(255, 255, 255, 0.1); padding: 1.5rem;  border-radius: 20px; transition: all 0.3s ease; 
    border: 2px solid transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; 
    background-size: 100%; background-position: center; background-repeat: no-repeat;
}
.stick-card img {width: 100%;max-width: 150px; height: auto;margin-bottom: 1rem; /* Creates space between the image and the title */}
.stick-card:hover { transform: translateY(-10px); }

/* Hover effect colors for each stick */
.stick-card:nth-of-type(1):hover { border-color: var(--accent-yellow); box-shadow: 0 0 20px var(--accent-yellow); }
.stick-card:nth-of-type(2):hover { border-color: var(--accent-red); box-shadow: 0 0 20px var(--accent-red); }
.stick-card:nth-of-type(4):hover { border-color: var(--accent-blue); box-shadow: 0 0 20px var(--accent-blue); }
.stick-card:nth-of-type(3):hover, .stick-card:nth-of-type(5):hover { border-color: var(--accent-green); box-shadow: 0 0 20px var(--accent-green); }

.stick-card h3 {font-size: clamp(0.6rem, 1vw, 2rem); white-space: nowrap; }
/* modal*/
/* Image Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding: 2rem;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}



/* Testimonials */
.testimonials-section { background-color: var(--bg-dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem;}
.testimonial { background: rgba(0, 0, 0, 0.2); padding: 2rem; border-radius: 20px; border-left: 5px solid var(--accent-green); text-align: left; }
.testimonial blockquote { margin: 0; font-style: italic; font-size: 1.1rem; }
.testimonial cite { display: block; margin-top: 1rem; font-weight: 700; color: var(--accent-green); }

/* Stick Showcase (Sticks Page) */
.stick-showcase-section { background-color: var(--bg-dark); }
.stick-showcase { display: flex; align-items: center; gap: 3rem; margin-bottom: 5rem; text-align: left; }
.stick-showcase.reverse { flex-direction: row-reverse; }
.stick-showcase img { width: 45%; border-radius: 20px; }
.stick-showcase .stick-details { width: 55%; }
/* .stick-showcase .stick-details h3 { font-size: clamp(0.6rem, 4vw + 1rem, 2.5rem); margin-bottom: 1rem; color: var(--accent-green);  } */
.stick-showcase .stick-details h3 { color: var(--accent-green);  }

/* Social Grid (Tribe Page) */
.social-proof-section { background-color: var(--bg-dark); }
.social-buttons { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin-top: 3rem; }
.social-grid img { width: 100%; border-radius: 15px; transition: transform 0.3s ease; }
.social-grid img:hover { transform: scale(1.05); }

/* Contact Grid (Connect Page) */
.connect-options-section { background-color: var(--bg-dark); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; text-align: center; }
.contact-card { background: rgba(0, 0, 0, 0.2); padding: 2.5rem; border-radius: 20px; border-top: 5px solid var(--accent-blue); transition: all 0.3s ease; }
.contact-card:hover { transform: translateY(-10px); border-top-color: var(--accent-green); }
.contact-card h3 { font-size: clamp(1.5rem, 3vw + 1rem, 1.6rem); color: var(--accent-blue); transition: color 0.3s ease; }
.contact-card:hover h3 { color: var(--accent-green); }
.contact-link, .contact-link a { font-weight: 700; font-size: 1.2rem; color: #fff; text-decoration: none; word-break: break-word; }
address.contact-link { font-style: normal; }

/* Single Product Page Styles */
.product-details-section { background-color: var(--bg-dark); }
.product-layout { display: flex; gap: 3rem; text-align: left; }
.product-gallery { width: 50%; }
.main-image img { width: 100%; border-radius: 20px; }
.thumbnail-images { display: flex; gap: 1rem; margin-top: 1rem; }
.thumbnail { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 3px solid transparent; transition: border-color 0.3s; }
.thumbnail.active { border-color: var(--accent-green); }
.product-info { width: 50%; }
.product-info h2 { text-align: left; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--accent-green); margin-bottom: 1rem; }
.specs-list { list-style: none; padding: 0; } /* Keep specs list clean */
.specs-list li { margin-bottom: 0.5rem; }
.purchase-options { margin: 2rem 0; }
.purchase-options label { font-weight: 700; margin-right: 1rem; }
#size-select { padding: 0.5rem; border-radius: 5px; border: none; font-size: 1rem; }
.add-to-cart { width: 100%; text-align: center; margin-top: 1rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 1rem; background: rgba(29, 17, 53, 0.5); }
    .nav-links { margin-top: 1rem; }
    .nav-links a { margin: 0 0.5rem; }
    section, .hero-section, footer { padding: 5rem 1rem; background-attachment: scroll; } /* Disable parallax on mobile */

    .stick-showcase, .stick-showcase.reverse { flex-direction: column; text-align: center; }
    .stick-showcase img, .stick-showcase .stick-details { width: 100%; max-width: 500px; }
    
    .product-layout { flex-direction: column; }
    .product-gallery, .product-info { width: 100%; }
}

@media (max-width: 670px) {
    h1 { font-size: 1.2rem; }
    h2 { font-size: 1.1rem; }
    .cta-button { font-size: 1rem; padding: 0.8rem 1.5rem; max-width: 90%; }
}
