/*
=================================================================
CSS STYLES
Author: Gemini AI
Description: A clean, modern, single-file CSS implementation.
=================================================================
*/

/* ------------------- */
/* 1. Root & Globals */
/* ------------------- */
:root {
    /* Color Palette */
    --navy-dark: #0a192f;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --white: #e6f1ff;
    --neon-gold: #FFD700;
    --neon-gold-hover: #ffdf33;

    /* Light Theme Palette */
    --light-bg: #f4f7fd;
    --light-text: #1d2a3b;
    --light-card-bg: #ffffff;
    --light-slate: #546a7b;

    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-speed: 0.3s ease;
    --box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

/* Set theme variables based on the class on the <html> element */
.dark-theme {
    --bg-color: var(--navy-dark);
    --text-color: var(--slate);
    --heading-color: var(--white);
    --card-bg: #112240;
    --border-color: #233554;
    --icon-color: var(--neon-gold);
}

.light-theme {
    --bg-color: var(--light-bg);
    --text-color: var(--light-slate);
    --heading-color: var(--light-text);
    --card-bg: var(--light-card-bg);
    --border-color: #dbe4f3;
    --icon-color: var(--navy-dark);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a {
    color: var(--neon-gold);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--neon-gold-hover);
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 100px 0;
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}

/* ------------------- */
/* 2. Utility Classes  */
/* ------------------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
    border: 1px solid var(--neon-gold);
}

.btn-primary {
    background-color: var(--neon-gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background-color: var(--neon-gold-hover);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--neon-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}


/* ------------------- */
/* 3. Header & Nav   */
/* ------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.85);
    
    transition: top 0.3s;
}

.light-theme .header {
     background-color: rgba(255, 255, 255, 0.85);
}

.logo {
    display: block;
    height: 3.5rem; /* Adjust as needed */
    color: var(--heading-color);
}

.logo-svg {
    height: 100%;
    width: auto;
}

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

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.light-theme .nav-links a {
    color: var(--light-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--neon-gold);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Theme Toggle */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}
.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 48px;
}
.theme-switch input { display: none; }
.slider {
    background-color: var(--border-color);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 16px;
    border-radius: 50%;
}
input:checked + .slider { background-color: var(--neon-gold); }
input:checked + .slider:before { transform: translateX(24px); }

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--white);
}
.light-theme .cart-icon {
    color: var(--light-text);
}
.cart-icon i { font-size: 1.5rem; }
.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--neon-gold);
    color: var(--navy-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-nav-toggle .fa-bars, .mobile-nav-toggle .fa-times {
    font-size: 1.8rem;
    color: var(--heading-color);
}
.mobile-nav-toggle .fa-times { display: none; }

/* ------------------- */
/* 4. Hero        */
/* ------------------- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    background-image: url('art/background images/popupshop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.5);
    z-index: 1;
}

.hero-logo {
    width: 50vw;
    max-width: 40rem;
    min-width: 25rem;
    display: block;
    margin: 0 auto 1.5rem;
}

#hero .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}
#hero .pitch {
    color: var(--neon-gold);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
#hero h1 {
    margin-bottom: 1.5rem;
}
#hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--light-slate);
}

/* ------------------- */
/* 5. Sections    */
/* ------------------- */
/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.process-step {
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}
.process-step .icon {
    font-size: 3rem;
    color: var(--neon-gold);
    margin-bottom: 1rem;
}

.process-step-1 {
  transition-delay: 100ms;
}

.process-step-2 {
  transition-delay: 200ms;
}

.process-step-3 {
  transition-delay: 300ms;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}
.product-card .product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
}
.product-card .product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}
.product-card .product-image-container .product-image-back {
    opacity: 0;
}
.product-card .product-image-container:hover .product-image-back {
    opacity: 1;
}
.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-info h3 {
    margin-bottom: 0.5rem;
}
.product-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--heading-color);
}

/* Video Section */
#video .container p {
    text-align: center;
    max-width: 800px;
    margin: -40px auto 40px;
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--border-color);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* New styles for services page */
#influencer-merch-section .main-service-title {
    color: var(--neon-gold);
    font-size: clamp(2rem, 4vw, 3rem); /* A bit smaller than default h1 */
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--white);
    margin: -10px auto 40px;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
}

.value-props {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.value-props h2 {
    text-align: center;
    margin-top: 0;
}

.value-props ul {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
}

.value-props li {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.value-props li:last-child {
    border-bottom: none;
}

.value-props li:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

.value-props li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

#influencer-merch-section .contact-form-container {
    padding-top: 1rem;
}



/* ------------------- */
/* 6. Forms       */
/* ------------------- */
.form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--heading-color);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-gold);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ------------------- */
/* 7. Calendly Widget  */
/* ------------------- */
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    border-radius: 8px;
    overflow: hidden;
}

