/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cremige Farbpalette 2025 - Beige, Creme & Warme Töne */
    --primary-color: #D4A574;        /* Warmes Beige */
    --primary-dark: #B8956A;         /* Dunkleres Beige */
    --primary-light: #E6C49A;        /* Helles Beige */
    --secondary-color: #8B7355;      /* Warmes Braun */
    --secondary-dark: #6B5A42;       /* Dunkleres Braun */
    --secondary-light: #A68B6B;      /* Helles Braun */
    --accent-color: #F4E6D1;         /* Cremeweiß */
    --success-color: #A8B88A;        /* Sanftes Grün */
    --warning-color: #E6B366;        /* Warmes Orange */
    --error-color: #D4A574;          /* Warmes Beige für Fehler */
    
    /* Cremige Hintergrundfarben mit Transparenz */
    --bg-primary: rgba(250, 247, 242, 0.85);           /* Sehr helles Creme mit Transparenz */
    --bg-secondary: rgba(245, 240, 232, 0.9);         /* Cremeweiß mit Transparenz */
    --bg-tertiary: rgba(240, 232, 220, 0.85);          /* Warmes Creme mit Transparenz */
    --white: rgba(255, 255, 255, 0.95);
    --light-gray: rgba(248, 245, 240, 0.9);
    --gray-100: #F2EDE5;
    --gray-200: #EAE2D6;
    --gray-300: #DDD4C4;
    --gray-400: #CFC4B0;
    --gray-500: #B8A894;
    --gray-600: #8B7D6B;
    --gray-700: #6B5F4F;
    --gray-800: #4A4037;
    --gray-900: #2D251E;
    --black: #1A1611;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing System (8px base) */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2rem;     /* 32px */
    --space-xl: 3rem;     /* 48px */
    --space-2xl: 4rem;    /* 64px */
    --space-3xl: 6rem;    /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(139, 115, 85, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(139, 115, 85, 0.12), 0 2px 4px -1px rgba(139, 115, 85, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(139, 115, 85, 0.15), 0 4px 6px -2px rgba(139, 115, 85, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(139, 115, 85, 0.15), 0 10px 10px -5px rgba(139, 115, 85, 0.06);
    --shadow-2xl: 0 25px 50px -12px rgba(139, 115, 85, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background: url('public/1.jpg') center center/cover no-repeat fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.75);
    z-index: -1;
    backdrop-filter: blur(1px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: var(--shadow-md);
    font-size: 1.125rem;
    padding: var(--space-md) var(--space-xl);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
    border-radius: var(--radius-2xl);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(139, 115, 85, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-image {
    width: 70px;
    height: auto;
    object-fit: cover;
    
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    position: relative;
    height: 100vh;
    background-image: url('public/1.jpg'); /* Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

/* Filter-Layer mit ::before */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6b5a429b; /* Hier der Filter (dunkel, leicht transparent) */
  z-index: 1;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dunkler transparenter Layer */
  padding: 40px;
  border-radius: 10px;
  color: #fff;
  max-width: 800px;

}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-logo {
    width: 20px;
    height: 20px;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line-1 {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.title-line-2 {
    display: block;
    font-size: 1.75rem;
    font-weight: 400;
    opacity: 0.9;
    color: var(--white);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    opacity: 0.7;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    margin: 0 auto var(--space-xs);
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
    color: var(--secondary-color);
    font-weight: 500;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.badge-logo {
    width: 16px;
    height: 16px;
}

.section-title {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-highlight h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

.about-highlight p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.feature-card {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

.about-visual {
    position: relative;
}

.salon-showcase {
    position: relative;
}

.showcase-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.8), rgba(212, 165, 116, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.showcase-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

/* Services Section */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

/* Grundstruktur */
.slider {
  position: relative;
  width: 370px;
  height: 800px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

/* Pfeile */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  display: none;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}

/* Verstecke die Inputs */
input[type="radio"] {
  display: none;
}

/* Steuerung der Slides */
#slide1:checked ~ .slider .slides {
  transform: translateX(0%);
}
#slide2:checked ~ .slider .slides {
  transform: translateX(-100%);
}
#slide3:checked ~ .slider .slides {
  transform: translateX(-200%);
}

/* Pfeil-Steuerung sichtbar machen */
#slide1:checked ~ .slider .nav-links .for-slide1 {
  display: block;
}
#slide2:checked ~ .slider .nav-links .for-slide2 {
  display: block;
}
#slide3:checked ~ .slider .nav-links .for-slide3 {
  display: block;
}

.service-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured::before {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.service-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.feature-tag {
    background: var(--bg-primary);
    color: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Prices Section */
.prices {
    background: var(--white);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.price-category {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
    border: 2px solid transparent;
}

.price-category:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.category-header h3 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin: 0;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.price-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.service-name {
    font-weight: 500;
    color: var(--gray-700);
    flex: 1;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.price-note {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border-left: 4px solid var(--primary-color);
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.note-content i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.note-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    height: 540px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.8), rgba(212, 165, 116, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.member-info {
    padding: var(--space-xl);
    text-align: center;
}

.member-info h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Text Section */
.team-text {
    background: var(--white);
    padding: var(--space-3xl) 0;
}

.team-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-text-content h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
    font-size: 2.5rem;
}

.team-text-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.team-text-content p:last-child {
    margin-bottom: 0;
}

/* Opening Hours Section */
.opening-hours {
    background: var(--secondary-color);
    color: var(--white);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hours-header h3 {
    color: var(--white);
    margin: 0;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.day-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.day-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.day-status {
    font-size: 0.875rem;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.day-status.open {
    background: var(--success-color);
    color: var(--white);
}

.day-status.closed {
    background: var(--error-color);
    color: var(--white);
}

.day-time {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hours-cta {
    text-align: center;
}

.cta-content h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {    
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}


.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-xs);
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}

.contact-t {
    color:white
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.social-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    transition: all var(--transition-normal);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.social-link.instagram:hover {
    background: #E4405F;
    color: var(--white);
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.whatsapp-content {
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.whatsapp-content h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.whatsapp-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

/* WhatsApp Contact Card */
.whatsapp-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid #25D366;
}

.whatsapp-card .whatsapp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.whatsapp-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.whatsapp-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.footer-main .logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-main .logo-image {
    width: 70px;
    height: auto;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
}

.footer-column ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content,
    .hours-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .prices-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: var(--space-sm);
    }
    
    .hero-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .price-category {
        padding: var(--space-md);
    }