/* style.css - Modern Clean Aesthetics for HoaxGuard */

:root {
    --primary-color: #d32f2f;
    --primary-hover: #b71c1c;
    --bg-color: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Glassmorphism Navbar */
.glass-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    padding-top: 2rem;
}

/* Glass Card */
.glass-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Form Elements */
.form-control {
    border-radius: 1rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    background-color: #f8fafc;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
    border-color: var(--primary-color);
    background-color: #ffffff;
}

.hover-shadow:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #d32f2f, #ff4747);
    border: none;
    color: white;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(211, 47, 47, 0.4);
}

.btn-hover-shine {
    position: relative;
    overflow: hidden;
}

.btn-hover-shine::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}

.btn-hover-shine:hover::after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease-in-out;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Utilities */
.cursor-pointer {
    cursor: pointer;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Checkbox Switch */
.form-check-input {
    width: 3em !important;
    height: 1.5em !important;
    margin-right: 10px;
}
.form-check-input:checked {
    background-color: #d32f2f;
    border-color: #d32f2f;
}

/* Progress bar coloring will be handled mostly by JS/Bootstrap classes, but we add custom height */
.progress {
    background-color: #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
}

main.main-content {
    flex: 1;
}
