:root {
    --navbar-height: 80px;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: clamp(2px, 1vw, 8px);
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    letter-spacing: clamp(1.5px, 0.6vw, 4px);
    font-weight: 400;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #fff;
}


p {
    text-align: center;
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    line-height: 1.5;
    letter-spacing: clamp(0.5px, 0.3vw, 1px);
    color: #ddd;
    opacity: 0.85;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);

    flex-wrap: nowrap;
}

.logo {
    font-size: clamp(1.2rem, 1.4vw, 2rem);
    font-weight: 300;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

.logo a {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.logo img {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
    .logo img {
        width: 32px;
        height: auto;
    }
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Full Screen Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-items {
    list-style: none;
    text-align: center;
}

.menu-items li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.menu-overlay.active .menu-items li {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-items li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-items li:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .menu-items li:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active .menu-items li:nth-child(4) { transition-delay: 0.4s; }
.menu-overlay.active .menu-items li:nth-child(5) { transition-delay: 0.5s; }

.menu-items a {
    color: #fff;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-items a:hover {
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-items a {
        font-size: 2rem;
    }

    .navbar {
        padding: 15px 20px;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Loading Text */
.loading-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.loading-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}
