@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Outfit:wght@400;700;800&display=swap');

main > .container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.btn-default {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6c757d;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-group {
    margin-right: 50px;
    border-radius: var(--bs-border-radius);
}

.ui-state-default {
    border: 1px solid #d3d3d3;
    background: #fff;
    font-weight: normal;
    color: #555555;
}

/* Landing Page Styles */
.site-about {
    font-family: "Outfit", "Inter", sans-serif;
    color: #2d3436;
}
.landing-hero {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 100%);
    color: white;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
    position: relative;
    overflow: hidden;
}
.landing-hero h1 { 
    font-weight: 800; 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.landing-hero p { 
    font-size: 1.2rem; 
    opacity: 0.95; 
    margin-bottom: 2.5rem; 
    line-height: 1.6;
    max-width: 600px;
}
.hero-image-container {
    position: relative;
    perspective: 1000px;
}
.hero-image { 
    border-radius: 20px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.hero-image:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #f1f2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: left;
}
.feature-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #6c5ce7;
}
.feature-icon { 
    width: 64px;
    height: 64px;
    background: #f1f2f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; 
    margin-bottom: 24px; 
    color: #6c5ce7;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon {
    background: #6c5ce7;
    color: white;
}

.cta-button {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-light.cta-button {
    color: #6c5ce7;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.btn-light.cta-button:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.section-title { 
    font-weight: 800; 
    margin-bottom: 60px; 
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-title { font-weight: 700; margin-bottom: 15px; font-size: 1.4rem; }
.card-text { color: #636e72; line-height: 1.6; }

.support-section {
    background: #f8f9fa;
    border: 2px dashed #dfe6e9;
}