body { font-family: Arial, sans-serif; margin: 0; background: #0f172a; color: #e2e8f0; }
/*
header { padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; background: #020617; box-shadow: 0 .5rem 1rem rgba(255, 255, 255, .15) !important; }
header h1 { margin: 0; font-size: 24px; }
*/

h1 { font-family: 'Marcellus', serif; font-style: italic; text-shadow: 2px 2px 4px #00F; }

nav { background-color: #020617; } 
nav a { color: #e2e8f0; text-decoration: none; }

.hero { padding: 80px 40px 40px; margin-top: 10px; text-align: center; background: url("../../images/header_01.jpg") center/cover no-repeat; color: white; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; }
.hero h2 { font-size: 40px; margin-bottom: 20px; }
.hero p { max-width: 600px; margin: 0 auto; font-size: 18px; }

.grid { color: #000; }

.section { padding: 60px 40px; max-width: 1000px; margin: auto; }

.section-bg {
	background: no-repeat fixed center;
	background-color: rgba(255,255,255, 0.7);
	background-blend-mode: lighten;
}

.section-bg-img01 { 
	background-image: url("../../images/header_01.jpg");
}

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #020617; padding: 20px; border-radius: 12px; }
.card img { width: 100%; border-radius: 8px; margin-bottom: 10px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery img { width: 100%; border-radius: 12px; }

.login, .register { max-width: 400px; margin: 20px auto 0px; padding: 20px; background: #020617; border-radius: 12px; background-image: linear-gradient(to bottom, blue, black); }

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

#password_message_container { display: none; }

footer { text-align: center; padding: 20px; background: #020617; }