/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 50%, #0dcaf0 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    border-radius: inherit;
}

/* Feature Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Auth Icon */
.auth-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Stat Card */
.stat-card {
    transition: transform 0.2s;
}
.stat-card:hover {
    transform: translateY(-4px);
}

/* Photo Strip */
.photo-strip-img {
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}
.photo-strip-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Gallery Card */
.gallery-card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.15) !important;
}
.gallery-img-wrap {
    position: relative;
    overflow: hidden;
}
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Quick Menu */
.quick-menu-btn {
    transition: transform 0.15s, box-shadow 0.15s;
}
.quick-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1) !important;
}

/* Icon box */
.icon-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Navbar active link */
.navbar-nav .nav-link:hover {
    opacity: 0.85;
}
