html {
    overflow-y: scroll;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('./assets/bloodline1_smaller.webp') center center / cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.3) 0%, rgba(60, 60, 60, 0.3) 50%, rgba(40, 40, 40, 0.35) 100%);
    z-index: -1;
}

/* Navigation */
.navbar {
    background: transparent;
    color: #fff;
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0c3fc;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-logo:hover {
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: transparent;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 55vw;
    min-width: 330px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.6);
}

.placeholder-image {
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    background: rgba(255,255,255,0.2);
    border: 3px dashed rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.placeholder-image span {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Split Container */
.split-container {
    display: flex;
    height: calc(100vh - 400px);
    min-height: 400px;
}

.split-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease;
    text-decoration: none;
    color: #fff;
}

.split-section.left {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.4) 0%, rgba(90, 90, 90, 0.4) 100%);
}

.split-section.right {
    background: linear-gradient(135deg, rgba(70, 70, 70, 0.4) 0%, rgba(85, 85, 85, 0.4) 100%);
}

.split-section:hover {
    flex: 1.5;
}

.split-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: background 0.5s ease;
}

.split-section:hover::before {
    background: rgba(0,0,0,0.2);
}

.split-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.split-section:hover .split-content h2 {
    transform: scale(1.1);
}

.split-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Pages */
.content-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    color: #fff;
}

.content-page h1 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.5rem;
}

.content-page a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s;
}

.content-page a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.content-section {
    margin-top: 2rem;
}

.content-section h2 {
    color: #e0e0e0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: #e0e0e0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #f5f5f5;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

/* FAQ Items */
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.faq-item h3 {
    margin-top: 0;
    color: #fff;
}

.faq-item p {
    color: #f5f5f5;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image img {
        width: 90vw;
        min-width: 280px;
        border-radius: 10px;
    }

    .placeholder-image {
        height: 200px;
    }

    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split-section {
        min-height: 250px;
    }

    .split-section:hover {
        flex: 1;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .content-page {
        margin: 1rem;
        padding: 1.5rem;
    }

    .content-page h1 {
        font-size: 2rem;
    }
}
