/* ========================================
   BREEZY FABLE - PLAYFUL DYNAMIC DESIGN
   Photography Studio Website Styles
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF9FB 0%, #FFF 50%, #F8F9FA 100%);
  overflow-x: hidden;
}

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

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

a:hover {
  color: #D68E95;
  transform: translateY(-2px);
}

/* ========================================
   TYPOGRAPHY - PLAYFUL & DYNAMIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2C3E50;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8B4B8, #FFD6DC);
  border-radius: 2px;
  animation: slideIn 0.6s ease;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #34495E;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2C3E50;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ========================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ======================================== */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

/* ========================================
   HEADER - PLAYFUL & ANIMATED
   ======================================== */

header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FB 100%);
  box-shadow: 0 4px 20px rgba(232, 180, 184, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
  border-bottom: 3px solid #E8B4B8;
}

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

header img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05) rotate(2deg);
}

header nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #E8B4B8;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

header nav a:hover::before {
  width: 80%;
}

header nav a:hover {
  color: #E8B4B8;
  background: rgba(232, 180, 184, 0.1);
  transform: translateY(-2px);
}

.cta-button {
  background: linear-gradient(135deg, #E8B4B8 0%, #FFD6DC 100%);
  color: #FFFFFF !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(232, 180, 184, 0.5);
  background: linear-gradient(135deg, #D68E95 0%, #E8B4B8 100%);
}

/* ========================================
   MOBILE MENU - ANIMATED BURGER
   ======================================== */

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #E8B4B8, #FFD6DC);
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FB 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: linear-gradient(135deg, #E8B4B8, #FFD6DC);
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.5);
}

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

.mobile-nav a {
  color: #2C3E50;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 15px;
  background: rgba(232, 180, 184, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(232, 180, 184, 0.2);
  border-left-color: #E8B4B8;
  transform: translateX(10px);
  color: #E8B4B8;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
}

/* ========================================
   HERO SECTIONS - PLAYFUL & ENERGETIC
   ======================================== */

.hero {
  background: linear-gradient(135deg, #FFE4E9 0%, #FFF9FB 50%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 214, 220, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  color: #2C3E50;
  margin-bottom: 24px;
  font-size: 52px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero p {
  font-size: 20px;
  color: #34495E;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.primary-cta {
  background: linear-gradient(135deg, #E8B4B8 0%, #FFD6DC 100%);
  color: #FFFFFF !important;
  padding: 16px 40px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.6);
}

.secondary-cta {
  background: #FFFFFF;
  color: #E8B4B8 !important;
  padding: 16px 40px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 17px;
  border: 3px solid #E8B4B8;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-cta:hover {
  background: linear-gradient(135deg, #E8B4B8 0%, #FFD6DC 100%);
  color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
}

/* ========================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ======================================== */

.service-grid,
.value-grid,
.testimonial-grid,
.workshop-grid,
.project-grid,
.collection-grid,
.contact-grid,
.link-grid,
.values-grid,
.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  justify-content: center;
}

.service-card,
.value-card,
.value-point,
.workshop-card,
.project-card,
.collection-card,
.contact-card,
.link-card,
.suggestion-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before,
.value-card::before,
.workshop-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E8B4B8, #FFD6DC, #E8B4B8);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.service-card:hover,
.value-card:hover,
.workshop-card:hover,
.project-card:hover,
.collection-card:hover,
.link-card:hover,
.suggestion-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 180, 184, 0.3);
  border-color: #E8B4B8;
}

.service-card h3,
.value-card h3,
.workshop-card h3,
.project-card h3,
.collection-card h3 {
  color: #E8B4B8;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.value-card p,
.workshop-card p,
.project-card p {
  color: #34495E;
  line-height: 1.8;
  margin-bottom: 16px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #E8B4B8;
  margin: 20px 0;
  display: block;
}

.service-card a,
.workshop-card a {
  color: #E8B4B8;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border: 2px solid #E8B4B8;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.service-card a:hover,
.workshop-card a:hover {
  background: linear-gradient(135deg, #E8B4B8, #FFD6DC);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  border-left: 5px solid #E8B4B8;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(232, 180, 184, 0.3);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.customer-name {
  color: #E8B4B8;
  font-weight: 700;
  font-size: 15px;
  font-style: normal;
  text-align: right;
}

/* ========================================
   SERVICE SECTIONS
   ======================================== */

.services-overview,
.services-detailed,
.unique-value,
.portfolio-categories,
.workshop-offerings {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.12);
  border: 2px solid #FFF9FB;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(232, 180, 184, 0.2);
  border-color: #E8B4B8;
}

.service-detail h2 {
  color: #E8B4B8;
  margin-bottom: 20px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.service-detail li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #34495E;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B4B8;
  font-weight: 700;
  font-size: 20px;
}

/* ========================================
   FORMS & INPUTS
   ======================================== */

.form-placeholder,
.contact-form-section {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.15);
  margin: 32px 0;
}

input,
textarea,
select {
  width: 100%;
  padding: 16px;
  border: 2px solid #E8B4B8;
  border-radius: 15px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #D68E95;
  box-shadow: 0 0 0 4px rgba(232, 180, 184, 0.2);
  transform: translateY(-2px);
}

button[type="submit"] {
  background: linear-gradient(135deg, #E8B4B8 0%, #FFD6DC 100%);
  color: #FFFFFF;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

button[type="submit"]:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.5);
}

/* ========================================
   FILTER BUTTONS
   ======================================== */

.category-filter {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.filter-btn {
  background: #FFFFFF;
  color: #E8B4B8;
  padding: 12px 28px;
  border: 2px solid #E8B4B8;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #E8B4B8, #FFD6DC);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.3);
}

/* ========================================
   FOOTER - PLAYFUL
   ======================================== */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 20px 32px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #E8B4B8;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #E8B4B8;
  border-radius: 2px;
}

.footer-column p {
  color: #BDC3C7;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column nav a {
  color: #BDC3C7;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-column nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #E8B4B8;
}

.footer-column nav a:hover {
  color: #E8B4B8;
  padding-left: 20px;
}

.footer-column nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 2px solid rgba(232, 180, 184, 0.3);
  padding-top: 32px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: #95A5A6;
  margin-bottom: 16px;
}

.legal-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.legal-links a {
  color: #95A5A6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #E8B4B8;
  transform: translateY(-2px);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #E8B4B8;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #E8B4B8, #FFD6DC);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #95A5A6;
  border: 2px solid #95A5A6;
}

.cookie-reject:hover {
  background: #95A5A6;
  color: #2C3E50;
  transform: translateY(-2px);
}

.cookie-settings {
  background: transparent;
  color: #E8B4B8;
  border: 2px solid #E8B4B8;
}

.cookie-settings:hover {
  background: #E8B4B8;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 15px;
  border-left: 4px solid #E8B4B8;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #95A5A6;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #E8B4B8;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(30px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ========================================
   ERROR PAGE (404)
   ======================================== */

.error-hero h1 {
  font-size: 120px;
  color: #E8B4B8;
  text-shadow: 4px 4px 8px rgba(232, 180, 184, 0.3);
  animation: bounce 2s ease infinite;
}

.error-hero h2 {
  font-size: 36px;
  color: #2C3E50;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

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

.philosophy-text {
  font-size: 22px;
  font-style: italic;
  color: #34495E;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  padding: 20px;
}

.trust-element {
  margin-top: 24px;
  font-size: 14px;
  color: #95A5A6;
  font-style: italic;
}

.portfolio-stats,
.guarantee,
.last-updated {
  font-size: 15px;
  color: #95A5A6;
  font-style: italic;
  margin-top: 16px;
}

.project-category,
.piece-count,
.details {
  font-size: 14px;
  color: #95A5A6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.legal-content {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 25px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.1);
}

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

.legal-content h3 {
  color: #34495E;
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: #2C3E50;
  line-height: 1.9;
}

.legal-content a {
  color: #E8B4B8;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #D68E95;
}

.contact-section {
  background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
  padding: 40px;
  border-radius: 25px;
  margin: 40px 0;
  text-align: center;
  border: 2px solid #E8B4B8;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
    border-radius: 0 0 30px 30px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 17px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .primary-cta,
  .secondary-cta {
    width: 100%;
    text-align: center;
  }
  
  .service-grid,
  .value-grid,
  .testimonial-grid,
  .workshop-grid,
  .project-grid,
  .collection-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .value-card,
  .testimonial-card,
  .workshop-card,
  .project-card,
  .collection-card,
  .contact-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  .error-hero h1 {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .value-card,
  .workshop-card,
  .project-card,
  .collection-card {
    flex: 1 1 calc(50% - 28px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 1025px) {
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 100px 20px;
  }
}