@import "auth-CeIphPx.css";
@import "dashboard-y8hQ-Gn.css";
@import "profile-UMepirD.css";

:root {
    --periwinkle: #b8cdf8ff;
    --charcoal-brown: #41463dff;
    --bright-marine: #016fb9ff;
    --light-yellow: #fdfcdcff;
    --wheat: #ead2acff;
}

body {
    background-color: var(--light-yellow);
    color: var(--charcoal-brown);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.site-header {
    background-color: var(--periwinkle);
    border-bottom: 2px solid var(--wheat);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--charcoal-brown);
    text-decoration: none;
}

/* Nav right side: auth links + language switcher grouped together */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Text-style login link */
.nav-auth-link {
    color: var(--charcoal-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-auth-link:hover {
    color: var(--bright-marine);
    text-decoration: underline;
}

/* Small button variant for nav */
.btn-sm {
    padding: 7px 16px;
    font-size: 0.875rem;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--bright-marine);
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-links a.nav-auth-link {
    color: var(--charcoal-brown);
}

.nav-links a.nav-auth-link:hover {
    color: var(--bright-marine);
    text-decoration: underline;
}

.nav-links a.btn {
    color: white;
    text-decoration: none;
}

.nav-links a.btn:hover {
    text-decoration: none;
}

/* Language Switcher Flag Styling */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher li {
    display: inline-flex;
    align-items: center;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 2px;
    background-color: transparent;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
    opacity: 0.65;
}

.language-switcher a:hover {
    text-decoration: none;
    transform: translateY(-1px) scale(1.05);
    opacity: 1;
}

.language-switcher li.active a {
    opacity: 1;
    border-color: var(--bright-marine);
    background-color: rgba(1, 111, 185, 0.08);
}

.flag-icon {
    width: 28px;
    height: 18px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.15s;
    cursor: pointer;
}

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

.btn-primary {
    background-color: var(--bright-marine);
    color: white;
}

.btn-primary:hover {
    background-color: var(--charcoal-brown);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.15rem;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--periwinkle), var(--light-yellow));
}

.hero-section h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--charcoal-brown);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--charcoal-brown);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin-top: 10px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: white;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--charcoal-brown);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--charcoal-brown);
}

/* Cards Section */
.cards-section {
    padding: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--bright-marine);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.feature-card-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin-top: 0;
    color: var(--bright-marine);
}

.feature-card p {
    color: var(--charcoal-brown);
}

/* Why-Us Section */
.why-us-section {
    padding: 60px 0;
    background-color: white;
}

.why-us-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--charcoal-brown);
}

.why-us-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.why-us-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--wheat);
}

.why-us-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bright-marine);
    font-weight: bold;
}

.why-us-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--periwinkle), var(--wheat));
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--charcoal-brown);
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 30px;
    color: var(--charcoal-brown);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    background-color: var(--charcoal-brown);
    color: var(--light-yellow);
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
