/* === SCI-FI PERFUME INSPIRED THEME ===
   Color Palette:
   - Deep Black: #0a0a0f
   - Electric Violet: #7a00ff
   - Neon Pink: #ff2ecf
   - Holographic Blue: #00d4ff
   - Soft Gradient Glow, Glass-like Accents
*/

:root {
  --bg-dark: #0a0a0f;
  --violet: #7a00ff;
  --pink: #ff2ecf;
  --blue: #00d4ff;
  --green: #15ff00;
  --text-light: #f5f5fa;
  --glass: rgba(255, 255, 255);
  --shadow-glow: 0 0 20px rgba(122, 0, 255, 0.4);
  --font-body: "Wallpoet", sans-serif;
  --font-accent: "Wallpoet", serif;
}



body {
  background: radial-gradient(circle at top right, #1b0034, var(--bg-dark) 80%);
  color: var(--text-light);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* === Futuristic Perfume Bottle Layout: Elegant Containers === */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* === Header === */
header {
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2rem;
  filter: drop-shadow(0 0 10px var(--violet));
}

/* === Navigation === */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--blue));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--pink);
}

nav a:hover::after {
  width: 100%;
}

/* === Main Sections === */
section {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-glow);
  padding: 2.5rem;
  margin: 3rem 0;
  backdrop-filter: blur(15px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 46, 207, 0.3);
}

section h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--blue);
  border-bottom: 2px solid var(--violet);
  display: inline-block;
  margin-bottom: 1rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dcdce5;
}

/* === Buttons (Crystal Capsule Style) === */
button, .btn {
  background: linear-gradient(90deg, var(--violet), var(--pink));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 46, 207, 0.4);
}

button:hover, .btn:hover {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
  transform: scale(1.05);
}

/* === Footer === */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
}

/* === Subtle Animations === */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px var(--violet), 0 0 20px var(--pink); }
  50% { text-shadow: 0 0 20px var(--blue), 0 0 30px var(--pink); }
}

h1, header {
  animation: neonPulse 4s infinite alternate;
}
