/* FieryDoll Website - Modern, Distinctive, SEO-Optimized Styles */
:root {
  --primary: #e94e77;
  --secondary: #2a2a72;
  --accent: #f9d423;
  --bg: #f7f7fa;
  --text: #22223b;
  --footer-bg: #2a2a72;
  --footer-text: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.bg-gradient {
  position: fixed;
  z-index: -2;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #e94e77 0%, #2a2a72 100%);
  opacity: 0.23;
  pointer-events: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: rgba(255,255,255,0.13);
  box-shadow: 0 4px 24px rgba(41,41,114,0.10);
  color: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1.5px solid rgba(233,78,119,0.08);
  transition: background 0.3s;
}
.sticky {
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo-title {
  display: flex;
  align-items: center;
}
.logo {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
}
.header h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--accent);
}
.hero {
  background: rgba(255,255,255,0.38);
  box-shadow: 0 8px 32px rgba(41,41,114,0.10);
  padding: 4rem 2.5rem 3rem 2.5rem;
  border-radius: 2rem;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(18px);
  border: 1.5px solid rgba(233,78,119,0.13);
}
.glass {
  background: rgba(255,255,255,0.38);
  box-shadow: 0 8px 32px rgba(41,41,114,0.10);
  backdrop-filter: blur(18px);
  border-radius: 2rem;
  border: 1.5px solid rgba(233,78,119,0.13);
}
.hero-content h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.entertainment {
  padding: 3rem 2.5rem;
  margin: 2.5rem auto;
  max-width: 900px;
}
.entertainment h2 {
  color: var(--secondary);
  font-weight: 700;
}
.entertainment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
  padding: 0;
}
.entertainment-links li {
  list-style: none;
}
.entertainment-links a {
  background: linear-gradient(90deg, #e94e77 60%, #f9d423 100%);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.07rem;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(233,78,119,0.13);
  border: none;
  outline: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.entertainment-links a:hover {
  background: linear-gradient(90deg, #2a2a72 60%, #e94e77 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(41,41,114,0.18);
}
.industry {
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  margin: 2.5rem auto;
  max-width: 900px;
}
.industry h2 {
  color: var(--primary);
  font-weight: 700;
}
.industry ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}
.contact {
  padding: 3rem 2.5rem 3rem 2.5rem;
  margin: 2.5rem auto 3rem auto;
  max-width: 900px;
}
.contact h2 {
  color: var(--secondary);
  font-weight: 700;
}
footer.footer {
  background: rgba(42,42,114,0.85);
  color: var(--footer-text);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  box-shadow: 0 -2px 24px rgba(41,41,114,0.10);
  margin-top: 3rem;
}
.footer-social {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-social a svg {
  filter: drop-shadow(0 2px 8px #e94e77cc);
  transition: transform 0.2s;
}
.footer-social a:hover svg {
  transform: scale(1.15) rotate(-6deg);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo img {
  width: 56px;
  height: 56px;
  margin-bottom: 0.5rem;
}
.footer-info a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 900px) {
  .hero, .entertainment, .industry, .contact {
    padding: 2rem 1rem 2rem 1rem;
    margin: 1.5rem auto;
    border-radius: 1.2rem;
  }
  .header {
    padding: 1rem 1rem;
  }
  .footer {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    border-radius: 1.2rem 1.2rem 0 0;
  }
}
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.1rem;
  }
  .logo {
    width: 36px;
    height: 36px;
  }
  .footer-logo img {
    width: 36px;
    height: 36px;
  }
}
/* Fade-in animation */
.animate-fadein {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
}
.fadein-visible {
  opacity: 1 !important;
  transform: none !important;
}
/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 100;
  background: linear-gradient(135deg, #e94e77 60%, #f9d423 100%);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(233,78,119,0.18);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.fab:hover {
  box-shadow: 0 8px 32px rgba(41,41,114,0.22);
  transform: scale(1.08);
}
.fab svg {
  display: block;
}

