/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-status {
    max-width: 600px;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.form-status.success {
    background: rgba(70, 200, 120, 0.15);
    border: 1px solid rgba(70, 200, 120, 0.5);
    color: #baf7cf;
}

/* Bot honeypot - deliberately invisible to normal visitors */
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Smooth Scrolling & Offset for Fixed Navbar */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    line-height: 1.6;
}

/* Liquid Glass Navbar (Left-Aligned Layout) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keeps logo and nav items aligned to the left */
    gap: 40px;
    padding: 0 40px;
    z-index: 1000;
    
    /* Modern Glassmorphism Effect */
    background: rgba(10, 15, 40, 0.35);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover and Active selection with Purple Hue */
.nav-links a:hover,
.nav-links a.active {
    color: #b19ffb; /* Soft Purple Hue */
    text-shadow: 0 0 10px rgba(177, 159, 251, 0.6);
}

/* Hero Section (Centered Height, Slightly Left) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7);
}

.hero-subheader {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-subheader h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #00d2ff;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.8);
}

.discord-link img {
    width: 35px;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

.discord-link img:hover {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 8px rgba(177, 159, 251, 0.8));
}

/* General Content Sections */
.content-section {
    min-height: 80vh;
    padding: 100px 10%;
    background: rgba(0, 5, 15, 0.85); 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #b19ffb;
    border-bottom: 2px solid rgba(177, 159, 251, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

/* About Us Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #cccccc;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Work In Progress */
.wip-box {
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #b19ffb;
    border-radius: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: #aaaaaa;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #b19ffb;
}

.submit-btn {
    background: #b19ffb;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #8e74f8;
    transform: translateY(-2px);
}