/**
 * Beauty Concept Köln - Main Stylesheet
 * Version: 1.0.0
 */

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 2rem;
}

/* Site Branding */
.site-branding {
  flex-shrink: 0;
}

.site-title {
  margin: 0;
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

.site-title a {
  color: var(--color-rose-900);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: var(--color-rose-700);
}

.site-description {
  display: none;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  max-height: 60px;
  width: auto;
}

/* Primary Navigation */
.primary-navigation {
  display: none;
}

@media (min-width: 768px) {
  .primary-navigation {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: var(--color-rose-900);
}

.nav-menu .current-menu-item a {
  border-bottom: 2px solid var(--color-rose-900);
}

/* Dropdown Menus */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  display: block;
}

.nav-menu .sub-menu a {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.nav-menu .sub-menu a:hover {
  background-color: var(--color-rose-50);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-rose-900);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .menu-toggle-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid var(--color-neutral-100);
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--color-neutral-100);
}

.mobile-nav-menu a {
  display: block;
  padding: 1rem;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item a {
  background-color: var(--color-rose-50);
  color: var(--color-rose-900);
}

.mobile-menu-cta {
  padding: 1rem;
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.site-content {
  padding-top: 80px;
  min-height: 60vh;
}

.site-main {
  margin-bottom: 0;
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-rose-50) 0%, #ffffff 50%, var(--color-amber-50) 100%);
  overflow: hidden;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 196, 196, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-rose-100);
  color: var(--color-rose-900);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title .highlight {
  display: block;
  color: var(--color-rose-900);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-100);
}

.hero-feature {
  text-align: center;
}

.hero-feature-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  color: var(--color-rose-900);
}

.hero-feature-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-900);
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--color-rose-200) 0%, var(--color-amber-200) 100%);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
}

.hero-image-placeholder svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.about-image {
  position: relative;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .about-image {
    margin-bottom: 0;
  }
}

.about-image-wrapper {
  aspect-ratio: 1/1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--color-rose-100) 0%, var(--color-amber-100) 100%);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-name {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.about-role {
  font-size: 1.25rem;
  color: var(--color-rose-900);
}

.about-text {
  color: var(--color-gray-600);
  line-height: 1.75;
}

.about-signature {
  padding-top: 1rem;
  border-top: 1px solid var(--color-neutral-100);
}

.about-signature-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-rose-900);
}

.about-signature-title {
  color: var(--color-gray-600);
  margin-top: 0.25rem;
}

/* Micro-Needling Highlight */
.microneedling-section {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--color-rose-900), var(--color-rose-800));
  color: #ffffff;
}

.microneedling-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.microneedling-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.microneedling-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.microneedling-image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.microneedling-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Treatments Section */
.treatments-section {
  padding: 5rem 0;
  background-color: var(--color-neutral-50);
}

.treatment-category {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 3rem;
}

.treatment-category-header {
  background: linear-gradient(to right, var(--color-rose-50), var(--color-amber-50));
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-rose-100);
}

.treatment-category-title {
  font-size: 1.75rem;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.treatment-category-description {
  color: var(--color-gray-600);
}

.treatment-category-body {
  padding: 1.5rem;
}

.treatment-item {
  border: 1px solid var(--color-neutral-100);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.treatment-item:hover {
  border-color: var(--color-rose-900);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.treatment-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.treatment-item-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-gray-900);
}

.treatment-item-price {
  color: var(--color-rose-900);
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.treatment-item-description {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.treatment-item-duration {
  display: flex;
  align-items: center;
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

.treatment-item-duration svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

/* Brands Section */
.brands-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.brand-card {
  background: linear-gradient(135deg, var(--color-rose-50) 0%, var(--color-amber-50) 100%);
  border: 1px solid var(--color-rose-100);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.brand-icon {
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-rose-900);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.brand-specialty {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.brands-shop-cta {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(to right, var(--color-rose-50), var(--color-amber-50));
  border-radius: 1rem;
  padding: 2rem;
}

.brands-shop-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.brands-shop-cta p {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-rose-900) 0%, var(--color-rose-800) 100%);
  color: #ffffff;
  text-align: center;
}

.contact-cta-section h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--color-gray-900);
  color: #ffffff;
}

.footer-main {
  padding: 3rem 0;
}

.footer-widgets {
  margin-bottom: 2rem;
}

.footer-widget-area h3,
.footer-widget-area h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-widget-area p,
.footer-widget-area li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-widget-area a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-widget-area a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 0.75rem;
}

.opening-hours {
  margin-bottom: 0.75rem;
}

.opening-hours-note {
  font-style: italic;
  font-size: 0.8125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .footer-menu ul {
    justify-content: flex-end;
  }
}

.footer-menu a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-rose-900);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(136, 19, 55, 0.5);
  transition: all 0.3s ease;
}

.floating-contact-btn:hover {
  background-color: var(--color-rose-800);
  transform: scale(1.1);
  box-shadow: 0 20px 30px -5px rgba(136, 19, 55, 0.6);
  color: #ffffff;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.contact-form label {
  display: block;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-neutral-100);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-rose-900);
  box-shadow: 0 0 0 3px rgba(136, 19, 55, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-rose-900);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-rose-900);
  outline-offset: 2px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .floating-contact-btn,
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .site-content {
    padding-top: 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
}