

/* Occasion Section Styling */
.occasion-section {
    padding: 10px 0;
    /* background-color: black; */
    background-color:  #CEB77E;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.occasion-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.occasion-text {
    font-size: larger;
    font-family: 'Playfair Display', serif;  /* Elegant headings */
}

.occasion-link {
    color:  #2F4F2F;
    text-decoration: none;
font-family: 'Nocturne', serif;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;              /* Flex to align image + text */
    align-items: center;
    gap: 8px;                   /* spacing between image and text */
    transition: color 0.3s;
}

.occasion-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.occasion-text {
    font-size: larger;
}

.occasion-link:hover .occasion-text {
    color: #e0c1f4;
}

.occasion-link:hover .occasion-img {
    filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {

    .occasion-section {
           padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
}


    .occasion-text {
        font-size: 0.9rem;
    }

    .occasion-container {
      gap: 20px; /* even smaller spacing */
  }

    .occasion-img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {

     .occasion-container {
      gap: 15px; /* smaller spacing between links */
  }
   
}
