/* General Styles */
:root {
    --color-electric-purple: #BF00FF; /* A vibrant, almost neon purple */
    --color-electric-blue: #00FFFF;   /* A bright, cyan-like blue */
    --color-electric-pink: #FF00BF;   /* A vivid, magenta-like pink */
    --color-black: #0A0A0A;
    --color-white: #F0F0F0;
    --color-gray-dark: #333333;
    --color-gray-light: #BBBBBB;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from dynamic background */
    position: relative;
}

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

/* Dynamic Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-electric-purple), var(--color-electric-blue), var(--color-electric-pink));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2; /* Behind everything */
    opacity: 0.6; /* Subtle overlay */
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Cursor Trail Effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-electric-blue) 0%, var(--color-electric-pink) 100%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease-out, transform 0.05s linear;
    z-index: 9999; /* On top of everything */
    box-shadow: 0 0 15px var(--color-electric-blue), 0 0 30px var(--color-electric-pink);
}

/* Header - Hero Section */
.hero-section {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 4.5em;
    margin-bottom: 10px;
    color: var(--color-white);
    text-shadow: 0 0 15px var(--color-electric-purple);
}

.hero-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    color: var(--color-electric-blue);
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--color-electric-blue);
}

.hero-section p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--color-gray-light);
}

.cta-buttons .btn {
    margin: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn.primary-btn {
    background: linear-gradient(45deg, var(--color-electric-purple), var(--color-electric-pink));
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(191, 0, 255, 0.4);
}

.btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(191, 0, 255, 0.6);
}

.btn.secondary-btn {
    background: var(--color-black);
    color: var(--color-electric-blue);
    border: 2px solid var(--color-electric-blue);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.btn.secondary-btn:hover {
    background: var(--color-electric-blue);
    color: var(--color-black);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
}

.btn.tertiary-btn {
    background: none;
    color: var(--color-gray-light);
    border: 2px solid var(--color-gray-dark);
}

.btn.tertiary-btn:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

/* Navigation */
.main-nav {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

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

.main-nav ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-electric-purple), var(--color-electric-blue));
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--color-electric-blue);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black for content sections */
    margin-bottom: 20px; /* Space between sections */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.section:nth-of-type(even) {
    background-color: rgba(15, 15, 15, 0.8); /* Slightly different background for alternating sections */
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-electric-pink);
    text-shadow: 0 0 10px var(--color-electric-pink);
}

/* Features Section */
.features-section {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--color-electric-blue);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--color-gray-light);
    font-size: 1.05em;
}

/* Video Showcase */
.video-section {
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.video-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-item h3 {
    font-family: var(--font-heading);
    color: var(--color-electric-pink);
    margin-bottom: 20px;
}

.video-item iframe,
.video-item video {
    width: 100%;
    height: 350px; /* Fixed height for consistency */
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--color-electric-purple);
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--color-white);
}

.testimonial-item span {
    font-weight: bold;
    color: var(--color-electric-blue);
}

.testimonial-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-form textarea,
.testimonial-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-gray-dark);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1em;
}

.testimonial-form textarea::placeholder,
.testimonial-form input::placeholder {
    color: var(--color-gray-light);
}

.testimonial-form button {
    align-self: flex-end;
}

/* About Violet Section */
.about-violet-section p {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    font-size: 1.1em;
    color: var(--color-gray-light);
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-gray-dark);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-gray-light);
}

.contact-form button {
    align-self: flex-end;
}

/* Footer */
footer {
    background-color: var(--color-black);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-gray-dark);
    position: relative;
    z-index: 1;
}

footer p {
    color: var(--color-gray-light);
    margin-bottom: 15px;
}

.merch-promo {
    margin-top: 20px;
}

.merch-promo p {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-electric-pink);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.5em;
    }
    .hero-section h2 {
        font-size: 2em;
    }
    .main-nav ul li {
        margin: 0 10px;
    }
    .section h2 {
        font-size: 2.5em;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-section h1 {
        font-size: 2.8em;
    }
    .hero-section h2 {
        font-size: 1.8em;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        padding: 0 10px;
    }
    .main-nav ul li {
        margin: 5px 8px;
    }
    .section {
        padding: 60px 0;
    }
    .section h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2em;
    }
    .hero-section h2 {
        font-size: 1.5em;
    }
    .hero-section p {
        font-size: 1em;
    }
    .main-nav ul li a {
        font-size: 0.9em;
    }
    .feature-item {
        padding: 20px;
    }
    .feature-item h3 {
        font-size: 1.5em;
    }
    .video-item iframe,
    .video-item video {
        height: 250px;
    }
}
/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: rgba(15, 15, 15, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-electric-blue);
}

