/* ===== GENERAL ===== */
body {
    font-family: 'Helvetica', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background: #fefcf7;
    cursor: default;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 80px;
    z-index: 3000;
    background: transparent;
}

#header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Circle Menu Button */
#menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#menu-toggle span {
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* X animation */
#menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: #f2bd91; }
#menu-toggle.active span:nth-child(2) { opacity: 0; }
#menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); background: #f2bd91; }

/* LANGUAGE OPTIONS */
#lang-switch {
    display: flex;
    gap: 10px;
}
.lang-opt {
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}
.lang-opt:hover { color: #f2bd91; }

/* OVERLAY MENU */
#overlay-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
#overlay-menu.active { display: flex; }

.overlay-links li a {
    color: #fff;
    font-size: 2.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s, transform 0.3s;
}
.overlay-links li a:hover { color: #f2bd91; transform: scale(1.2); }

/* HERO & HIGHLIGHTS */
#hero {
    height: 100vh;
    background: #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* HIGHLIGHT BOXES */
#highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 70px;
    text-align: center;
    margin: 160px 50px 80px 50px;
    justify-items: center;
}

.highlight-box {
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
    background-color: #222;
    color: #f2bd91;
    text-align: center;
    padding: 50px 20px;
    font-size: 0.9rem;
}

/* SOCIAL LINKS */
#social-links {
    margin-top: 10px;
    font-size: 1rem;
}
#social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
#social-links a:hover { color: #f2bd91; }
