/* ================= RESET & ROOT VARIABLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --accent-gold: #c9a96e;
  --text-gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--primary-black);
  line-height: 1.6;
  overflow: hidden;
}

/* ================= MENU OVERLAY ================= */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu-overlay.closing {
  animation: fadeOut 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* ================= CLOSE BUTTON ================= */
.close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.close-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: rotate(90deg) scale(1.1);
}

/* ================= MENU CONTENT ================= */
.menu-content {
  max-width: 800px;
  width: 100%;
  padding: 100px 40px 60px;
  text-align: center;
}

/* Brand */
.menu-brand {
  margin-bottom: 60px;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.menu-brand p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* ================= NAVIGATION LINKS ================= */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}

.menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-50px);
  overflow: hidden;
}

.menu-link.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-link:hover::before {
  transform: scaleY(1);
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  padding-left: 45px;
}

.link-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.link-text {
  flex: 1;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.menu-link i {
  font-size: 20px;
  color: var(--accent-gold);
  transition: transform 0.4s ease;
}

.menu-link:hover i {
  transform: translateX(10px);
}

/* ================= QUICK LINKS ================= */
.quick-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.quick-link.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.quick-link i {
  color: var(--accent-gold);
  font-size: 16px;
}

.quick-link:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.quick-link:hover i {
  color: var(--white);
}

/* ================= SOCIAL LINKS ================= */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0);
}

.social-icon.animate-in {
  opacity: 1;
  transform: scale(1);
}

.social-icon:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

/* ================= MENU FOOTER ================= */
.menu-footer {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 1.2s ease-out;
}

.menu-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 5px 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .close-btn {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .menu-content {
    padding: 80px 30px 40px;
  }

  .menu-brand h1 {
    font-size: 48px;
  }

  .menu-brand p {
    font-size: 14px;
  }

  .link-text {
    font-size: 22px;
  }

  .menu-link {
    padding: 20px 25px;
  }

  .menu-link:hover {
    padding-left: 35px;
  }

  .quick-links {
    gap: 12px;
  }

  .quick-link {
    font-size: 13px;
    padding: 10px 18px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .menu-brand h1 {
    font-size: 36px;
  }

  .link-text {
    font-size: 20px;
  }

  .link-number {
    font-size: 12px;
  }

  .menu-link i {
    font-size: 16px;
  }

  .quick-links {
    flex-direction: column;
    align-items: center;
  }

  .quick-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* ================= DECORATIVE BACKGROUND ================= */
.menu-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50px, 50px) rotate(180deg);
  }
}

.designer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.designer-link:hover {
  text-decoration: underline;
  color: var(--accent-gold); /* or any accent color you use */
}
