/* Brand Fonts */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #FFFFFF;
    background: #1B1F25;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* BLOCKS */
.block {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* DIVIDER BLOCK */
.block-divider {
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, #303743, #454F61);
}

/* BLOCK 1 — HERO */
.block-hero {
    position: relative;
    color: white;
}

.bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay for readability */
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(27, 31, 37, 0.45);
    z-index: -1;
}

/* NAVIGATION */
.nav {
    position: absolute;
    top: 20px;
    left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

/* HERO TEXT */
.hero-content {
    max-width: 900px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* BLOCK 2 — ABOUT (Dark background, white text) */
.block-about {
    background: #303743;
    color: #FFFFFF;
}

.content-wrapper {
    max-width: 900px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BLOCK 3 — INFO (Dark background, white text) */
.block-info {
    background: #1B1F25;
    color: #FFFFFF;
}

ul {
    margin-left: 20px;
}

/* CONTACT */
.contact a {
    color: #E6E6E6;
    font-weight: bold;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #E6E6E6;
    text-align: left;
}