* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: #0a0a0a;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 52px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: #fff;
    font-weight: 400;
}

/* Scroll Container with Snap */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
/*
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
*/
}

/* Snap Sections */
.snap-section {
    min-height: 100vh;
    width: 100%;
    /*scroll-snap-align: start;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blackbg {
    background-color: #000;
}
/* Hero Section */
.hero-section {
    background: transparent;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 20px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 8px;
}

/* Content Sections */
.section-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 0 60px;
    margin-top: 120px;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: white;
}

.section-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

.section-text br {
    margin-bottom: 10px;
}

/* Footer Section */
.footer-section {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.admin-link {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

figure > img {
  max-width: 100%;
  height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 1499px) {
    .navbar {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li a {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .section-container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .section-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .social-icons a {
        margin: 0 10px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 15px;
    }
}

/* Hide scrollbar for cleaner look */
.scroll-container::-webkit-scrollbar {
    width: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}