/* DERMAVA COSMETIC - Main Stylesheet mit CSS-Variablen */
:root {
  --primary: #8FAEAE;
  --primary-light: #A1BABA;
  --secondary: #5A7272;
  --secondary-dark: #4A6262;
  --text-dark: #4A4A4A;
  --text-medium: #5A5A5A;
  --text-light: #6A6A6A;
  --bg-light: #FAFBFA;
  --bg-medium: #F5F7F6;
  --bg-dark: #F0F3F2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', Georgia, serif; background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-medium) 50%, var(--bg-dark) 100%); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.delay-200 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-300 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }
.delay-400 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-500 { animation-delay: 0.5s; opacity: 0; animation-fill-mode: forwards; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 40px; background: rgba(250, 251, 250, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(143, 174, 174, 0.1); transition: all 0.3s ease; }
.navbar.scrolled { padding: 12px 40px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.navbar-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-link { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--text-medium); text-decoration: none; position: relative; transition: color 0.3s ease; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--primary); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-item { position: relative; }
.dropdown { position: absolute; top: 100%; left: -20px; background: rgba(250, 251, 250, 0.98); backdrop-filter: blur(20px); border-radius: 10px; padding: 15px 0; min-width: 220px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; margin-top: 15px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 25px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--text-medium); text-decoration: none; transition: all 0.2s ease; }
.dropdown a:hover { color: var(--primary); background: rgba(143, 174, 174, 0.08); }

/* Mobile Menu */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; margin-right: -10px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text-medium); transition: all 0.3s ease; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(250, 251, 250, 0.98); backdrop-filter: blur(20px); z-index: 999; padding-top: 100px; opacity: 0; visibility: hidden; transition: all 0.3s ease; overflow-y: auto; }
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 25px; list-style: none; padding: 20px; }
.mobile-nav-link { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--text-medium); text-decoration: none; }
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-sub { display: flex; flex-direction: column; gap: 15px; margin-top: 5px; }
.mobile-nav-sub a { font-size: 12px; letter-spacing: 2px; color: var(--text-light); }

/* Logo */
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-main { font-size: 32px; font-weight: 300; letter-spacing: -1px; line-height: 1; }
.logo-main .derma { color: var(--text-medium); }
.logo-main .va { color: var(--primary); }
.logo-sub { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 6px; color: var(--primary-light); margin-top: 2px; }
.logo-large .logo-main { font-size: 56px; }
.logo-large .logo-sub { font-size: 14px; letter-spacing: 8px; }

/* Buttons */
.btn-primary { display: inline-block; padding: 18px 50px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; border-radius: 50px; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(143, 174, 174, 0.5); }
.btn-secondary { display: inline-block; padding: 14px 35px; background: transparent; color: var(--primary); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border-radius: 50px; border: 1px solid var(--primary); transition: all 0.3s ease; }
.btn-secondary:hover { background: var(--primary); color: white; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 40px 80px; }
.hero-bg-circle { position: absolute; border-radius: 50%; filter: blur(60px); }
.hero-bg-1 { top: 10%; right: 5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(161, 186, 186, 0.15) 0%, transparent 70%); }
.hero-bg-2 { bottom: 20%; left: 10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(161, 186, 186, 0.1) 0%, transparent 70%); animation-delay: 2s; }
.hero-content { text-align: center; max-width: 900px; z-index: 1; }
.hero-tagline { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--primary); margin: 30px 0 40px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 300; line-height: 1.3; color: var(--text-dark); margin-bottom: 30px; }
.hero h1 span { color: var(--primary); font-style: italic; }
.hero-description { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text-light); max-width: 600px; margin: 0 auto 50px; }

