/* Minimal Landing Page Styles */

:root {
    --minimal-primary: #000000;
    --minimal-accent: #FB923C;
    /* Orange start color */
    --brand-gradient: linear-gradient(90deg, #FB923C 0%, #F43F5E 100%);
    --brand-gradient-hover: linear-gradient(90deg, #f97316 0%, #e11d48 100%);

    --minimal-bg: #ffffff;
    --minimal-gray: #f4f4f4;
    --minimal-border: #e0e0e0;
    --text-primary: #111111;
    --text-secondary: #666666;
}

body {
    background-color: var(--minimal-bg);
    color: var(--text-primary);
    font-family: 'Open Sans', sans-serif;
    /* Clean sans-serif */
}

/* Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
    padding: 80px 0;
    border-bottom: 1px solid var(--minimal-border);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    display: none;
    /* Remove background graphic */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon i {
    font-size: 4rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    opacity: 1;
    animation: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FB923C 0%, #F43F5E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: none;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
}

.stat-item:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: none;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Login Card - Minimal */
.hero-login-card {
    background: #ffffff;
    border: 1px solid var(--minimal-border);
    border-radius: 8px;
    /* Slightly rounded */
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    backdrop-filter: none;
}

.hero-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-login-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.hero-input-group {
    margin-bottom: 1.5rem;
}

.hero-input-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.hero-form-control {
    background: #fff;
    border: 1px solid var(--minimal-border);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    width: 100%;
    transition: border-color 0.2s;
}

.hero-form-control:focus {
    background: #fff;
    border-color: var(--minimal-accent);
    outline: none;
    box-shadow: none;
}

.hero-form-control::placeholder {
    color: #999;
}

.hero-login-btn {
    background: var(--brand-gradient);
    border: none;
    border-radius: 4px;
    /* Minimal corners */
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    box-shadow: none;
}

.hero-login-btn:hover {
    background: var(--brand-gradient-hover);
    /* Darker gradient */
    transform: none;
    box-shadow: 0 4px 12px rgba(29, 155, 240, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    background: none;
    -webkit-text-fill-color: initial;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-title i {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Upcoming Job Fairs Section */
.upcoming-fairs-section {
    padding: 80px 0;
    background: var(--minimal-gray);
    border-top: 1px solid var(--minimal-border);
    border-bottom: 1px solid var(--minimal-border);
}

.landing-event-card {
    background: white;
    border: 1px solid var(--minimal-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: border-color 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.landing-event-card:hover {
    transform: none;
    border-color: var(--minimal-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.landing-event-card::before {
    display: none;
}

.event-image-wrapper {
    height: 200px;
    position: relative;
    background-color: #eee;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.landing-event-card:hover .event-image {
    transform: none;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    backdrop-filter: none;
}

.event-badge .badge {
    border-radius: 4px;
    font-weight: 600;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.event-detail-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-detail-item i {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 20px;
    display: inline-block;
}

.landing-book-btn {
    background: white;
    border: 1px solid var(--minimal-accent);
    color: var(--minimal-accent);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: none;
}

.landing-book-btn::before {
    display: none;
}

.landing-book-btn:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: white;
    transform: none;
    box-shadow: 0 4px 12px rgba(29, 155, 240, 0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    height: 100%;
    box-shadow: none;
    border: 1px solid transparent;
    transition: none;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.feature-card::before {
    display: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 1.5rem 0;
    background: white;
    border: 1px solid var(--minimal-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    color: var(--minimal-accent);
    transition: all 0.3s;
}

.feature-icon::before {
    display: none;
}

.feature-card:hover .feature-icon {
    transform: none;
}

.feature-icon i {
    font-size: 1.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
    border-top: 1px solid var(--minimal-border);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--minimal-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
    box-shadow: none;
}

.step-item:hover {
    background: white;
    transform: none;
    border-color: var(--minimal-accent);
    box-shadow: none;
}

.step-item::before {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--minimal-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: none;
}

.step-number::before {
    display: none;
}

.step-connector {
    width: 1px;
    background: var(--minimal-border);
    margin-left: 2.2rem;
    /* Adjusted for smaller circle */
}

/* Marquee Section */
/* Previous Events Grid Styles */
.previous-events-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--minimal-border);
}

.event-gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-gallery-card.large {
    height: 300px;
}

.event-gallery-card.medium {
    height: 220px;
}

.event-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    padding: 20px;
    display: flex;
    align-items: flex-start;
}

.gallery-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-title img {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}



/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
    border-top: 1px solid var(--minimal-border);
}

.cta-section::before {
    display: none;
}

.cta-title {
    color: var(--text-primary);
    text-shadow: none;
    font-weight: 700;
}

.cta-text {
    color: var(--text-secondary);
    text-shadow: none;
}

.cta-arrow i {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: none;
}

.cta-arrow p {
    color: var(--text-secondary);
    text-shadow: none;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
    padding: 80px 0;
}

.video-wrapper {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--minimal-border);
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper::before {
    display: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: none;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-hero {
        padding: 50px 0;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Applying green gradient to all icons within sections for mobile */
    .cta-section i,
    .video-section i,
    .previous-events-section i {
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        filter: none;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1.5rem;
    }

    .step-connector {
        display: none;
    }
}

/* District Marquee */
.district-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: transparent;
    padding: 20px 0;
}

.district-track {
    display: inline-block;
    animation: scrollDistricts 45s linear infinite;
}

.district-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.district-item::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    margin-right: 10px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.district-item::after {
    display: none;
    /* Remove dot separator if icon is enough, or keep it */
}

@keyframes scrollDistricts {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.district-marquee:hover .district-track {
    animation-play-state: paused;
}