/* ================= GENERAL ================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #FFD700;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ================= HEADER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
    width: auto;
}

nav a {
    color: #FFD700;
    margin-left: 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav a:hover {
    color: white;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 100vh;
    background: url('../images/banner-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #FFD700;
    animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
    font-size: 24px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out;
}

.hero-btn {
    padding: 12px 30px;
    background-color: #FFD700;
    color: black;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease-in-out;
}

.hero-btn:hover {
    background-color: white;
    color: black;
}

/* ================= PARTICLES ================= */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ================= LOADER ================= */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #FFD700;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* ================= Animations ================= */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}/* ================= FEATURES SECTION ================= */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #111111;
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.features.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-box {
    width: 300px;
    margin: 20px;
    padding: 30px;
    background: #1c1c1c;
    border: 1px solid #FFD700;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #FFD700;
}

.feature-box h2 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-box p {
    color: white;
    font-size: 16px;
}

/* ================= PRODUCT SECTION ================= */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #111111;
    padding: 80px 20px;
}

.product-card {
    width: 280px;
    background: #1c1c1c;
    border: 1px solid #FFD700;
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #FFD700;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h2 {
    color: #FFD700;
    margin: 10px 0;
    font-size: 22px;
}

.product-card p {
    color: white;
    font-size: 18px;
}

.buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #FFD700;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: white;
    color: black;
}

/* ================= CONTACT FORM SECTION ================= */
.contact-form {
    background: #111111;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-form form {
    background: #1c1c1c;
    padding: 30px;
    border: 1px solid #FFD700;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background: #222222;
    color: #FFD700;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #FFD700;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: white;
    color: black;
}

/* ================= ENTRY FORM ================= */
.entry-form {
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entry-form form {
    background: #1c1c1c;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.entry-form h1 {
    color: #FFD700;
    margin-bottom: 10px;
}

.entry-form p {
    color: white;
    margin-bottom: 20px;
}

.entry-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #222222;
    border: 1px solid #FFD700;
    border-radius: 5px;
    color: #FFD700;
    font-size: 16px;
}

.entry-form button {
    width: 100%;
    padding: 12px;
    background: #FFD700;
    color: black;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entry-form button:hover {
    background: white;
    color: black;
}

/* ================= FOOTER ================= */
footer {
    background-color: #111111;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #FFD700;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .feature-box,
    .product-card {
        width: 90%;
    }

    .dashboard-menu {
        gap: 10px;
    }

    nav a {
        font-size: 16px;
        margin-left: 12px;
    }
}