/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    font-family: "Playfair Display", serif;
    line-height: 1.6;
}

body {
    background: linear-gradient(135deg, #262626 0%, #030106a5 100%);
    color: #333;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #780606;
}

.music-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.music-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.music-btn.playing {
    background: #ffd700;
    color: #333;
}

/* Hero Section */
.Hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #969696;
    padding: 2rem;
}

.hero-container {
    max-width: 800px;
}

.Hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.Hero h1:last-of-type {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-content img {
    width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-content img:hover {
    transform: scale(1.05);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
}

/* About Section */
.about {
    background: rgba(6, 5, 5, 0.95);
    padding: 5rem 0;
    color: #c2b9b9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d8dae3;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background: #000000;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content p {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cause of Death Section */
.cause-of-death {
    background: linear-gradient(135deg, #1c1c1c 0%, #0a0001 100%);
    padding: 5rem 0;
    color: #fff;
}

.cause-of-death h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cause-of-death-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cause-of-death-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cause-of-death-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #780606;
}

.cause-of-death-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #9E0808;
}

/* Footer */
.footer {
    background: #000000;
    color: #1d1c1c;
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    max-width: 800px;
}

.footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        gap: 1rem;
    }

    .Hero h1 {
        font-size: 2rem;
    }

    .Hero h1:last-of-type {
        font-size: 1.8rem;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-content img {
        width: 200px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .cause-of-death-content {
        padding: 2rem;
    }

    .cause-of-death-content h2 {
        font-size: 1.5rem;
    }

    .cause-of-death-content h3 {
        font-size: 1.2rem;
    }
}
