/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #26282b; /* Steel Gray */
    color: white;
}

/* Navigation Bar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #7851a9; /* Royal Purple */
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

#navbar a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

#navbar a:hover {
    color: #d1c4e9; /* Lighter shade of purple for hover effect */
}

/* Section Styling */
section {
    padding: 80px 20px;
    text-align: center;
}

#home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
#contact {
    background: #3b3e43; /* Slightly lighter Steel Gray */
    padding: 80px 20px;
}

#contact h2 {
    color: #7851a9; /* Royal Purple */
    font-size: 32px;
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    color:#5e3a8c;
}

/* Button Styling */
.button {
    display: inline-block;
    background: #7851a9; /* Royal Purple */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #5e3a8c; /* Darker Royal Purple */
}

/* Babylon.js Canvas */
canvas {
    width: 100%;
    height: 100vh;
    display: block;
}

/* GUI Controls */
.dg.ac {
    top: 80px !important; /* Ensuring it's below the navbar */
}

/* Responsive Design */
@media (max-width: 768px) {
    #navbar {
        padding: 10px 0;
    }
    
    #navbar a {
        font-size: 16px;
    }

    section {
        padding: 60px 10px;
    }

    #contact h2 {
        font-size: 28px;
    }

    #contact p {
        font-size: 16px;
    }
}
