/* Directors Page Styles */

/* Header Section */
.directors-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../css/images/bod.jpg') center/cover no-repeat;
    padding: 150px 0 80px;
    position: relative;
    color: #fff;
    min-height: 80vh;
}

.directors-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.directors-header .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.directors-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.directors-header .breadcrumb-item a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.directors-header .breadcrumb-item.active {
    color: #fff;
}

.directors-header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
}

/* Directors Section */
.directors-section {
    background-color: #f8f9fa;
    position: relative;
}

.director-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.director-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.director-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.director-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-card:hover .director-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 0 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-card:hover .social-links {
    bottom: 0;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.director-card:hover .social-icon {
    transform: translateY(0);
    opacity: 1;
}

.social-icon:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-3px) !important;
}

.director-card:hover .social-icon:nth-child(1) { transition-delay: 0.1s; }
.director-card:hover .social-icon:nth-child(2) { transition-delay: 0.2s; }
.director-card:hover .social-icon:nth-child(3) { transition-delay: 0.3s; }

.director-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.director-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #ff8585);
    transition: width 0.3s ease;
}

.director-card:hover .director-info::before {
    width: 100px;
}

.role {
    color: #ff6b6b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.director-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c1810;
}

.director-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
    position: relative;
    padding: 0 20px;
}

.quote::before,
.quote::after {
    content: '"';
    color: #ff6b6b;
    font-size: 1.5rem;
    position: absolute;
    opacity: 0.5;
}

.quote::before {
    left: 0;
    top: -5px;
}

.quote::after {
    right: 0;
    bottom: -5px;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .directors-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .directors-header {
        padding: 120px 0 60px;
    }
    
    .directors-header h1 {
        font-size: 2.5rem;
    }
    
    .director-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .directors-header h1 {
        font-size: 2rem;
    }
    
    .directors-header .lead {
        font-size: 1.1rem;
    }
    
    .director-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .director-card,
    .director-image img,
    .social-links,
    .social-icon,
    .director-info::before,
    .animate-on-scroll {
        transition: none;
    }
}

/* Footer Styles */
.footer-section {
    background: #2c1810;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 30px 0 20px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #ff8585, #ff6b6b);
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff6b6b;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 3px 0;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li i {
    font-size: 18px;
    color: #ff6b6b;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info li div {
    flex: 1;
}

.contact-info h4 {
    font-size: 1rem;
    margin: 0 0 5px;
    color: #fff;
}

.contact-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b6b;
}

.footer-section .social-links {
    position: static;
    background: none;
    padding: 0;
    opacity: 1;
    transform: none;
}

.footer-section .social-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    margin-right: 10px;
    opacity: 1;
    transform: none;
}

.footer-section .social-icon:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Footer Adjustments */
@media (max-width: 992px) {
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 25px 0 15px;
    }
    
    .footer-section .col-md-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info li {
        flex-direction: column;
    }
    
    .contact-info li i {
        margin-bottom: 10px;
    }
}

/* Directors Page Specific Navbar Styling */
.directors-page .nav-link {
    font-size: 1rem !important;
}

.directors-page .nav-link i {
    font-size: 1.1rem !important;
}

/* Responsive Adjustments for Directors Page */
@media (max-width: 992px) {
    .directors-page .nav-link {
        font-size: 0.95rem !important;
    }
    
    .directors-page .nav-link i {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .directors-page .nav-link {
        font-size: 0.9rem !important;
    }
    
    .directors-page .nav-link i {
        font-size: 0.95rem !important;
    }
} 