/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Reset and base styles */
body, h1, h2, h3, p, ul, li, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #121212;
    color: #f1f1f1;
    padding: 20px;
    line-height: 1.6;
}

main {
    margin-top: 80px;
}
/* === Scroll-Aware Sticky Header === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #FFD700;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #FFD700;
    box-shadow: 0 6px 10px rgba(255, 215, 0, 0.2);
    transition: top 0.3s ease;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.header-h1 {
    font-size: 24px;
    color: #FFD700;
    font-weight: bold;
}

/* Navigation styling */
nav {
    flex-grow: 1;
    text-align: right;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #FFD700;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: #FFD700;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .header-h1 {
        font-size: 20px;
    }

    nav {
        width: 100%;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}


/* === Contact Section Styling === */
#contact-section {
    background: #1e1e1e;
    padding: 40px 30px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.15);
    max-width: 700px;
    color: #fff;
}

#contact-section h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #FFD700;
}

#contact-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
}

/* === Form Styling === */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contactForm label {
    font-weight: bold;
    color: #FFD700;
}

#contactForm input,
#contactForm textarea {
    padding: 14px 18px;
    font-size: 1em;
    border: 1px solid #FFD700;
    border-radius: 8px;
    background: #111;
    color: #fff;
    transition: 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #ffc400;
    background: #1a1a1a;
    outline: none;
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

#contactForm button {
    background: #FFD700;
    color: #000;
    padding: 12px;
    font-weight: bold;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

#contactForm button:hover {
    background: #ffc400;
    transform: scale(1.03);
}

/* === Footer Styling === */
footer {
    margin-top: 40px;
    padding: 15px;
    background: #000;
    text-align: center;
    color: #FFD700;
    border-radius: 10px;
    border-top: 2px solid #FFD700;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}
