@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Oswald:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');
.logo a {
    text-decoration: none;
    color: inherit;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Oswald', sans-serif;
    background: #000000;
    color: #eeeeee;
    line-height: 1.8;
}

header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(139, 0, 0, 0.6);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Creepster', cursive;
    font-size: 42px;
    color: #8B0000;
    text-shadow: 0 0 15px #ff0000;
}

.logo i {
    font-size: 55px;
    color: white;
    margin-right: 15px;
}

nav ul {
    display: flex;
    gap: 45px;
    list-style: none;
}

nav a {
    color: #eeeeee;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s;
}

nav a:hover {
    color: #8B0000;
    text-shadow: 0 0 12px #ff0000;
}

.hamburger {
    display: none;
    font-size: 34px;
    color: white;
    cursor: pointer;
}

.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(139,0,0,0.4)), url('https://images.pexels.com/photos/15421709/pexels-photo-15421709.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero h1 {
    font-family: 'Creepster', cursive;
    font-size: 85px;
    color: #8B0000;
    text-shadow: 0 0 25px black;
}

.hero p {
    font-size: 32px;
}

section { padding: 120px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.bio-grid img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(139,0,0,0.9);
}

.bio-grid h2 {
    font-family: 'Creepster', cursive;
    font-size: 55px;
    color: #8B0000;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(139,0,0,0.7);
    transition: 0.5s;
}

.gallery-grid img:hover {
    transform: scale(1.08);
}

footer {
    background: #111111;
    color: #888888;
    text-align: center;
    padding: 50px 0;
    border-top: 3px solid #8B0000;
}

@media (max-width: 992px) {
    .hamburger { display: block; }
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(0,0,0,0.95); padding: 30px; text-align: center; }
    nav ul.active { display: flex; }
    .bio-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 60px; }
    .hero p { font-size: 24px; }
}