/* 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/abassoder-hero.png') 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
}
.ambassador-info {

}

.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
}

/* Current Ambassadors Section */
.current-ambassadors {
  
}

.section-label {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
	  font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.ambassador-card {
    background: white;
    border-radius: 10px;
    padding: 1rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.ambassador-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 4px solid var(--bg-light);
}

.ambassador-name {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ambassador-title {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* 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;
    }
}