/* nuLook/styles.css
   Dedicated stylesheet for nuLook/index.html
   Edit colors, effects, and custom sections here without touching HTML.
*/
@import url("../css/hero.css");
@import url("../css/function.css");
@import url("../css/members.css");


/* Modern CSS Reset */

/* Use a more intuitive box-sizing model for all elements */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Prevent text size adjustment on mobile */
html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header glass/blur effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Optional: Utilities for quick tweaks */
:root {
  /* Example variables you can use in future custom rules */
  --brand-blue-700: #1e3a8a;
  --brand-blue-600: #2563eb;
  --brand-blue-500: #3b82f6;
}

/* Example custom class (use in HTML if needed) */
.section-divider {
  height: 4px;
  width: 96px;
  margin: 1.5rem auto;
  background: var(--brand-blue-600);
  border-radius: 9999px;
}

/* ------------------------------------
  AOS Animation Overrides
 ------------------------------------ */
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* ------------------------------------
   Utilities: Custom widget background helpers
   (Removed Tailwind @layer wrapper so these work in the browser)
   ------------------------------------ */
.custom-widget-bg {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.custom-widget-bg:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  background-color: #d0e6fb; /* Darker blue on hover */
}

/* ------------------------------------
   Utility: Subtle hover lift (add to cards if desired)
   ------------------------------------ */
.hover\:-translate-y-1:hover {transform: translateY(-0.25rem);} /* Mimics Tailwind's -translate-y-1 */


/* ------------------------------------
   Dropdown Menu Styles
   ------------------------------------ */
/* Container for each dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown menu hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(218, 172, 246, 0.408); /* Adjust background as needed */
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  z-index: 1000;
}

/* Individual links inside dropdown */
.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: normal;
  transition: background-color 0.3s ease;
}

/* Change background on hover */
.dropdown-content a:hover {
  background-color: #6fbff485; /* Light blue highlight */
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: adjust dropdown link hover color */
.dropdown > a:hover {
  color: #2563eb; /* Tailwind's blue-600 */
}


