/* ===================================
   DIVINE FIL GODDESS - BLACK & GOLD THEME
   Premium Design System
   =================================== */

/* ===================================
   CSS VARIABLES & DESIGN TOKENS
   =================================== */
:root {
  /* Color Palette - Black & Gold */
  --color-black: #000000;
  --color-rich-black: #0a0a0a;
  --color-dark-gray: #1a1a1a;
  --color-charcoal: #2a2a2a;

  --color-gold: #d4af37;
  --color-bright-gold: #ffd700;
  --color-antique-gold: #c9a961;
  --color-dark-gold: #b8941e;

  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --color-light-gray: #cccccc;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8941e 100%);
  --gradient-gold-radial: radial-gradient(circle, #ffd700 0%, #d4af37 50%, #b8941e 100%);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
  --shadow-gold-intense: 0 0 40px rgba(255, 215, 0, 0.7);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background: var(--color-black);
  color: var(--color-off-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  z-index: -1;
  animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

h1 {
  font-size: var(--text-6xl);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

h2 {
  font-size: var(--text-5xl);
}

h3 {
  font-size: var(--text-4xl);
}

h4 {
  font-size: var(--text-3xl);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-light-gray);
  font-size: var(--text-lg);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

a:hover {
  color: var(--color-bright-gold);
  text-shadow: var(--shadow-gold);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg) var(--space-2xl);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: var(--space-md) var(--space-2xl);
  background: rgba(0, 0, 0, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.logo:hover {
  filter: drop-shadow(var(--shadow-gold));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: var(--space-2xl);
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-sm);
  margin-left: var(--space-lg);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: var(--space-sm);
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: var(--space-lg) var(--space-2xl);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-intense);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--color-black);
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-4xl) var(--space-2xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: var(--text-7xl);
  margin-bottom: var(--space-xl);
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--color-antique-gold);
  margin-bottom: var(--space-2xl);
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--color-light-gray);
  margin-bottom: var(--space-3xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Floating particles effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
}

.section-dark {
  background: var(--color-rich-black);
}

.section-darker {
  background: var(--color-black);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: var(--text-xl);
  color: var(--color-light-gray);
  font-family: var(--font-accent);
  font-style: italic;
}

/* ===================================
   CARDS & GLASSMORPHISM
   =================================== */
.card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.card:hover::before {
  opacity: 0.05;
}

.card-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.card-text {
  color: var(--color-light-gray);
  line-height: 1.8;
}

/* ===================================
   GRID LAYOUTS
   =================================== */
.grid {
  display: grid;
  gap: var(--space-2xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===================================
   PROFILE & GALLERY
   =================================== */
.profile-section {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.profile-image-container {
  display: inline-block;
  position: relative;
  padding: 8px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-gold-intense);
  animation: pulse-glow 3s ease-in-out infinite;
}

.profile-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--color-black);
  border: 4px solid var(--color-black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.profile-placeholder {
  font-size: var(--text-6xl);
  color: var(--color-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(212, 175, 55, 0.2) 100%);
  z-index: 1;
  transition: all var(--transition-base);
}

.gallery-placeholder {
  font-size: var(--text-6xl);
  color: var(--color-gold);
  z-index: 2;
  position: relative;
  opacity: 0.6;
  transition: all var(--transition-base);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 3;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-overlay p {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin: 0;
  font-style: italic;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold-intense);
}

.gallery-item:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.gallery-item:hover .gallery-placeholder {
  opacity: 0.3;
  transform: scale(1.2);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Instructions for adding images */
.gallery-item[style*="background-image"] .gallery-placeholder,
.profile-image[style*="background-image"] .profile-placeholder {
  display: none;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-rich-black);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: var(--text-4xl);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.footer-text {
  color: var(--color-light-gray);
  margin-bottom: var(--space-xl);
}

.social-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  font-size: var(--text-xl);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-gold);
  color: var(--color-black);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-gold);
}

.copyright {
  color: var(--color-charcoal);
  font-size: var(--text-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-3xl) var(--space-2xl);
    transition: left var(--transition-base);
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  :root {
    --text-7xl: 2rem;
    --text-6xl: 1.75rem;
    --text-5xl: 1.5rem;
  }

  .section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .navbar {
    padding: var(--space-md) var(--space-lg);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}