/* Public Website Styles */

.public-page {
    padding-top: 0;
}

.public-content {
    min-height: calc(100vh - 200px);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Navbar adjustments */
.navbar-brand {
    font-size: 1.5rem;
}

/* Hero section responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-logo {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-section .btn:last-child {
        margin-bottom: 0;
    }
}

/* Feature cards equal height */
.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card .card-body {
    flex: 1;
}

/* Animation for feature cards */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefit items */
.benefit-item {
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.02);
}

/* CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