.chatbot-header {
    background: linear-gradient(90deg, var(--color-electric-purple), var(--color-electric-blue));
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    cursor: pointer;
    border-bottom: 1px solid var(--color-electric-pink);
}

.chatbot-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.3em;
}

.chatbot-header button {
    background: none;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 1.2em;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chatbot-header button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-body {
    padding: 15px;
    height: 400px; /* Fixed height for chat area */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--color-electric-blue);
    border-radius: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message {
    background-color: var(--color-electric-purple);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.bot-message {
    background-color: var(--color-gray-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    color: var(--color-white);
}

.chat-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input textarea {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid var(--color-gray-dark);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1em;
    resize: none; /* Prevent manual resizing */
    min-height: 40px;
    max-height: 100px; /* Limit height expansion */
    overflow-y: auto;
}

.chat-input textarea::placeholder {
    color: var(--color-gray-light);
}

.chat-input .btn {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    white-space: nowrap;
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: 90%;
        bottom: 10px;
        right: 5%;
        left: 5%;
        max-height: 70vh;
    }

    .chatbot-body {
        height: 300px;
    }

    .chat-input {
        flex-wrap: wrap;
    }

    .chat-input textarea {
        width: 100%;
        margin-bottom: 10px;
    }

    .chat-input .btn {
        flex-grow: 1;
    }

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: rgba(15, 15, 15, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-electric-blue);
}

.chatbot-header {
    background: linear-gradient(90deg, var(--color-electric-purple), var(--color-electric-blue));
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    cursor: pointer;
    border-bottom: 1px solid var(--color-electric-pink);
}

.chatbot-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.3em;
}

.chatbot-header button {
    background: none;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 1.2em;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chatbot-header button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-body {
    padding: 15px;
    height: 400px; /* Fixed height for chat area */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--color-electric-blue);
    border-radius: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message {
    background-color: var(--color-electric-purple);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.bot-message {
    background-color: var(--color-gray-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    color: var(--color-white);
}

.chat-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input textarea {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid var(--color-gray-dark);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1em;
    resize: none; /* Prevent manual resizing */
    min-height: 40px;
    max-height: 100px; /* Limit height expansion */
    overflow-y: auto;
}

.chat-input textarea::placeholder {
    color: var(--color-gray-light);
}

.chat-input .btn {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    white-space: nowrap;
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: 90%;
        bottom: 10px;
        right: 5%;
        left: 5%;
        max-height: 70vh;
    }

    .chatbot-body {
        height: 300px;
    }

    .chat-input {
        flex-wrap: wrap;
    }

    .chat-input textarea {
        width: 100%;
        margin-bottom: 10px;
    }

    .chat-input .btn {
        flex-grow: 1;
    }
}

}



/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: rgba(15, 15, 15, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-electric-blue);
}

.chatbot-header {
    background: linear-gradient(90deg, var(--color-electric-purple), var(--color-electric-blue));
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    cursor: pointer;
    border-bottom: 1px solid var(--color-electric-pink);
}

.chatbot-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.3em;
}

.chatbot-header button {
    background: none;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 1.2em;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chatbot-header button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-body {
    padding: 15px;
    height: 400px; /* Fixed height for chat area */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--color-electric-blue);
    border-radius: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message {
    background-color: var(--color-electric-purple);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.bot-message {
    background-color: var(--color-gray-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    color: var(--color-white);
}

.chat-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input textarea {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid var(--color-gray-dark);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1em;
    resize: none; /* Prevent manual resizing */
    min-height: 40px;
    max-height: 100px; /* Limit height expansion */
    overflow-y: auto;
}

.chat-input textarea::placeholder {
    color: var(--color-gray-light);
}

.chat-input .btn {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    white-space: nowrap;
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: 90%;
        bottom: 10px;
        right: 5%;
        left: 5%;
        max-height: 70vh;
    }

    .chatbot-body {
        height: 300px;
    }

    .chat-input {
        flex-wrap: wrap;
    }

    .chat-input textarea {
        width: 100%;
        margin-bottom: 10px;
    }

    .chat-input .btn {
        flex-grow: 1;
    }
}
