/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #0b0c10;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between; /* logo left, links right */
    align-items: center;
    padding: 0 50px; /* horizontal padding */
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* full width */
    height: 70px;
    z-index: 100;
}

/* Logo Image */
.logo-img {
    height: 60px; /* adjust height as needed */
    width: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}


.gradient-text {
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .nav-links li a:hover {
    color: #ff6b6b;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 100px;
    /* adds breathing space below navbar */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* proper spacing between elements */
}

/*log-mid*/

.hero-logo,.hero-logo-img {
    height: 200px; /* adjust height as needed */
    width: auto;
    display: block;
    transition: transform 0.3s;
}

/* Animated 'Coming Soon' Text */
.coming-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 4s linear infinite, glowPulse 2.5s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
    }
}

.subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    color: #ccc;
    line-height: 1.5;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notify-btn {
    margin-top: 20px;
    animation: fadeInUp 1.5s ease-out forwards 0.5s;
    opacity: 0;
}

/* Canvas Background */
#bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Contact Page */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f0f, #1e1e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    /* add top padding for navbar spacing */
    color: #fff;
}

.contact-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.contact-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00ffff, #0070ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-container p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: #bbb;
}

.contact-container input:focus,
.contact-container textarea:focus {
    outline: 2px solid #00ffff;
    background: rgba(255, 255, 255, 0.15);
}

.contact-container .btn {
    display: inline-block;
    background: linear-gradient(90deg, #00ffff, #0070ff);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-container .btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

/* Active link */
.nav-links a.active {
    color: #00ffff;
}

/* Contact Page */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f0f, #1e1e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px; /* top padding for navbar */
    color: #fff;
}

.contact-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Heading */
.contact-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00ffff, #0070ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Paragraph */
.contact-container p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* Inputs & Textarea */
.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: #bbb;
}

.contact-container input:focus,
.contact-container textarea:focus {
    outline: 2px solid #00ffff;
    background: rgba(255, 255, 255, 0.15);
}

/* Validation border animation */
.contact-container input.invalid,
.contact-container textarea.invalid {
    outline: 2px solid #ff6b6b !important;
    background: rgba(255, 0, 0, 0.05);
}

/* Button */
.contact-container .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #00ffff, #0070ff);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-container .btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

/* Loader inside button */
.contact-container .btn .loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Status message */
.contact-container .form-status {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #00ffff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-container .form-status.visible {
    opacity: 1;
}
