/* about.css */
:root {
    --primary-color: #00D094;
    --secondary-color: #333;
    --background-light: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* About Hero Section */
.about-hero {
    position: relative;
    background: url('images/about-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    font-size: 1.1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #00e6a3;
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Clan History Section */
.history-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.history-text {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.history-intro {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(45deg, var(--primary-color), #00e6a3);
    border-radius: 10px;
    color: var(--white);
}

.highlight-text {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.history-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.history-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.history-section i {
    color: var(--primary-color);
}

.history-section p {
    line-height: 1.8;
    color: #444;
}

.history-image {
    position: sticky;
    top: 100px;
}

.history-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.history-image img:hover {
    transform: scale(1.02);
}

/* Clan Values */
.clan-values {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.clan-values ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.clan-values li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.clan-values li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.clan-values li span {
    font-weight: bold;
    color: var(--primary-color);
}

/* Clan Anthem Section */
.clan-anthem {
    background: var(--background-light);
}

.anthem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.anthem-lyrics {
    margin: 30px 0;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.anthem-player {
    margin-top: 30px;
}

.anthem-player audio {
    width: 100%;
    max-width: 500px;
}

/* Leadership Section */
.leadership-category {
    margin-bottom: 50px;
}

.leadership-category h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.leader-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.leader-image {
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.leader-info {
    padding: 20px;
    text-align: center;
}

.leader-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.leader-info p {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation delay for each section */
.history-section:nth-child(1) { animation-delay: 0.2s; }
.history-section:nth-child(2) { animation-delay: 0.4s; }
.history-section:nth-child(3) { animation-delay: 0.6s; }
.history-section:nth-child(4) { animation-delay: 0.8s; }

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .leader-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 992px) {
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        position: static;
        order: -1;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .history-text {
        padding: 20px;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .leader-image {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        height: 250px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .history-text {
        padding: 15px;
    }
    
    .clan-values li {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .leader-cards {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .about-hero {
        height: auto;
        margin-top: 0px;
    }
    
    .history-image,
    .anthem-player,
    .leader-card:not(:first-child) {
        display: none;
    }
}