/* =========================
^   GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1d1d1f;
    overflow-x: hidden;
    background: #ffffff;
}

/* =========================
   NAVBAR
========================= */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

#logo img {
    height: 60px;
}

#sections {
    display: flex;
    gap: 15px;
}

.section-item {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
    background-color: rgba(255,255,255,0.4);
    color: #3a3a3a;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.section-item:hover {
    background-color: rgba(255,255,255,0.65);
}

.section-item:active {
    transform: scale(0.97);
}

/* =========================
   HERO
========================= */
#hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

.hero-content h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #d87212;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
}

/* =========================
   EMOJIS FLOAT
========================= */
#emoji-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.emoji {
    position: absolute;
    width: 40px;
    height: 40px;
    object-fit: contain;
    user-select: none;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1d1d1f;
    border-radius: 2px;
    transition: 0.3s ease;
}

#sections-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 80px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 1001;
}

#sections-mobile.active {
    display: flex;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    #sections { display: none; }
    .hamburger { display: flex; }
}