/* ============================== */
/* 🍔 Apple Drawer Toggle Button */
/* ============================== */

.hamburger {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 1100;
  transition: background 0.3s ease, border 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.light-mode .hamburger {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .hamburger span {
  background: #111;
}

/* 📱 Mobile Drawer – Hydroland Music Section */
.drawer-section h2 {
  font-size: 1.1rem;
  color: #4dd8ff;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: left;
}

.drawer-section .profile-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #4dd8ff;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 0.75rem;
}

.drawer-section .profile-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #66e0ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.drawer-section img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  margin-top: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}


/* ============================== */
/* 📱 Mobile Drawer Styles       */
/* ============================== */

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #0e0e0e;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1050;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
}

.mobile-drawer.open {
  transform: translateX(0);
}

body.light-mode .mobile-drawer {
  background: #fff;
  color: #111;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.06);
}

/* ❌ Close Button */
.close-drawer {
  font-size: 1.75rem;
  background: none;
  border: none;
  color: inherit;
  margin-bottom: 1.25rem;
  cursor: pointer;
  display: inline-block;
}

/* 🍏 Logo and Identity */
.drawer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.drawer-logo img {
  width: 88px;
  height: auto;
  margin-bottom: 0.5rem;
  display: block;
}

.drawer-logo h1 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.25rem 0;
}


/* 🗂 Sections */
.drawer-section {
  margin-bottom: 2rem;
}

.drawer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.drawer-section a {
  display: block;
  color: #4dd8ff;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 0.4rem;
  transition: color 0.2s ease;
}

.drawer-section a:hover {
  color: #66e0ff;
}

body.light-mode .drawer-section a {
  color: #007aff;
}

body.light-mode .drawer-section a:hover {
  color: #005fcc;
}

/* 📬 Contact Form */
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-contact input,
.drawer-contact textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  border-radius: 6px;
  background: #fff;
  color: #111;
}

.drawer-contact button {
  padding: 0.6rem;
  background: #007aff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.drawer-contact button:hover {
  background: #005fcc;
}

body.dark-mode .drawer-contact input,
body.dark-mode .drawer-contact textarea {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
}

/* 📱 Responsive Handling */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none !important;
  }
}
