* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* Added slight shadow for visibility */
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #3d2517;
  letter-spacing: -0.5px;
}

.navbar nav {
  display: flex;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #3d2517;
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user-icon,
.cart-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e63946;
  color: white;
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('image-Photoroom.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 700px;
  z-index: 5;
  position: relative;
  margin-top: -250px;
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  padding: 16px 40px;
  background: #530007;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Cake Image */
.cake-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.cake-container img {
  width: 1200px;
  height: auto;
  display: block;
}

/* About Section */
/* About Section - Sticky Container */
.about-section {
  padding: 0 60px;
  background: #f5f5f5;
  height: 85vh;
  /* NECCESARY: Provides scroll track for sticky effect */
  position: relative;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* Sticky Pinning */
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  /* Prevent unwanted scrollbars */
}

/* Left Side - Cake Image */
.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 600px;
  padding-left: 10px;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 220, 150, 0.4) 0%, rgba(255, 220, 150, 0.2) 30%, transparent 80%);
  border-radius: 50%;
  z-index: 1;
  left: 320px;
  top: 40%;
  transform: translate(-50%, -50%);
}

.main-cake-img {
  width: 570px;
  height: 470px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  object-fit: contain;
  margin-top: -199px;
}

/* Cake Label */
.cake-label {
  position: absolute;
  top: 8%;
  left: 330px;
  transform: translateX(-50%);
  background: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #2d2d2d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Floating Chocolates in About Section */
.float-choc {
  position: absolute;
  animation: floatChoc 4s ease-in-out infinite;
  z-index: 1;
}

.choc-1 {
  width: 80px;
  top: 8%;
  left: 5%;
  animation-delay: 0s;
  transform: rotate(-20deg);
}

.choc-2 {
  width: 70px;
  top: 15%;
  left: 15%;
  animation-delay: 0.5s;
}

.choc-3 {
  width: 75px;
  top: 45%;
  left: 2%;
  animation-delay: 1s;
  transform: rotate(15deg);
}

.choc-4 {
  width: 70px;
  top: 10%;
  right: 8%;
  animation-delay: 0.3s;
  transform: rotate(25deg);
}

.choc-5 {
  width: 35px;
  top: 25%;
  left: 8%;
  animation-delay: 0.7s;
  transform: rotate(-10deg);
}

.choc-6 {
  width: 40px;
  top: 35%;
  right: 5%;
  animation-delay: 1.2s;
  transform: rotate(15deg);
}

.choc-7 {
  width: 38px;
  bottom: 25%;
  left: 10%;
  animation-delay: 0.9s;
  transform: rotate(-15deg);
}

.choc-8 {
  width: 42px;
  bottom: 20%;
  right: 12%;
  animation-delay: 1.4s;
  transform: rotate(20deg);
}

@keyframes floatChoc {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-12px) rotate(3deg);
  }

  50% {
    transform: translateY(-20px) rotate(-3deg);
  }

  75% {
    transform: translateY(-12px) rotate(2deg);
  }
}

/* Right Side - Text Content */
.about-content {
  padding: 20px 0;
}

.about-content h2 {
  font-size: 52px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.about-content .highlight {
  color: #530007;
}

.about-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 580px;
}

.view-menu-btn {
  padding: 16px 45px;
  background: #530007;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.view-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* Traveling Cake - Smooth Scroll Transition */
.traveling-cake {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: transform, opacity;
}

.traveling-cake img {
  width: 1200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Hide original cakes during transition */
.cake-container.transitioning {
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}

.main-cake-img.transitioning {
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}

.menu-target-cake.transitioning {
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}


/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero {
    background-size: cover;
  }

  .cake-container img {
    width: 450px;
  }

  /* About Section Responsive */
  .about-section {
    padding: 60px 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    min-height: 500px;
  }

  .main-cake-img {
    width: 450px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .float-choc {
    display: none;
  }

  .cake-label {
    top: 15%;
  }
}

/* Menu Highlight Section */
.menu-highlight {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.menu-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.menu-header .highlight {
  color: #530007;
}

.menu-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Card Container */
.cake-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}

/* Individual Cards */
.cake-card {
  width: 350px;
  border-radius: 30px;
  padding: 0 25px 30px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  margin-top: 80px;
  /* Space for the cake sticking out */
}

/* Card Backgrounds */
.card-1 {
  background-color: #f5efe6;
}

.card-2 {
  background-color: #fceceb;
}

.card-3 {
  background-color: #f7e8d6;
}

.cake-card:hover {
  transform: translateY(-10px);
}

/* Card Image Area */
.card-image {
  margin-top: -100px;
  /* Pull image up */
  margin-bottom: 10px;
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
}

.cake-card:hover .card-image img {
  transform: scale(1.05);
}

.floating-deco {
  position: absolute;
  z-index: 0;
  opacity: 0.8;
}

/* Card Content */
.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-title-row h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
}

.card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
  min-height: 42px;
}

/* Footer / Actions */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #2d2d2d;
  transition: all 0.2s;
}

.qty-btn.plus {
  background: #c41e3a;
  color: white;
  border-color: #c41e3a;
}

.qty-val {
  font-weight: 600;
  font-size: 16px;
  color: #2d2d2d;
  min-width: 15px;
  text-align: center;
}

.buy-btn {
  padding: 10px 24px;
  background: #530007;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #a01830;
}

/* Bottom View Menu Button */
.view-menu-dark-btn {
  padding: 16px 45px;
  background: #2d2d2d;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.view-menu-dark-btn:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
}

/* Maestro Section */
.maestro-section {
  padding: 100px 60px;
  background: #f5f5f5;
  overflow: hidden;
}

.maestro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Left Image Side */
.maestro-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.red-circle-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #530007 0%, #530007 100%);
  border-radius: 50%;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle, #8d3737 0%, #530007 100%);
}

.chef-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Floating Elements for Maestro */
.m-choc-1 {
  width: 60px;
  top: 0;
  left: 0;
  transform: rotate(-30deg);
  animation-delay: 0.2s;
  position: absolute;
  z-index: 3;
}

.m-choc-2 {
  width: 50px;
  bottom: 20px;
  right: 20px;
  transform: rotate(20deg);
  animation-delay: 1.5s;
  position: absolute;
  z-index: 3;
}

/* Right Content Side */
.maestro-content {
  flex: 1;
}

.maestro-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2d2d2d;
  line-height: 1.2;
  margin-bottom: 30px;
}

.highlight-red {
  color: #530007;
}

.maestro-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 550px;
}

.learn-more-btn {
  padding: 15px 40px;
  background: #2d2d2d;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 1024px) {
  .maestro-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .maestro-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.review-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 20px;
  width: 350px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #fca311;
  font-size: 20px;
  margin-bottom: 20px;
}

.review-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.review-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 5px;
}

.review-card span {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Section */
.site-footer {
  background: #2d2d2d;
  color: white;
  padding: 80px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-col p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #530007;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col ul li {
  color: #aaa;
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-bottom p {
  color: #666;
  font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}