/* Custom CSS for About and Contact pages */

/* Primary Colors */
:root {
    --dark-blue: #003366;
    --light-blue: #66B2FF;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --electric-cyan: #00FFFF;
    --neon-green: #00FF00;
    --magenta: #FF00FF;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --accent-blue: #9bcbed;
}

/* Override Bootstrap primary color */
.bg-primary {
    background-color: var(--dark-blue) !important;
}

.text-primary {
    color: #0d7ff2 !important;
}

.btn-primary {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--dark-blue);
    font-weight: 600;
    padding: 12px 30px;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: var(--electric-cyan) !important;
    border-color: var(--electric-cyan) !important;
    color: var(--dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Typography */
h1, .h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
}

h2, .h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
}

h3, .h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

h4, .h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

h5, .h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

h6, .h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.text-white h1, .text-white h2, .text-white h3, 
.text-white h4, .text-white h5, .text-white h6,
.text-white .h1, .text-white .h2, .text-white .h3,
.text-white .h4, .text-white .h5, .text-white .h6 {
    color: var(--white);
}

/* Card styling */
.card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Form styling */
.form-control {
    padding: 12px;
    border-radius: 6px;
}

.form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.25rem rgba(102, 178, 255, 0.25);
}

.input-group-text {
    background-color: var(--light-blue);
    color: var(--white);
    border-color: var(--light-blue);
}

/* Hero section */
.hero {
    position: relative;
    overflow: hidden;
}

/* Team section */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Accordion styling */
.accordion-button:not(.collapsed) {
    background-color: var(--light-blue);
    color: var(--dark-blue);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 178, 255, 0.25);
}

/* Hover effects */
a {
    color: var(--light-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--electric-cyan);
}

/* Custom rounded circles */
.rounded-circle.bg-primary {
    transition: all 0.3s ease;
}

.card:hover .rounded-circle.bg-primary {
    background-color: var(--electric-cyan) !important;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1, .h1 {
        font-size: 32px;
    }
    
    h2, .h2 {
        font-size: 26px;
    }
    
    h3, .h3 {
        font-size: 22px;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}