:root {
  --primary: #ffb6c1;
  --accent: #e75480;
  --bg: #fff5f7;
  --text: #333;
  --card-radius: 15px;
  --gradient-bg: linear-gradient(135deg, #ffd1dc 0%, #ffb6d9 50%, #ff85c0 100%);
}
 
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
nav {
  background: linear-gradient(135deg, var(--primary) 0%, #ffc9d4 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

nav .logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: white;
  font-weight: 600;
  transition: all 0.3s;
  padding: 8px 15px;
  border-radius: 20px;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Navigation */
.site-header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e91e63;
    
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #9c27b0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e91e63;
}

/* Banner Section */
.banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.8);
}

.banner-text {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    color: #e91e63;
}

.banner-text p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    color: #9c27b0;
}

/* Mission Section */
.mission {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeIn 1s ease;
    background: #fafafa;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mission h2 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    border-radius: 2px;
}

.mission p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-top: 2rem;
}

/* Timeline Section */
.timeline {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    padding: 4rem 2rem;
}

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e91e63, #9c27b0);
    top: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .content {
    direction: ltr;
    text-align: left;
}

.timeline-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.timeline-item img:hover {
    transform: scale(1.05);
}

.timeline-item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    border-right: 4px solid #e91e63;
}

.timeline-item .content h3 {
    font-size: 1.8rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.timeline-item .content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #e91e63;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #e91e63;
    z-index: 2;
}

/* Values Section */
.values {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.values h2 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #9c27b0;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: #fafafa;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team h2 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 2rem;
}

.team img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin: 2rem auto;
    display: block;
    transition: transform 0.3s ease;
}

.team img:hover {
    transform: scale(1.02);
}

.team p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-top: 2rem;
}

/* ==========================================
   ENHANCED FOOTER
   ========================================== */
.main-footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #ddd;
  padding: 3rem 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}

.footer-section h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #cfcfcf;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-section ul li a i {
  color: var(--primary);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(231, 84, 128, 0.4);
}

/* Newsletter */
.newsletter {
  margin-top: 1.5rem;
}

.newsletter h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid #444;
  border-radius: 25px;
  background: #2c2c2c;
  color: white;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #bbb;
  font-size: 0.9rem;
}

.footer-bottom .fa-heart {
  color: var(--accent);
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: #777;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  nav ul {
    gap: 10px;
  }

  nav ul li a {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .slider {
    height: 350px;
  }

  .slide-overlay h3 {
    font-size: 1.5rem;
  }

  .slide-overlay p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .products {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .slider {
    height: 300px;
  }

  .products {
    grid-template-columns: 1fr;
  }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 2.5rem;
    }

    .banner-text p {
        font-size: 1.1rem;
    }

    .mission h2,
    .timeline h2,
    .team h2,
    .values h2 {
        font-size: 2rem;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-item::before {
        left: 30px;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
    }

    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .mission,
    .team {
        margin: 2rem auto;
        padding: 2rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .mission h2,
    .timeline h2,
    .team h2,
    .values h2 {
        font-size: 1.8rem;
    }

    .timeline-item .content {
        padding: 1.5rem;
    }

    .timeline-item .content h3 {
        font-size: 1.5rem;
    }
}

