/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 8rem; /* Space for wave */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200" opacity="0.05"><path d="M0 0h1200v1200H0z" fill="none"/><path d="M600 0l600 600-600 600L0 600 600 0z" fill="%23fff"/></svg>');
    background-size: 400px;
}

.hero-wave {
    height: 120px;
    z-index: 1;
}

/* Cards */
.registry-card, .news-card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.news-card {
    border-radius: 12px !important;
}

/* Utility Classes */
.bg-light-subtle {
    background-color: #f8f9fa;
}

.bg-gradient-primary-subtle {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Registry Icons */
.registry-icon {
    transition: transform 0.3s ease;
}

.registry-card:hover .registry-icon {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.object-fit-cover {
    object-fit: cover;
}