/* Custom Styles for Sara's Signature Cakes */

:root {
  --primary: #e74c3c;
  --secondary: #f39c12;
  --light: #fff;
  --dark: #2c3e50;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: var(--dark);
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://placehold.co/1920x1080/png?text=Wedding+Cake+Background') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.5) 70%);
}

.display-1 {
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: fadeInDown 1s ease-out;
}

.lead {
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.btn-danger {
  background: linear-gradient(to right, var(--primary), #c0392b);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: linear-gradient(to right, #c0392b, #e74c3c);
}

/* Service Cards Animation */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

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

/* Gallery Images */
.img-fluid {
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.img-fluid:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Footer Animation */
footer {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.2rem;
  }
}
