/* assets/css/ambassador.css */

:root {
    --primary-color: #293857;
    --secondary-color: #f4d03f;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: "Source Sans Pro", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ebebeb;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
        url("../images/Ambassadors Web Banner.webp") center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 72, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Ambassador Info Section */
.shadow {
    box-shadow: 0 0 30px 0 #0000001f;
    padding: 50px 30px;
    border-radius: 30px;
    background: #fff;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: "Source Sans Pro", sans-serif;
}

.section-description {
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 400;
}
.ambassador-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.ambassador-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(102, 126, 234, 0.2);
    border-color: #2d3c69;
}

.ambassador-card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f3f4f6;
}

.ambassador-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ambassador-card:hover .ambassador-card-image img {
    transform: scale(1.08);
}

.ambassador-card-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ambassador-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ambassador-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.ambassador-card-location i {
    font-size: 16px;
    color: #2d3c69;
}

.ambassador-card-company {
    font-weight: 600;
    color: #2d3c69;
    margin-bottom: 8px;
    font-size: 15px;
}

.ambassador-card-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Section Headers */
.current-ambassadors {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Become Ambassador Section */
.become-ambassador {
}

.content-card {
    border: 1px solid #e9ecef;
}

.role-details p {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.role-details strong {
    color: var(--primary-color);
}

/* Application Form Section */
.application-form {
}

.form-card {
    border: 1px solid #e9ecef;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 63, 0.25);
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #f1c40f;
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .ambassador-card {
        padding: 1.5rem 1rem;
    }

    .ambassador-img {
        width: 100%;
        height: auto;
    }

    .ambassador-name {
        font-size: 1.1rem;
    }

    .ambassador-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .content-card,
    .form-card {
        padding: 2rem 1.5rem !important;
    }
}
