/*!
 * Public CSS
 * Version 1.0
 */

/* Public Layout */
.public-layout {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header */
.public-layout header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.public-layout header h1 {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Navigation */
.public-layout nav a {
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.public-layout nav a:hover {
    opacity: 0.8;
}

/* Main Content */
.public-layout main {
    min-height: 70vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Cards */
.public-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.15s ease-in-out;
}

.public-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-public {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-public:hover {
    transform: translateY(-1px);
}

/* Footer */
.public-layout footer {
    margin-top: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.feature-card i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}
