/* Custom styles for the About Us page */

body {
    font-family: "Gilroy", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    background-color: #f4f7f9;
    color: #333;
}

/* Constrained Layout Improvements */
.container {
    max-width: 1200px; /* Professional max-width */
}

/* Content Typography Optimization */
.mission-section p,
.contact-section p {
    max-width: 800px; /* Optimal reading width */
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.35rem;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2b5876, #4e4376); /* Dark Blue to Muted Purple */
    color: #fff;
    padding: 100px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    letter-spacing: 1.5px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Mission Section */
.mission-section {
    padding: 70px 30px;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mission-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-section .team-leader img {
    width: 150px;
    height: 150px;
    border: 4px solid #dcdcdc; /* Highlight CEO with a soft red */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section .team-leader {
    padding: 20px;
    border-radius: 20px;
    background-color: #f4f7f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-section .team-leader:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.team-section .team-member img {
    width: 130px;
    height: 130px;
    border: 2px solid #bbbbbb; /* Blue accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section .team-member {
    padding: 20px;
    border-radius: 20px;
    background-color: #f4f7f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-section .team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.values-section {
    padding: 70px 30px;
    background-color: #e3e7ea;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.values-section .value-item {
    padding: 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-section .value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.values-section h4 {
    color: #4e4376; /* Muted Purple */
}

.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-section a {
    color: #007bff; /* Blue accent */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Modern Professional Button Styles */
.btn-fluxora-primary,
.btn-fluxora-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-fluxora-primary {
    background: linear-gradient(135deg, #4fd1c7 0%, #38b2ac 100%);
    color: white;
}

.btn-fluxora-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-fluxora-primary:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 209, 199, 0.4);
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
}

.btn-fluxora-primary:hover::before {
    left: 100%;
}

.btn-fluxora-secondary {
    background: transparent;
    color: #38b2ac;
    border: 2px solid #38b2ac;
}

.btn-fluxora-secondary:hover {
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #4fd1c7 0%, #38b2ac 100%);
    border-color: #38b2ac;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 209, 199, 0.3);
}

.btn-fluxora-primary:active,
.btn-fluxora-secondary:active {
    transform: translateY(-1px);
    transition: transform 0.1s;
}

/* Icon styling within buttons */
.btn-fluxora-primary i,
.btn-fluxora-secondary i {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive button adjustments */
@media (max-width: 768px) {
    .btn-fluxora-primary,
    .btn-fluxora-secondary {
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem 2rem;
        min-width: auto;
    }
    
    .btn-fluxora-primary {
        margin-right: 0 !important;
    }
}