/* Page Hero */
.page-hero { padding: 160px 40px 80px; text-align: center; background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%); position: relative; overflow: hidden; }
.page-hero.with-image { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; opacity: 0.3; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 400; color: var(--text-dark); margin-bottom: 20px; }
.page-hero h1 span { color: var(--primary); font-style: italic; }
.page-hero p { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* Sections */
.section { padding: 120px 40px; }
.section-alt { background: linear-gradient(180deg, var(--bg-dark) 0%, #E8EDEC 100%); }
.section-dark { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: white; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.container-sm { max-width: 1000px; }
.container-xs { max-width: 800px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.section-dark .section-label { color: var(--primary-light); }
.section-title { font-size: 42px; font-weight: 400; color: var(--text-dark); position: relative; display: inline-block; }
.section-dark .section-title { color: white; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-light), transparent); }
.section-description { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; color: var(--text-light); max-width: 600px; margin: 40px auto 0; line-height: 1.8; }
.section-dark .section-description { color: rgba(255,255,255,0.8); max-width: 700px; }

/* About */
.about-centered { text-align: center; max-width: 800px; margin: 0 auto; }
.about-expert-name { font-size: 32px; font-weight: 400; color: var(--primary); margin-top: 10px; margin-bottom: 40px; }
.about-title { font-size: 36px; font-weight: 400; line-height: 1.3; margin-bottom: 40px; color: var(--text-dark); }
.about-title span { font-style: italic; color: var(--primary); }
.about-text-centered { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-medium); max-width: 650px; margin: 0 auto; }
.about-text-centered p { margin-bottom: 20px; }
.about-signature { margin-top: 40px; font-size: 24px; font-style: italic; color: var(--primary); }
.about-signature-image { margin-top: 30px; max-width: 200px; height: auto; }
.about-name { font-family: 'Montserrat', sans-serif; font-size: 14px; letter-spacing: 2px; margin-top: 10px; color: var(--text-medium); }

/* Treatment Cards */
.treatments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.treatment-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(143, 174, 174, 0.1); position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.treatment-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -12px rgba(143, 174, 174, 0.25); }
.treatment-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(161, 186, 186, 0.08) 0%, transparent 70%); border-radius: 50%; }
.treatment-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.treatment-name { font-size: 22px; font-weight: 500; color: var(--text-dark); }
.treatment-price { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 500; color: var(--primary); }
.treatment-duration { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--primary-light); margin-bottom: 15px; text-transform: uppercase; }
.treatment-description { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--text-light); }

