/* History Page Specific Styles */
.history-highlight {
    display: inline-block;
    background-color: var(--light-gold);
    color: var(--deep-red);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.divider-small {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 1rem 0 1.5rem;
}

.history-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.history-text {
    flex: 1;
    min-width: 300px;
}

.history-image {
    flex: 1;
    min-width: 300px;
}

.history-bg {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-medium);
}

.history-bg-1 {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../assets/PICS/CEO  OF GHANA INT AWARDS DANIEL DAVISTON.JPG');
    background-size: cover;
    background-position: center;
}

.history-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.history-stats .stat-box {
    flex: 1;
    min-width: 120px;
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.history-stats .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.history-stats .stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-red);
    line-height: 1.2;
}

.history-stats .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 0.5rem;
}

/* Timeline Styles */
.timeline-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-year {
    width: 120px;
    text-align: right;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-year span {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.year-connector {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 3px;
    background-color: var(--gold);
    transform: translateY(-50%);
}

.timeline-content {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-left: 2rem;
    position: relative;
    z-index: 2;
    transition: all var(--transition-medium);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-image {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-bg {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all var(--transition-medium);
}

.timeline-content:hover .timeline-bg {
    transform: scale(1.05);
}

.timeline-bg-1 { background-image: url('../assets/PICS/CULTURAL PERFORMANCE 1.JPG'); }
.timeline-bg-2 { background-image: url('../assets/PICS/CULTURAL PERFORMANCE 2.JPG'); }
.timeline-bg-3 { background-image: url('../assets/PICS/CULTURAL PERFORMANCE 3.JPG'); }
.timeline-bg-4 { background-image: url('../assets/PICS/CULTURAL PERFORMANCE 4.JPG'); }
.timeline-bg-5 { background-image: url('../assets/PICS/CULTURAL PERFORMANCE 5.JPG'); }
.timeline-bg-6 { background-image: url('../assets/PICS/RED CARPET.JPG'); }
.timeline-bg-7 { background-image: url('../assets/PICS/RED CARPET...JPG'); }
.timeline-bg-8 { background-image: url('../assets/PICS/GALLERY 1.JPG'); }
.timeline-bg-9 { background-image: url('../assets/PICS/GALLERY 2.JPG'); }
.timeline-bg-10 { background-image: url('../assets/PICS/GALLERY 4.JPG'); }
.timeline-bg-11 { background-image: url('../assets/PICS/GALLERY 5.JPG'); }

.timeline-milestone {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--deep-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-milestone span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.timeline-milestone small {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Founders Section Styles */
.founders-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.founder-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.founder-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all var(--transition-medium);
}

.founder-card:hover .founder-bg {
    transform: scale(1.05);
}

.founder-bg-1 { background-image: url('../assets/PICS/DANIEL DAVISTON.JPG'); }
.founder-bg-2 { background-image: url('../assets/PICS/MS LENA CEO OF LENAS KITCHEN AND A JUDGE.JPG'); }
.founder-bg-3 { background-image: url('../assets/PICS/STEPHEN YAW GEMFI BUSINESS LEADER OF THE YEAR.JPG'); }

.founder-role {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.founder-info {
    padding: 2rem;
}

.founder-info h3 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.founder-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-medium);
}

.founder-social a:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.founder-quote {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    position: relative;
}

.founder-quote i {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.founder-quote p {
    font-family: var(--font-primary);
    font-style: italic;
    padding-left: 1.5rem;
    margin: 0;
    color: var(--deep-red);
}

/* Vision Section Styles */
.vision-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.vision-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.vision-image {
    flex: 1;
    min-width: 300px;
}

.vision-bg {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/DSC_0317.JPG');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vision-text {
    flex: 1;
    min-width: 300px;
}

.vision-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--deep-red);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vision-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.vision-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-content p {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--deep-red);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.author-info span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-navigation button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--deep-red);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.testimonials-navigation button:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .timeline::before {
        left: 60px;
    }
    
    .timeline-year {
        width: 60px;
        padding-right: 1rem;
    }
    
    .timeline-year span {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
    
    .founder-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .vision-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .history-content, .vision-content {
        flex-direction: column;
    }
    
    .history-image, .vision-image {
        order: -1;
    }
    
    .history-bg, .vision-bg {
        height: 300px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-milestone {
        width: 50px;
        height: 50px;
    }
    
    .timeline-milestone span {
        font-size: 1.2rem;
    }
    
    .founder-image {
        height: 250px;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-year {
        width: 40px;
        padding-right: 0.5rem;
    }
    
    .timeline-year span {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .year-connector {
        width: 10px;
    }
    
    .timeline-content {
        margin-left: 0.5rem;
        padding: 1.2rem;
    }
    
    .timeline-bg {
        height: 150px;
    }
    
    .timeline-milestone {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .timeline-milestone span {
        font-size: 1rem;
    }
    
    .timeline-milestone small {
        font-size: 0.6rem;
    }
    
    .founder-quote {
        padding: 1rem;
    }
    
    .founder-quote i {
        font-size: 1.2rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
}
