/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* background: linear-gradient(to bottom, #0a0a0a, #1a1a1a); */
    background-color: #212C2F;
    /* height: 100vh; */
    /* overflow: hidden; */
    /* display: flex; */
    /* flex-direction: column; */
    /* background-image: url('assets/background.jpg'); */
    /* background-size: cover;
    background-position: center;
    background-attachment: fixed; */
}

/* Nav Styles */
header {
    position: relative;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: flex-start;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    /* optional transparent background */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #ccc;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.logo {
    max-width: 360px;
    margin-bottom: 20px;
    /* filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)); */
}

/* NEW: Subtitle below logo */
.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ffffffcc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));

}

/* Responsive tweak (optional) */
@media (max-width: 768px) {
    .subtitle {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
}

/* Button */
.btn {
    padding: 16px 50px;
    font-size: 1.3rem;
    color: black;
    background-color: #ffcc00;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #ffcc00;
}

.btn:hover {
    background-color: #ffaa00;
    box-shadow: 0 0 15px #ffaa00, 0 0 30px #ffaa00;
}

/* Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 20px;
        font-size: 0.9rem;
    }

    .logo {
        max-width: 250px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

/* Contact Page */
.contact-page {
    max-width: 600px;
    margin: 120px auto 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    text-align: center;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffcc00;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Optional contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    width: 100%;
}

.contact-form button {
    padding: 12px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #ffaa00;
}

/* contact page */
/* Contact Page */
.contact-page {
    max-width: 600px;
    margin: 120px auto 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    text-align: center;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffcc00;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 15px 0;
    color: white;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Optional contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    width: 100%;
}

.contact-form button {
    padding: 12px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #ffaa00;
}