:root { --gold: #b8924e; --dark: #121212; }
body { font-family: 'Inter', sans-serif; background-color: #fff; color: var(--dark); overflow-x: hidden; }
h1, h2, h3, .luxury-font { font-family: 'Playfair Display', serif; }

/* Hamburger Animasyonu */
.menu-icon { width: 30px; height: 20px; position: relative; cursor: pointer; z-index: 101; }
.menu-icon span { display: block; position: absolute; height: 1.5px; width: 100%; background: #000; transition: .3s ease-in-out; }
.menu-icon span:nth-child(1) { top: 0px; }
.menu-icon span:nth-child(2) { top: 10px; }
.menu-icon span:nth-child(3) { top: 20px; }
.menu-icon.open span:nth-child(1) { top: 10px; transform: rotate(135deg); }
.menu-icon.open span:nth-child(2) { opacity: 0; left: -60px; }
.menu-icon.open span:nth-child(3) { top: 10px; transform: rotate(-135deg); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fadeIn { animation: fadeIn 1s ease; }

.custom-scrollbar::-webkit-scrollbar { height: 3px; width: 3px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--gold); }