/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Playfair Display', serif;
    line-height: 1.6;
    
}
/* ======================================== */

.content h2{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37, #f4e4a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;

}
.content p{
    font-size: 1.2rem;
    font-weight: 300;
    color: #989898;
    margin-bottom: 1rem;
    text-align: center;
}

.collection-section {
    width: 80%;
    margin-left: 10%;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.collection-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #b68f2b; /* luxury gold */
  margin: 2rem 0 1.5rem;
  position: relative;
}

/* Optional: elegant underline accent */
.collection-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #d4af37; /* lighter gold accent */
  margin: 0.1rem;
  border-radius: 2px;
}


.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.collection-item {
    text-align: center;
}

.collection-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.collection-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background-color: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.collection-btn:hover {
    background-color: #b8952b;
}
