/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600&family=Orbitron:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: url('images/daniele-colucci-OtXJhYjbKeg-unsplash.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}


/* Overlay for Better Readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Navbar */
.navbar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    gap: 10px;
}

.nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease-in-out;
}

.nav .nav-link:hover,
.nav .nav-link.active {
    background: white;
    color: black;
    text-decoration: none;
}

/* Navbar Background */
.navbar {
    background: linear-gradient(90deg, #111a2b, #0b0f19);
    padding: 15px;
}

/* Hero Section */
.space-header {
    background: url('mars_background.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.space-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Footer */
footer {
    background: #111a2b;
    padding: 20px;
    margin-top: 50px;
}

/* Space-Themed Scene Title */
.scene-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e63946;
    text-shadow: 0px 0px 8px rgba(230, 57, 70, 0.8);
}

/* Content Sections */
.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}

/* Explore Section Buttons */
.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease-in-out;
}

.btn-outline-light:hover {
    background: white;
    color: black;
}

/* Team Section */
.team-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

/* Team Members */
.team-members {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
}

.team-members li {
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.team-members li:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* Floating Image Frame Styling */
.frame {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.frame img {
    width: 100%;
    max-height: 250px; /* Keeps images within a fixed size */
    object-fit: cover; /* Ensures images scale proportionally */
    aspect-ratio: 16 / 9; /* Maintains 16:9 aspect ratio */
    border-radius: 8px;
}

.frame p {
    margin-top: 8px;
    font-size: 1rem;
    color: white;
}

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

/* Assets & Credits Section */
.container ul {
    padding: 0;
}

.container ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.container ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.container ul li a:hover {
    color: white;
    text-decoration: underline;
}




