/* 🌈 Dopamine Color System */
:root {
  --primary: #ff4d4f;
  --primary-dark: #d9363e;
  --accent: #00bcd4;
  --bg: #f9f9f9;
  --text: #333;
  --white: #fff;
}

/* 🔧 Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* 🧱 Header Container */
.rmcHeader {
  background-color: #f8f9fb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* 🔷 Logo */
.rmcLogoText {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c2c2c;
  text-decoration: none;
}

@media (max-width: 768px) {
  .rmcLogoText {
    font-size: 1.2rem;
  }
}

/* 🔗 Navigation */
.rmcNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rmcNav a {
  color: #444;
  font-weight: 500;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rmcNav a:hover,
.rmcNav a.active {
  color: #007acc;
}

/* 🔽 Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 6px;
  margin-top: 10px;
}

.rmcNav .nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin-bottom: 8px;
}

.dropdown-menu li a {
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
}

/* 📞 CTA Button */
.ctaButton {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.ctaButton:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .ctaButton {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* 📱 Mobile Toggle */
.mobileToggle {
  font-size: 1.5rem;
  color: #007acc;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .mobileToggle {
    display: block;
  }
}

/* 📱 Mobile Menu */
.mobileMenu {
  display: none;
  flex-direction: column;
  background-color: #f0f2f5;
  padding: 20px;
  animation: slideIn 0.3s ease forwards;
}

.mobileMenu a {
  color: #444;
  margin-bottom: 15px;
  font-weight: 500;
  text-decoration: none;
}

.mobileMenu a:hover {
  color: #007acc;
}

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

/* 🔐 Login Link */
.rmcLogin {
  color: #007acc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rmcLogin:hover {
  color: #333;
}