/* Custom styles for Papeterie d'Orvault */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 76px;
}

/* Hero Section */
.hero-section {
  background: url("https://images.unsplash.com/photo-1568702846914-96b305d2uj67?w=1920&h=800&fit=crop")
    center/cover no-repeat;
  background-image: url("https://images.unsplash.com/photo-1456735190827-d1262f71b8a3?w=1920&h=800&fit=crop");
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.85) 0%,
    rgba(0, 50, 120, 0.9) 100%
  );
}

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

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Services icons */
.bg-white.rounded-circle {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
  padding: 12px 30px;
}

.btn-outline-light:hover {
  color: #0d6efd;
}

/* Links */
.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* Footer links */
footer a {
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.7;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section spacing */
section {
  scroll-margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-section .btn:last-child {
    margin-bottom: 0;
  }
}
