/* Global Styles */
:root {
    --primary-color: #ff9f1c;
    /* Orange */
    --secondary-color: #e71d36;
    /* Red */
    --text-color: #2ec4b6;
    /* Tealish - might change */
    --bg-color: #011627;
    /* Dark Blue/Black */
    --white: #fdfffc;
    --card-bg: #1d2d44;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Header */
header {
    background-color: rgba(1, 22, 39, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    justify-content: center;
    /* Center content horizontally */
    position: relative;
    text-align: center;
    /* Center text */
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.text-content {
    max-width: 800px;
    z-index: 2;
}

.text-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.text-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #aab2bd;
}

/* Burger Scroll Section */
.burger-scroll-section {
    height: 300vh;
    /* Long scroll track */
    position: relative;
    background-color: var(--bg-color);
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#burger-canvas {
    width: 80%;
    height: 80%;
    /* max-width: 1000px; */
    /* Limit max width to avoid pixelation on very large screens */
    /* max-height: 80vh; */
    /* Adjust to ensure it fits with margin */
}

@media (min-width: 1024px) {
    #burger-canvas {
        margin-top: 5vh !important;
    }
}

@media (max-width: 768px) {
    #burger-canvas {
        width: 100% !important;
        height: 80% !important;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--bg-color);
    /* Ensure it covers the fixed burger */
    position: relative;
    z-index: 5;
    /* Sit on top of the fixed burger */
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
    /* Shadow to separate layers */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--bg-color);
    /* Maintain background consistency */
    position: relative;
    z-index: 5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-sm {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-sm:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* Review Section */
.review {
    padding: 80px 0;
    background-color: #0b1d2a;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #aab2bd;
}

.review-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stars {
    color: #ff9f1c;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: var(--card-bg);
    color: var(--white);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-color);
}

.contact-info {
    flex: 1;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 15px;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #011627;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #1d2d44;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.2rem;
    color: var(--white);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: rgba(1, 22, 39, 0.98);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        /* Hidden by default */
        transition: 0.5s;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .burger-menu {
        display: block;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .text-content {
        margin-top: 30px;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }
}

/* Animation Classes */
.hidden-opacity {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Specific delays */
.product-card:nth-child(2) {
    transition-delay: 0.2s;
}

.product-card:nth-child(3) {
    transition-delay: 0.4s;
}

.review-card:nth-child(2) {
    transition-delay: 0.2s;
}

.review-card:nth-child(3) {
    transition-delay: 0.4s;
}