/* ========================
   GLOBAL VARIABLES & COLORS
======================== */
:root {
    --primary-color: #d4a574;
    --text-dark: #333;
    --text-light: #888;
    --bg-light: #f9f9f9;
    --white: #fff;
    --border-color: #e0e0e0;
    --dark-bg: #1a1a1a;
    --black: #000;
    --dropdown-bg: #000;
}

/* ========================
   GLOBAL RESET
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--text-dark);
}

/* ========================
   NAVBAR & HEADER (UNIFIED)
======================== */
header {
    font-family: Arial, sans-serif;
}

.navbar {
    background: var(--border-color);
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 15px;
}

.nav-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #000;
    list-style: none;
    padding: 10px 0;
    top: 100%;
    left: 0;
    min-width: 150px;
    z-index: 100;
}

.dropdown-menu li a {
    display: block;
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}