/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Georgia', serif;
    background-color: #0b0b0d;
    color: #e0e0e0;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    background-image: url("samurai-pixel-art-3840x2160-15196.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero h1 {
    font-size: 4vw;
    letter-spacing: 2px;
    color:#5e00a1;
    font-family: 'Mazius';
}

.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #aaa;
}

/* SECTIONS */
section {
    padding: 80px 10%;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4b0082;
}

/* ABOUT */
.about p {
    max-width: 700px;
    margin: auto;
    color: #bbb;
}

/* GALLERY */
.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #333;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* FEATURES */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature {
    background: #111;
    padding: 20px;
    width: 250px;
    border: 1px solid #222;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #4b0082;
}

.feature h3 {
    color: #5b009b;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #050506;
    color: #666;
}
@font-face {
    font-family: 'Mazius';
    src: url('/Fonts/MaziusDisplay-Bold.otf') format('opentype');
}

@media (max-width: 1000px){
    .hero h1 {
    font-size: 9vw;
    letter-spacing: 2px;
    color:#5e00a1;
    font-family: 'Mazius';
    }
}