/* Base Styles */
:root {
  --primary-color: #f8567e;
  --primary-dark: #d2335e;
  --secondary-color: #8457ff;
  --accent-color: #ff914d;
  --light-color: #f9f0f9;
  --dark-color: #2f2c4a;
  --gray-light: #f0f0f6;
  --gray-medium: #c4c4d0;
  --gray-dark: #65637b;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

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

button, .btn {
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
  border: none;
  outline: none;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--dark-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  text-align: center;
}

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

.btn.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn.secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn.secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn.tertiary {
  background-color: transparent;
  border: 1px solid var(--gray-medium);
  color: var(--gray-dark);
}

.btn.tertiary:hover {
  background-color: var(--gray-light);
  color: var(--dark-color);
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo span {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #f6eaf5, #fef8fe);
  padding: 100px 0;
}

.hero-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray-dark);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Product Slider */
.product-slider {
  background-color: white;
}

.product-slider h2 {
  text-align: center;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 calc(25% - 15px);
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.slide:hover {
  transform: translateY(-10px);
}

.slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.slide h3 {
  font-size: 1.3rem;
  margin: 15px 20px 10px;
}

.slide p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin: 0 20px 20px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.slider-controls button {
  background-color: var(--light-color);
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border: none;
}

.slider-controls button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* 3D Button Section */
.three-d-section {
  background: linear-gradient(135deg, #fef6ff 0%, #f0e6fc 100%);
  padding: 80px 0;
}

.three-d-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.three-d-content img {
  flex: 1;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 500px;
}

.three-d-content .text-content {
  flex: 1;
}

.three-d-button-container {
  margin-top: 30px;
}

.three-d-button {
  position: relative;
  padding: 15px 30px;
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.three-d-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  transform: translateZ(-10px);
  z-index: -1;
}

.three-d-button:hover {
  transform: perspective(1000px) translateZ(10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Blog Preview Section */
.blog-preview {
  padding: 80px 0;
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  color: var(--primary-color);
}

.read-more::after {
  content: "→";
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 10px;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.date, .category {
  display: flex;
  align-items: center;
}

.date::before {
  content: "📅";
  margin-right: 5px;
}

.category::before {
  content: "🏷️";
  margin-right: 5px;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, #f6eaf5, #fef8fe);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--gray-dark);
  max-width: 700px;
  margin: 0 auto;
}

/* About Page */
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.team-section {
  background-color: var(--gray-light);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--gray-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 15px 5px;
  font-size: 1.2rem;
}

.team-member p {
  margin: 0 15px 20px;
  font-size: 0.9rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
}

.testimonials {
  background: linear-gradient(135deg, #fef6ff 0%, #f0e6fc 100%);
}

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

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial::before {
  content: """;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  font-family: var(--font-secondary);
  color: var(--light-color);
  line-height: 1;
  z-index: 0;
}

.quote {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.name {
  font-weight: 600;
  margin-bottom: 0;
}

.location {
  color: var(--gray-dark);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cta-section {
  text-align: center;
  background-color: var(--light-color);
}

.cta-section h2 {
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 500;
}

.social-button.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-button.facebook {
  background-color: #1877F2;
}

.social-button.pinterest {
  background-color: #E60023;
}

.social-button:hover {
  opacity: 0.9;
  color: white;
  transform: translateY(-2px);
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: var(--border-radius);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-item p {
  margin-bottom: 5px;
  color: var(--gray-dark);
}

.social-connect {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(132, 87, 255, 0.1);
}

.map-section {
  margin-top: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.thank-you-popup.show {
  display: flex;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.popup-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f7ee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: #00c853;
}

.popup-content h2 {
  margin-bottom: 15px;
}

.popup-content p {
  margin-bottom: 25px;
}

/* Newsletter */
.newsletter {
  background-color: var(--gray-light);
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 15px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.newsletter-form input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 1.5rem;
  font-family: var(--font-secondary);
  margin-bottom: 5px;
}

.tagline {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--gray-medium);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--gray-medium);
}

.footer-contact p i {
  margin-right: 10px;
}

.footer-contact a {
  color: var(--gray-medium);
}

.footer-contact a:hover {
  color: white;
}

.footer-social .social-icons {
  margin-top: 20px;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-social .social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-notice.show {
  display: block;
}

.cookie-content p {
  margin-bottom: 20px;
}

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

.cookie-policy {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.cookie-policy a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Icons */
.icon-location::before {
  content: "📍";
}

.icon-phone::before {
  content: "📞";
}

.icon-mail::before {
  content: "✉️";
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .slide {
    flex: 0 0 calc(33.33% - 15px);
  }
  
  .about-content,
  .three-d-content {
    flex-direction: column;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .slide {
    flex: 0 0 calc(50% - 15px);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .slide {
    flex: 0 0 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 15px;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}