/* Green Peel */
.greenpeel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.greenpeel-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 20px; padding: 40px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.greenpeel-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.15); }
.greenpeel-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.greenpeel-name { font-size: 20px; font-weight: 500; max-width: 70%; }
.greenpeel-price { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 500; color: var(--primary-light); }
.greenpeel-description { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.8); }
.greenpeel-card-light { background: white; border: 1px solid rgba(143, 174, 174, 0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.greenpeel-card-light:hover { background: white; box-shadow: 0 25px 50px -12px rgba(143, 174, 174, 0.25); }
.greenpeel-card-light .greenpeel-name { color: var(--text-dark); }
.greenpeel-card-light .greenpeel-price { color: var(--primary); }
.greenpeel-card-light .greenpeel-description { color: var(--text-light); }

/* Microneedling */
.microneedling-box { background: rgba(255,255,255,0.05); border-radius: 20px; padding: 50px; margin-top: 40px; }
.microneedling-box h3 { font-size: 28px; font-weight: 400; margin-bottom: 30px; text-align: center; }
.microneedling-description { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.8); max-width: 800px; margin: 0 auto 40px; text-align: center; }
.microneedling-prices { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.microneedling-item { text-align: center; padding: 20px 40px; background: rgba(255,255,255,0.1); border-radius: 15px; }
.microneedling-item-name { font-family: 'Montserrat', sans-serif; font-size: 12px; margin-bottom: 10px; }
.microneedling-item-duration { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.microneedling-item-price { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 500; color: var(--primary-light); }
.microneedling-box-light { background: var(--bg-medium); }
.microneedling-box-light h3 { color: var(--text-dark); }
.microneedling-box-light .microneedling-description { color: var(--text-light); }
.microneedling-box-light .microneedling-item { background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.microneedling-box-light .microneedling-item-name { color: var(--text-dark); }
.microneedling-box-light .microneedling-item-duration { color: #999; }
.microneedling-box-light .microneedling-item-price { color: var(--primary); }

/* Upgrades */
.upgrades-box { text-align: center; margin-top: 60px; padding: 40px; background: rgba(161, 186, 186, 0.2); border-radius: 20px; }
.upgrades-title { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.upgrades-list { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.9); }

/* Beauty */
.beauty-header-text { font-size: 56px; font-weight: 300; color: #E8EDEC; margin-bottom: -30px; font-style: italic; }
.beauty-subtitle { font-size: 36px; font-weight: 400; color: var(--text-dark); position: relative; z-index: 1; }
.beauty-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--primary); margin-top: 30px; }
.beauty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.beauty-card { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(143, 174, 174, 0.1); }
.beauty-card-title { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid rgba(143, 174, 174, 0.2); }
.beauty-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.beauty-item:last-child { border-bottom: none; }
.beauty-item-name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 400; color: var(--text-medium); }
.beauty-item-price { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; color: var(--primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info { margin-top: 40px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; line-height: 2.2; color: var(--text-medium); }
.contact-info-name { font-weight: 500; color: var(--text-dark); margin-bottom: 5px; }
.contact-card { background: white; border-radius: 30px; padding: 50px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
.contact-card h3 { font-size: 28px; font-weight: 400; color: var(--text-dark); margin-bottom: 30px; }
.contact-details { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; line-height: 2.5; color: var(--text-medium); }
.contact-details a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-details a:hover { color: var(--primary); }
.contact-label { color: var(--primary-light); margin-right: 15px; }
.contact-website { color: var(--primary) !important; }
.instagram-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 15px 30px; font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 1px; }

/* Content */
.content-section { padding: 80px 40px; }
.content-text { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-medium); }
.content-text p { margin-bottom: 20px; }
.content-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--text-dark); margin: 40px 0 20px; }
.content-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--primary); margin: 30px 0 15px; }
.content-text ul { margin: 20px 0; padding-left: 20px; }
.content-text li { margin-bottom: 10px; }
.info-box { background: linear-gradient(135deg, rgba(143, 174, 174, 0.1) 0%, rgba(161, 186, 186, 0.05) 100%); border-radius: 20px; padding: 40px; margin: 40px 0; border-left: 4px solid var(--primary); }
.info-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--text-dark); margin-bottom: 15px; }

/* Footer */
.footer { padding: 40px; background: var(--secondary); text-align: center; }
.footer p { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.6); }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: white; }

.bg-circle { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid, .beauty-grid { grid-template-columns: 1fr; gap: 40px; }
  .greenpeel-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: block; }
  .section { padding: 70px 25px; }
  .hero { padding: 120px 25px 70px; min-height: auto; }
  .page-hero { padding: 130px 25px 60px; }
  .section-header { margin-bottom: 50px; }
}

@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .treatments-grid { grid-template-columns: 1fr; gap: 20px; }
  .logo-main { font-size: 26px; }
  .logo-large .logo-main { font-size: 42px; }
  .section-title { font-size: 28px; }
  .hero h1 { font-size: 28px; }
  .btn-primary { padding: 16px 35px; font-size: 10px; }
  .about-expert-name { font-size: 26px; }
  .about-title { font-size: 28px; }
  .treatment-card, .beauty-card, .greenpeel-card { padding: 30px; }
  .microneedling-prices { flex-direction: column; gap: 20px; }
  .beauty-header-text { font-size: 36px; margin-bottom: -20px; }
  .page-hero h1 { font-size: 28px; }
  .about-signature-image { max-width: 150px; }
}

@media (max-width: 480px) {
  .section { padding: 50px 18px; }
  .hero { padding: 110px 18px 50px; }
  .logo-main { font-size: 24px; }
  .section-title, .hero h1 { font-size: 24px; }
  .treatment-card, .beauty-card, .greenpeel-card, .contact-card { padding: 25px; }
  .greenpeel-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .greenpeel-name { max-width: 100%; }
}