/* ------------------- */
/* 8. Shopping Cart   */
/* ------------------- */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 1002;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}
.cart-modal.open {
    right: 0;
}
.cart-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.cart-header h3 { margin-bottom: 0; }
.close-cart {
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 1.5rem;
    cursor: pointer;
}
.cart-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-price { font-size: 0.9rem; }
.cart-item-remove {
    color: #ff6b6b;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: auto;
}
.cart-empty-message { text-align: center; }
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

#proceed-to-checkout-btn {
    width: 100%;
    text-align: center;
}

/* ------------------- */
/* 9. Footer & Utils */
/* ------------------- */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
    text-align: center;
}

.footer-links a {
    color: var(--neon-gold);
    text-decoration: none;
}

.footer-links span {
    color: var(--neon-gold);
    margin: 0 10px;
}

/* Social Links in Contact Section */
#contact .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start; /* Align to the left as per current design */
    gap: 1.5rem; /* Space between icons */
    margin-top: 1.5rem;
}

#contact .social-links li a {
    display: inline-block;
    color: var(--slate); /* Use a standard text color */
    font-size: 2rem; /* Increased icon size */
    padding: 0.5rem; /* Increase clickable area */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 50px; /* Vertically center the icon */
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Prepare for a border effect */
}

#contact .social-links li a:hover {
    color: var(--neon-gold); /* Highlight color on hover */
    background-color: rgba(255, 215, 0, 0.1); /* Subtle background glow */
    border-color: var(--neon-gold); /* Border effect on hover */
    transform: translateY(-5px) scale(1.1); /* Lift and grow effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.light-theme #contact .social-links li a {
    color: var(--light-slate);
}

.light-theme #contact .social-links li a:hover {
    color: var(--navy-dark);
    background-color: rgba(10, 25, 47, 0.1);
    border-color: var(--navy-dark);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--neon-gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------- */
/* 10. Responsive Design */
/* ------------------- */
@media (max-width: 992px) {
    #contact .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(75vw, 400px);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        background-color: var(--navy-dark);
        box-shadow: -10px 0 30px -15px rgba(2, 12, 27, 0.7);
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }
    .light-theme .nav-links {
        background-color: var(--light-bg);
    }
    
    .nav-links.active {
        right: 0;
    }

    .mobile-nav-toggle {
        display: block;
    }
    .mobile-nav-toggle.active .fa-bars { display: none; }
    .mobile-nav-toggle.active .fa-times { display: block; }
}

.size-selection {
    margin-bottom: 1.5rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.size-option.selected {
    background-color: var(--neon-gold);
    color: var(--navy-dark);
    border-color: var(--neon-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* ------------------- */
/* 11. Checkout & Order Confirmation */
/* ------------------- */
#checkout .checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form h3, .checkout-summary h3 {
    margin-bottom: 1.5rem;
}

#payment-form .form-group {
    margin-bottom: 1rem;
}

#payment-element {
    margin-bottom: 1.5rem;
}

.checkout-summary {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.summary-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.summary-totals {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-line.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--heading-color);
}

#order-confirmation .container {
    text-align: center;
}

#order-summary-container {
    max-width: 600px;
    margin: 2rem auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    #checkout .checkout-grid {
        grid-template-columns: 1fr;
    }
}
.cart-summary-items {
    max-height: 300px; /* Or any height you prefer */
    overflow-y: auto;
    padding-right: 1rem; /* For scrollbar spacing */
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-item-info {
    flex-grow: 1;
}

.summary-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.summary-item-info p {
    font-size: 0.9rem;
    color: var(--slate);
}

.summary-item-price {
    font-size: 1rem;
    font-weight: bold;
    color: var(--heading-color);
}



/* ------------------- */
/* 12. Featured Products Section */
/* ------------------- */
.hero-products {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('art/background images/homepageproductsbackgroundimage.png');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.products-button-container {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
}

.products-button {
    font-size: 1.2rem;
    padding: 0.8rem 1.6rem;
    z-index: 1;
    position: relative;
    background-color: rgba(255, 215, 0, 0.85);
    color: var(--navy-dark);
    border: 1px solid var(--neon-gold);
}

.products-button:hover {
    background-color: var(--neon-gold);
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    #hero .container {
        padding: 0 1rem;
    }

    .hero-logo {
        width: 80vw;
        min-width: auto;
    }

    #process, #video, #contact {
        text-align: center;
    }

    #contact .container {
        gap: 2rem;
    }

    .contact-info {
        text-align: left;
    }
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
    background-blend-mode: overlay;
    z-index: -1;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.brand-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.brand-name {
    padding: 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    color: var(--heading-color);
}
#about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

#about .about-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#about .about-text p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    #about .about-content {
        grid-template-columns: 1fr;
    }
}

/* Invert brand logos in light mode for visibility */
.light-theme .brand-card img {
    filter: invert(1);
}
.process-link {
  text-decoration: none;
  color: inherit;
  display: block; 
}