/* HaarWellen Studio - Premium Friseur Website */
/* Pure HTML + CSS - No JavaScript, No Frameworks */

/* CSS Variables */
:root {
  --primary-color: #F5E6E8;
  --secondary-color: #E8D5D5;
  --accent-color: #D4A5A5;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --card-background: #E8D5D5;
  --sidebar-width: 280px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Sidebar (Fixed Left) */
.sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--primary-color);
  position: fixed;
  left: 0;
  top: 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
  z-index: 1000;
}

.sidebar .logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.sidebar-nav a:hover {
  background: var(--secondary-color);
}

.sidebar-contact {
  padding: 20px;
  background: var(--secondary-color);
  border-radius: 15px;
}

.sidebar-contact p {
  margin-bottom: 10px;
  font-size: 14px;
}

.sidebar-contact p:last-child {
  margin-bottom: 0;
}

.booking-button {
  background: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid var(--accent-color);
}

.sidebar-footer a {
  display: block;
  color: var(--text-color);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.sidebar-footer a:hover {
  color: var(--accent-color);
}

/* Main Content (Right, Scrollable) */
.main-content {
  margin-left: var(--sidebar-width);
  padding: 40px;
  min-height: 100vh;
  background: linear-gradient(135deg, #F5E6E8, #E8D5D5);
}

/* Section Styles */
section {
  margin-bottom: 80px;
  scroll-margin-top: 40px;
}

/* Hero Section */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.hero-image {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.haar-wellen {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50% 30% 50% 30%;
  animation: wave 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
  color: var(--text-color);
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button.primary {
  background: var(--accent-color);
  color: white;
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.button.secondary {
  background: white;
  color: var(--text-color);
  border: 2px solid var(--accent-color);
}

.button.secondary:hover {
  background: var(--secondary-color);
}

/* Animations */
@keyframes wave {
  0%, 100% { border-radius: 50% 30% 50% 30%; }
  50% { border-radius: 30% 50% 30% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Services Section (Vertical List) */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--card-background);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  margin-bottom: 10px;
  color: var(--text-color);
}

.service-info p {
  margin-bottom: 10px;
  color: var(--text-color);
}

.service-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Team Section (Portrait Grid) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: var(--card-background);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.portrait {
  width: 120px;
  height: 120px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-color);
}

.team-member .role {
  font-size: 14px;
  color: var(--accent-color);
}

/* Gallery Section (Masonry Grid) */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
}

.gallery-item {
  background: var(--secondary-color);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* Pricing Section (List) */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: var(--card-background);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-name {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.8;
}

.pricing-price {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
}

/* Reviews Section (Quotes + Stars) */
.reviews-zitate {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-zitat {
  padding: 30px;
  background: var(--card-background);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-zitat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
  font-size: 24px;
  margin-bottom: 15px;
}

.review-zitat p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-color);
}

.author {
  font-size: 14px;
  font-weight: bold;
  color: var(--accent-color);
}

/* Location Section (Small Map + Info) */
.location-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-small {
  height: 250px;
  background: var(--secondary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-info {
  padding: 30px;
  background: var(--card-background);
  border-radius: 15px;
}

.location-info p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.location-info p:last-child {
  margin-bottom: 0;
}

/* Legal Pages Styles */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-page h1 {
  margin-bottom: 30px;
  color: var(--text-color);
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.legal-page p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.legal-page ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-page li {
  margin-bottom: 10px;
  color: var(--text-color);
}

.legal-back-link {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: var(--accent-color);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-back-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 20px;
  }
  
  .main-content {
    margin-left: 0;
    padding: 20px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .haar-wellen {
    height: 300px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  
  .gallery-item.large {
    grid-row: span 1;
  }
  
  .location-small {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .button {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .sidebar-nav a {
    font-size: 16px;
  }
  
  .booking-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}
