/* /static/css/bulley/english.css */
/* Styles for the standalone English overview page */

body {
    margin: 0;
    padding: 0;
    background: var(--asvcolorbackgroundgrey);
}

/* Top bar */
.en-topbar {
    background-color: white;
    padding: 0.6rem 0;
    box-shadow: 0 2px 8px var(--asvcolor-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.en-back-link {
    color: var(--asvcolorblue);
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.en-back-link:hover {
    color: var(--asvcoloryellow);
    text-decoration: none;
}

.en-logo-small {
    width: 50px;
    height: 50px;
}

/* Hero section */
.en-hero {
    position: relative;
    background: url("/static/img/header/cat_s0.jpg") no-repeat center center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.en-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 77, 128, 0.85) 0%,
        rgba(0, 63, 104, 0.75) 50%,
        rgba(0, 77, 128, 0.65) 100%
    );
}

.en-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 1rem;
}

.en-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    color: white !important;
    font-style: normal;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.en-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.en-hero-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--asvcoloryellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Sections */
.en-section {
    padding: 4rem 0;
}

.en-section-alt {
    background-color: white;
}

.en-section h2 {
    font-weight: 600;
    font-size: 2rem;
    color: var(--asvcolorblue) !important;
    font-style: normal;
    margin-bottom: 1.5rem;
}

.en-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Cards */
.en-card {
    background: var(--asvcolorlightgrey);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px var(--asvcolor-shadow);
}

.en-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px var(--asvcolor-shadow);
}

.en-card-icon {
    font-size: 2.5rem;
    color: var(--asvcolorblue);
    margin-bottom: 1rem;
}

.en-card h4 {
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--asvcolorblue) !important;
    font-style: normal;
    margin-bottom: 0.8rem;
}

.en-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* Steps */
.en-steps {
    margin-top: 2rem;
}

.en-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.en-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--asvcolorblue);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.en-step strong {
    display: block;
    font-size: 1.1rem;
    color: var(--asvcolorblue);
    margin-bottom: 0.2rem;
}

.en-step p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #555;
}

/* Contact */
.en-contact-email {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.en-contact-email a {
    color: var(--asvcolorblue);
    font-weight: 500;
    transition: color 0.2s ease;
}

.en-contact-email a:hover {
    color: var(--asvcoloryellow);
}

/* Footer - override global footer styles from main_enhanced.css */
.en-footer {
    background: linear-gradient(to right, #1a1a1a, #333, #1a1a1a) !important;
    color: var(--asvcoloryellow);
    padding: 2rem 0 1.5rem !important;
    border-top: 3px solid var(--asvcoloryellow);
    margin-top: 0;
    position: relative;
}

/* Remove wave effect from main footer CSS */
.en-footer::before {
    display: none !important;
}

.en-footer p {
    color: var(--asvcolorgrey);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: transparent !important;
    padding: 0;
}

.en-footer a {
    background: transparent !important;
    padding: 0;
}

.en-footer-links a {
    color: var(--asvcoloryellow) !important;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.en-footer-links a:hover {
    color: white !important;
}

.en-footer .small {
    color: var(--asvcolorgrey);
}

/* Responsive */
@media (max-width: 768px) {
    .en-hero {
        min-height: 300px;
    }

    .en-hero h1 {
        font-size: 2rem;
    }

    .en-hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .en-section {
        padding: 2.5rem 0;
    }

    .en-section h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .en-hero {
        min-height: 450px;
    }

    .en-hero h1 {
        font-size: 3.2rem;
    }
}

/* Made with Bob */
