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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #000, #000);
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #120028;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #6c4bd3;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    background-color: #6c4bd3;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.icon-circle {
    background-color: #6c4bd3;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Hero */
header.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-family: 'Merienda', cursive;
    font-size: 4em;
    font-weight: bold;
}

.hero h2 {
    font-size: 1.5em;
    margin-top: 10px;
}

/* About */
.about {
    padding: 60px 20px;
    text-align: center;
    background: #000;
}

.about h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Services */
.services {
    padding: 60px 20px;
    background: #000;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    width: 300px;
    padding: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card h4 {
    margin: 15px 0 10px;
}

/* Packages */
.packages {
    padding: 60px 20px;
    background: #000;
    text-align: center;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.pkg {
    background: #fff;
    color: #000;
    border-radius: 12px;
    width: 280px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pkg h4 {
    color: #000;
    margin-bottom: 10px;
}

.pkg ul {
    text-align: left;
    padding-left: 20px;
}

.pkg button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.pkg button:hover {
    background: #9e5fff;
    transform: scale(1.05);
}

/* Fulfillment */
.fulfillment {
    padding: 50px 20px;
    background: #000;
    text-align: center;
}

.fulfillment ul {
    max-width: 700px;
    margin: auto;
    text-align: center;
    padding-left: 20px;
}

/* Contact */
footer.contact {
    padding: 50px 20px;
    background: #0d022d;
    text-align: center;
}

.contact a {
    color: #9e7dff;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.contact a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Responsive Design */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero h2 {
        font-size: 1.2em;
    }

    .service-cards, .package-cards {
        gap: 15px;
    }

    .card, .pkg {
        width: 45%;
        min-width: 250px;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cta-button {
        margin-top: 10px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1em;
    }

    .about, .services, .packages, .fulfillment, .contact {
        padding: 40px 15px;
    }

    .service-cards, .package-cards {
        flex-direction: column;
        align-items: center;
    }

    .card, .pkg {
        width: 100%;
        max-width: 320px;
    }

    .about h3, .services h3, .packages h3, .fulfillment h3, .contact h4 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        margin-top: 10px;
        flex-direction: column;
    }

    .service-cards,
    .package-cards {
        flex-direction: column;
    }

    .card,
    .pkg {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }
}
