* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 20%);
  background-size: 50px 50px;
}

/* Main nav bar */
.nav {
  background-color: #000;
  color: #fff;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  border-bottom: 2px solid #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.left-nav .logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

/* Top-level menu */
.right-nav .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.right-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.right-nav a:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  transform: translateY(-1px);
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown menus */
.dropdown-menu,
.sub-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  z-index: 1000;
  padding: 6px 0;
  min-width: 200px;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 #000;
}

.dropdown-menu {
  top: 100%;
  left: 0;
  margin-top: 8px;
}

.sub-dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 6px;
}

.dropdown-menu li,
.sub-dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-weight: 500;
}

.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  transform: translateX(4px);
}

/* Desktop hover interactions */
@media (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li.dropdown:hover > .sub-dropdown-menu {
    display: flex;
  }
}

.dropdown-menu li.dropdown:last-child > .sub-dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 6px;
}

.jesus {
  text-shadow: 0px 0px 10px yellow;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jesus:hover {
  text-shadow: 0px 0px 15px yellow;
  transform: scale(1.05);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 50px;
  text-align: center;
}

.welcome-section {
  max-width: 600px;
}

.welcome-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.welcome-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  font-weight: 400;
}

/* Social Media Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 600px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid #000;
  font-weight: 600;
  box-shadow: 6px 6px 0 #000;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 8px 8px 0 #000;
}

.social-link:nth-child(1):hover { border-color: #333; }
.social-link:nth-child(2):hover { border-color: #000; }
.social-link:nth-child(3):hover { border-color: #ff0000; }
.social-link:nth-child(4):hover { border-color: #5865f2; }

.x-icon {
  font-weight: bold;
  font-size: 16px;
}

/* Contribution Section */
.contribution-section {
  max-width: 500px;
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  padding: 35px;
  border-radius: 16px;
  border: 2px solid #000;
  box-shadow: 10px 10px 0 #000;
  position: relative;
}

.contribution-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #000, #333, #000);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.1;
}

.contribution-section h3 {
  color: #000;
  margin-bottom: 18px;
  font-size: 1.5rem;
  font-weight: 700;
}

.contribution-section p {
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.contribute-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid #000;
  font-weight: 600;
  box-shadow: 6px 6px 0 #000;
  position: relative;
  overflow: hidden;
}

.contribute-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.5s;
}

.contribute-btn:hover::before {
  left: 100%;
}

.contribute-btn:hover {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  transform: translateY(-3px) translateX(-2px);
  box-shadow: 8px 8px 0 #000;
}

/* Mobile Friendly Navigation & Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
    position: relative;
  }
  
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  
  .right-nav .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 20px;
    gap: 10px;
    border-bottom: 2px solid #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }

  .right-nav .menu.active {
    display: flex;
  }
  
  .right-nav .menu li {
    width: 100%;
    text-align: center;
  }

  .right-nav a {
    display: block;
    width: 100%;
    padding: 12px;
  }

  /* Controlled purely by JS toggle class on mobile */
  .dropdown-menu,
  .sub-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid #333;
    background-color: #111;
    margin-top: 5px;
    display: none;
    flex-direction: column;
  }

  .dropdown-menu.mobile-open,
  .sub-dropdown-menu.mobile-open {
    display: flex;
  }

  .sub-dropdown-menu {
    margin-left: 0;
  }

  .dropdown-menu li a,
  .sub-dropdown-menu li a {
    color: #fff;
  }

  .dropdown-menu li a:hover,
  .sub-dropdown-menu li a:hover {
    background-color: #fff;
    color: #000;
  }
  
  .main-content {
    padding: 30px 15px;
    gap: 40px;
  }
  
  .welcome-section h1 {
    font-size: 2.2rem;
  }
  
  .welcome-section p {
    font-size: 1.1rem;
  }
  
  .social-links {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 15px;
  }
  
  .social-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .contribution-section {
    padding: 25px;
    margin: 0 15px;
  }

  .contribute-btn {
    width: 100%;
    justify-content: center;
  }
}