/* Basic Reset & Typography */
:root {
    --primary-blue: #007bff; /* Example, adjust to logo's blue */
    --primary-orange: #fd7e14; /* Example, adjust to logo's orange */
    --accent-purple: #6f42c1; /* Example, adjust to logo's purple/blend */
    --background-dark: #1a1a1a;
    --background-light: #2c2c2c;
    --text-color-light: #f0f0f0;
    --text-color-dark: #cccccc;
    --border-color: #444;
    --card-background: #252525;
    --button-hover: #0056b3;
    --gradient-main: linear-gradient(to right, var(--primary-blue), var(--accent-purple), var(--primary-orange));
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-orange);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
header {
    background-color: var(--background-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color-light);
}

.logo img {
    height: 100px; /* Adjust as needed */
    margin-right: 10px;
}

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

.nav-links li a {
    color: var(--text-color-light);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
    left: 0;
    background: var(--gradient-main);
}

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

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient-main);
    padding: 8rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    opacity: 0.1;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--background-dark);
    color: var(--text-color-light);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--background-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-small-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* General Section Styling */
.section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: var(--text-color-light);
}

.section h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient-main);
    left: 20%;
    bottom: -10px;
    border-radius: 2px;
}

.section p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

.alt-background {
    background-color: var(--background-light);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Align text within wrapper */
}

.content-wrapper h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.content-wrapper h4 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-orange);
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

.content-wrapper ul li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.feature-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-color-dark);
    margin-bottom: 0;
}

/* Add-ons List */
.addons-list, .suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.addon-item, .suggestion-item {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.addon-item h4, .suggestion-item h4 {
    color: var(--accent-purple);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.addon-item p, .suggestion-item p {
    font-size: 0.95rem;
    color: var(--text-color-dark);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--text-color-dark);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-color-dark);
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 60px; /* Adjust based on header height */
        background-color: var(--background-dark);
        flex-direction: column;
        width: 60%;
        height: calc(100vh - 60px);
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 2rem;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li a {
        font-size: 1.4rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 6rem 2rem;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
    }

    .section {
        padding: 4rem 2rem;
    }

    .features-grid, .addons-list, .suggestions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item, .addon-item, .suggestion-item {
        padding: 1.8rem;
    }

    .content-wrapper h3 {
        font-size: 1.5rem;
    }

    .content-wrapper h4 {
        font-size: 1.2rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links a {
        margin: 0;
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Nav Link Animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}