/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

/* About Content */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-green);
    font-weight: 600;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
    background: var(--light-gray);
    position: relative;
}

.philosophy:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    z-index: 0;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    opacity: 0.1;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.philosophy-content h2 {
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    position: relative;
}

.quote:before, .quote:after {
    content: '"';
    font-size: 4rem;
    color: rgba(43, 167, 69, 0.2);
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
}

.quote:before {
    top: -20px;
    left: -30px;
}

.quote:after {
    bottom: -60px;
    right: -30px;
}

/* Education Section */
.education {
    padding: 5rem 0;
    background: white;
}

.education-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-10px);
}

.education-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Heritage Section */
.heritage {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/assets/images/gallery/kalinago-culture-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.heritage h2 {
    color: white;
}

.heritage h2:after {
    background: var(--accent-teal);
}

.heritage-content {
    max-width: 800px;
    margin: 0 auto;
}

.heritage-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Call to Action */
.cta {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .quote {
        font-size: 1.5rem;
    }
}