/* subtle underline for section titles */
		.section-title { position: relative; }
		.section-title::after {
			content: '';
			position: absolute;
			left: 0;
			bottom: -0.5rem;
			width: 3.5rem;
			height: 4px;
			background: #eddfc0;
			border-radius: 4px;
		}

/* Apple-style dropdown menu */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:visible {
    visibility: visible;
}

.group:hover .group-hover\:translate-y-0 {
    transform: translateY(0) translateX(-50%);
}

/* Smooth transitions for dropdown */
nav .relative.group > div {
    pointer-events: none;
}

nav .relative.group:hover > div {
    pointer-events: auto;
}

/* Mobile dropdown styling */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-dropdown-content.active {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.mobile-dropdown-arrow {
    transition: transform 0.2s ease;
}

.mobile-dropdown-arrow.rotate {
    transform: rotate(180deg);
}
ul li {
    /*
     * We want the bullets outside of the list,
     * so the text is aligned. Now the actual bullet
     * is outside of the list’s container
     */
    list-style-position: outside;

    /*
     * Because the bullet is outside of the list’s
     * container, indent the list entirely
     */
    margin-left: 1em;
}

.collection-item {
    transition: transform 0.3s ease;
}
.collection-item:hover {
    transform: scale(0.98);
}
.collection-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}
 .form-input:focus {
    outline: 2px solid #eddfc0;
    outline-offset: 2px;
}
.form-label {
    top: 0.75rem;
    transition: all 0.2s ease-out;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    font-size: 0.875rem;
    background-color: white;
    padding: 0 0.25rem;
}
