/* ==========================================
   RUSTIC HITCH - LUXURY PREMIUM CSS
   Tradition trifft moderne Bartpflege
   Design Style: Luxury & Premium
   ========================================== */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
.location-cta .column {
  background-color: transparent;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2C1810;
  background-color: #F8F6F4;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ==========================================
   LUXURY PREMIUM TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Alfa Slab One', 'Georgia', serif;
  line-height: 1.2;
  color: #2C1810;
  font-weight: 400;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4A574 0%, #8B4513 100%);
  margin-top: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #8B4513;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #3D2817;
}

strong {
  color: #2C1810;
  font-weight: 700;
}

blockquote {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-style: italic;
  padding: 30px 40px;
  margin: 40px 0;
  background: linear-gradient(135deg, #2C1810 0%, #8B4513 100%);
  color: #F8F6F4;
  border-left: 4px solid #D4A574;
  position: relative;
}

blockquote::before {
  content: '\201C';
  font-size: 60px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #D4A574;
  opacity: 0.3;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==========================================
   LUXURY PREMIUM HEADER
   ========================================== */

header {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.3);
  border-bottom: 2px solid #D4A574;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.3));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F8F6F4;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #D4A574;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4A574;
  background: rgba(212, 165, 116, 0.1);
}

.main-nav a:hover::after {
  width: 80%;
}

/* ==========================================
   MOBILE MENU BUTTON
   ========================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
  color: #F8F6F4;
  border: 2px solid #D4A574;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #D4A574 0%, #8B4513 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* ==========================================
   MOBILE MENU OVERLAY
   ========================================== */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
  z-index: 1050;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 3px solid #D4A574;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #D4A574;
  border: 2px solid #D4A574;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #D4A574;
  color: #2C1810;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #F8F6F4;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  background: rgba(212, 165, 116, 0.05);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
  border-color: #D4A574;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* ==========================================
   LUXURY PREMIUM BUTTONS
   ========================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
  color: #F8F6F4;
  border-color: #D4A574;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4A574 0%, #8B4513 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #8B4513;
  border-color: #8B4513;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2C1810 0%, #8B4513 100%);
  color: #F8F6F4;
  border-color: #D4A574;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ==========================================
   LUXURY PREMIUM HERO SECTION
   ========================================== */

.hero {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(26, 15, 10, 0.95) 100%), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMTAwIDAgTCAwIDAgMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyMTIsIDE2NSwgMTE2LCAwLjEpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #D4A574;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #D4A574, transparent);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F8F6F4;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-subheadline {
  color: #D4A574;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.trust-badge {
  color: #F8F6F4;
  font-size: 14px;
  margin-top: 40px;
  padding: 12px 24px;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 30px;
  display: inline-block;
  border: 1px solid #D4A574;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ==========================================
   PAGE HERO (Internal Pages)
   ========================================== */

.page-hero {
  background: linear-gradient(135deg, #2C1810 0%, #8B4513 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #D4A574;
  box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.page-hero h1 {
  color: #F8F6F4;
  margin-bottom: 16px;
}

.page-hero p {
  color: #D4A574;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   LUXURY PREMIUM SECTIONS
   ========================================== */

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  font-size: 18px;
  color: #8B4513;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

/* ==========================================
   FLEXBOX GRID LAYOUTS
   ========================================== */

.three-columns,
.two-columns,
.service-grid,
.testimonial-grid,
.category-grid,
.product-grid,
.values-grid,
.team-grid,
.transformation-grid,
.style-grid,
.results-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.three-columns {
  justify-content: space-between;
}

.column {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.column:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
  border-color: #D4A574;
}

.column img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 8px rgba(139, 69, 19, 0.2));
}

.column h3 {
  color: #2C1810;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.column p {
  color: #3D2817;
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================
   LUXURY PREMIUM CARDS
   ========================================== */

.service-card,
.category-card,
.product-card,
.value-card,
.team-member,
.transformation-card,
.style-card,
.explore-card,
.contact-method {
  flex: 1;
  min-width: 300px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F4 100%);
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(44, 24, 16, 0.15);
  border: 2px solid rgba(212, 165, 116, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before,
.category-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B4513 0%, #D4A574 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover,
.category-card:hover,
.product-card:hover,
.value-card:hover,
.explore-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
  border-color: #D4A574;
}

.service-card:hover::before,
.category-card:hover::before,
.product-card:hover::before {
  transform: scaleX(1);
}

.service-card h3,
.category-card h3,
.product-card h3,
.value-card h3 {
  color: #2C1810;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
  font-family: 'Alfa Slab One', serif;
}

.meta {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #D4A574 0%, #8B4513 100%);
  color: #F8F6F4;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

/* ==========================================
   SERVICE DETAILS
   ========================================== */

.service-item {
  padding: 40px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F4 100%);
  border-radius: 12px;
  border-left: 4px solid #D4A574;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  position: relative;
}

.service-item h2 {
  color: #2C1810;
  margin-bottom: 12px;
}

.service-item .price {
  font-size: 24px;
  color: #8B4513;
  margin-bottom: 20px;
}

.includes {
  font-size: 14px;
  color: #8B4513;
  font-weight: 500;
  margin-top: 20px;
  padding: 16px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

/* ==========================================
   TESTIMONIALS - LUXURY PREMIUM STYLE
   ========================================== */

.testimonials {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
  padding: 80px 20px;
  border-top: 3px solid #D4A574;
  border-bottom: 3px solid #D4A574;
}

.testimonials h2 {
  color: #F8F6F4;
  text-align: center;
  margin-bottom: 50px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #D4A574 0%, #8B4513 100%);
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F4 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #D4A574;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  color: #D4A574;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C1810;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: #8B4513;
  font-size: 14px;
  text-align: right;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ==========================================
   VALUES & FEATURES
   ========================================== */

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.values-row span {
  padding: 12px 24px;
  background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
  color: #F8F6F4;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* ==========================================
   TWO COLUMN LAYOUTS
   ========================================== */

.text-image-section,
.two-columns {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.text-image-section .column,
.two-columns .column {
  flex: 1;
  min-width: 300px;
}

/* ==========================================
   INTRO TEXT & CONTENT
   ========================================== */

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #3D2817;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.note {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  text-align: center;
  margin-top: 30px;
}

/* ==========================================
   CTA SECTIONS
   ========================================== */

.cta-section,
.location-cta,
.shop-info {
  background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 0;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

.cta-section h2,
.location-cta h2 {
  color: #F8F6F4;
  margin-bottom: 20px;
}

.cta-section h2::after,
.location-cta h2::after {
  background: #F8F6F4;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p,
.location-cta p {
  color: #F8F6F4;
  font-size: 18px;
  margin-bottom: 30px;
}

/* ==========================================
   CONTACT & LOCATION
   ========================================== */

.contact-method h3 {
  color: #2C1810;
  margin-bottom: 16px;
}

.contact-info {
  font-size: 20px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
}

.hours-table {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F4 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  border: 2px solid #D4A574;
}

.hours-table p {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  color: #2C1810;
}

.hours-table p:last-child {
  border-bottom: none;
}

.location-info {
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C1810;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: #8B4513;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 12px;
  color: #3D2817;
}

.last-updated {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-bottom: 30px;
}

.subtitle {
  font-size: 18px;
  color: #8B4513;
  margin-bottom: 30px;
  font-weight: 600;
}

/* ==========================================
   THANK YOU PAGE
   ========================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2C1810 0%, #8B4513 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content h1 {
  color: #F8F6F4;
  margin-bottom: 24px;
}

.thank-you-content p {
  color: #D4A574;
  font-size: 20px;
  margin-bottom: 30px;
}

.confirmation {
  font-size: 16px;
  color: #F8F6F4;
  font-style: italic;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F4 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  border: 2px solid #D4A574;
  text-align: center;
}

.step h3 {
  color: #2C1810;
  font-size: 18px;
}

/* ==========================================
   LUXURY PREMIUM FOOTER
   ========================================== */

footer {
  background: linear-gradient(135deg, #1A0F0A 0%, #2C1810 100%);
  color: #F8F6F4;
  padding: 60px 20px 30px;
  border-top: 3px solid #D4A574;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.3));
}

.footer-section h4 {
  color: #D4A574;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-section p {
  color: #F8F6F4;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px 0;
  border-top: 1px solid rgba(212, 165, 116, 0.3);
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  margin-bottom: 30px;
}

.footer-nav a {
  color: #D4A574;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
}

.footer-nav a:hover {
  color: #F8F6F4;
  background: rgba(212, 165, 116, 0.2);
}

.copyright {
  text-align: center;
  color: #D4A574;
  font-size: 14px;
  margin-top: 20px;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
  color: #F8F6F4;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  border-top: 3px solid #D4A574;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 14px;
  color: #F8F6F4;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(135deg, #8B4513 0%, #D4A574 100%);
  color: #F8F6F4;
  border-color: #D4A574;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #D4A574 0%, #8B4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #D4A574;
  border-color: #D4A574;
}

.cookie-reject:hover {
  background: rgba(212, 165, 116, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #F8F6F4;
  border-color: #F8F6F4;
}

.cookie-settings:hover {
  background: rgba(248, 246, 244, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #F8F6F4 0%, #FFFFFF 100%);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid #D4A574;
}

.cookie-modal h2 {
  color: #2C1810;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.cookie-category h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #3D2817;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #8B4513;
}

.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: left 0.3s;
}

.cookie-toggle input[type="checkbox"]:checked::after {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */

@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Layout */
  .header-content {
    justify-content: center;
  }
  
  .logo img {
    height: 50px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Columns */
  .three-columns,
  .two-columns,
  .service-grid,
  .testimonial-grid,
  .category-grid,
  .product-grid,
  .values-grid,
  .team-grid {
    flex-direction: column;
  }
  
  .column,
  .service-card,
  .category-card,
  .product-card,
  .value-card,
  .team-member {
    min-width: 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Spacing */
  section {
    padding: 30px 16px;
  }
  
  .service-item {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .three-columns {
    flex-wrap: wrap;
  }
  
  .column {
    flex: 1 1 calc(50% - 24px);
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 {
    font-size: 64px;
  }
  
  .container {
    padding: 0 40px;
  }
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* ==========================================
   END OF STYLES
   ========================================== */