﻿/* Dev Tools */

.dev-test-button {
    display: none;
}

.dev-test-product-item {
    display: none;
}

.dev-page-container {
}

.dev-page-title {
}

.higher-dev-text {
}

.lower-dev-text {
}

/* Dev Tools Ends */

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

body {
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    line-height: 1.6;
    background-size:cover;
    background-position:center;
    background-image:url("Gradient.jpg");
    background-attachment:fixed;
}

h1, h2, h3{
    text-decoration: underline;
}

a {
    color: #ff0000;
    text-decoration: none;
}

header {
    background: #111;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 0px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.logo-image{
    width: 100px;
    height: 100%;
    margin:0px;
    padding:0px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
}

.hero {
    text-align: center;
    padding: 4em 2em;
    background: #111;
    border-bottom: 1px solid #333;
}

.services, .about, .contact, .faq, .store, .contact-details {
    padding: 3em 2em;
    max-width: 1000px;
    margin: auto;
}

.contact-details {
    background: #1a1a1a;
    padding: 1.5em;
    border: 1px solid #ff0000;
    border-radius: 8px;
    margin-top: 10px;
}

.service-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.service, .product-card {
    background: #1a1a1a;
    padding: 1.5em;
    border: 1px solid #ff0000;
    border-radius: 8px;
}

.product-image {
    width: 100%;
    display: block;
    border: 1px solid #ff0000;
    border-radius: 4px;
}

.price {
    display: block;
    margin-top: 1em;
    font-weight: bold;
    color: #ff0000;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 500px;
    margin-top: 2em;
}

input, textarea {
    padding: 0.75em;
    border: 1px solid #555;
    border-radius: 4px;
    background: #000;
    color: #fff;
}

button, .dev-test-button {
    background: #ff0000;
    border: none;
    padding: 0.75em;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 1em;
    background: #111;
    border-top: 2px solid #ff0000;
    margin-top: 2em;
}

.product-description {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0.75em;
    border: 1px solid #ff0000;
    border-radius: 4px;
    color: #fff;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger .line {
    width: 25px;
    height: 3px;
    background-color: #ff0000;
    transition: 0.4s;
}

/* Responsive Nav */
nav {
    display: flex;
    align-items: center;
    gap: 2em;
    z-index: 1000;
}

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

@media screen and (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1em;
        border-left: 2px solid #ff0000;
        border-bottom: 2px solid #ff0000;
    }

        .nav-links.active {
            display: flex;
        }
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .cart-modal.visible {
        display: flex;
    }

.cart {
    background: #1a1a1a;
    padding: 2em;
    border: 1px solid #ff0000;
    border-radius: 8px;
    color: #fff;
    width: 90%;
    max-width: 500px;
}

.cart-item {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #444;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.quantity-controls button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 0.3em 0.6em;
    border-radius: 4px;
    cursor: pointer;
}

.faq-item {
    background: #1a1a1a;
    padding: 1.5em;
    border: 1px solid #ff0000;
    border-radius: 8px;
    margin-top: 10px;
}

