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

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a3d;
    color: #fff;
    overflow-x: hidden;
}

/* Nebula and Stars Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    z-index: 1;
}

/* Nebula Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.chromethemer.com/download/hd-wallpapers/galaxy-3840x2160.jpg') center/cover no-repeat;
    opacity: 0.5; /* Low opacity to keep text readable */
    z-index: 2;
    mix-blend-mode: screen; /* Enhances nebula colors */
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00d4ff;
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 100px 20px;
    text-align: center;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 1a1a3d, transparent);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #00d4ff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    transition: background 0.3s;
    z-index: 13;
}

.cta-button:hover {
    background: #0099cc;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: scale(1.05);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index:  4;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
    z-index:  4;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    z-index: 100;
}
input#name::placeholder,
input#email::placeholder {
    color: #fff; /* White placeholder text */
    opacity: 0.8; /* Slightly reduced opacity for distinction */
}
textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    padding: 15px;
    background: #00d4ff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 100;
}

button:hover {
    background: #0099cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }

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

    .burger {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
