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

/* Body and base styles */
body {
  font-family: 'Playfair Display','Times New Roman',serif;
  background-color: #E0DFD9;
  color: #333;
}

.collections-section {
  min-height: 100vh;
  background: url('../media/pagemedia/bentzon/bentzon.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.collections-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(6px);
  animation: fadeIn 1.5s ease-in-out;
  max-width: 1200px;
  margin-top: 10px;
  margin-bottom: 60px;
}

.collection-title {
  font-size: 2rem; /* Adjust as needed */
  font-weight: 600;
  text-align: center;
  color: #333;
  font-family: 'Playfair Display', serif;
  margin-top:-20px;
}

.collection-description {
  font-size: 1.2rem; /* Adjust as needed */
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  max-width: 600px;
  color: #444;
  font-family: 'Lora', serif;
}
.collections-text {
  max-width: 800px;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Lora', serif;
  font-weight: 500;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collections-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
}

.collection-card {
  background-color:#b79e6d;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Slightly deeper base shadow */
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: slideInUp 1s ease forwards;
  opacity: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  height: 420px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.collection-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); /* Stronger and deeper shadow */
  z-index: 2;
}


.card-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-title {
  font-family: 'Playfair Display','Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 10px;
  text-align: center;
  color: #fff;
  transition: color 0.3s ease;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-card:hover .card-title {
  color: #444;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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


.collection-logo {
  width:400px;
  height: auto;
  margin-bottom: 30px;
  display: block;
}
