/* Foundation Page Specific Styles */
.foundation-header {
    text-align: center;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: rgba(30, 14, 64, 0.5);
    margin-bottom: 0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
}

.foundation-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #6446A6;
}

.breadcrumb span {
    color: #6446A6;
}

.cover-decoration {
    position: absolute;
    z-index: 1;
}

.cover-decoration.left-planet {
    left: 0;
    bottom: -10px;
    width: 200px;
    opacity: 0.9;
    z-index: 0;
}

.cover-decoration.astronaut-right {
    right: 15%;
    bottom: 0;
    width: 120px;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Foundation Content Styles */
.foundation-content {
    padding: 80px 0;
    color: #fff;
    background-color: #1A0F3C;
}

.foundation-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.foundation-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.foundation-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.foundation-intro,
.foundation-dao,
.foundation-board,
.foundation-privacy {
    margin-bottom: 60px;
}

/* Board Members Grid */
.board-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.board-member {
    background-color: rgba(26, 15, 60, 0.7);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #2A1A50;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 15px 5px;
    color: #fff;
}

.board-member p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 15px 15px;
}

/* Board Members List */
.board-members-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.board-members-list li {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.board-members-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6446A6;
    font-size: 20px;
    line-height: 1;
}

.board-members-list li:last-child {
    border-bottom: none;
}

.board-members-list h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #fff;
}

.board-members-list p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .board-members {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .foundation-header h1 {
        font-size: 36px;
    }
    
    .cover-decoration.left-planet {
        width: 150px;
        bottom: -30px;
    }
    
    .cover-decoration.astronaut-right {
        width: 100px;
    }
    
    .foundation-content h2 {
        font-size: 28px;
    }
    
    .foundation-content {
        padding: 60px 0;
    }
}

@media screen and (max-width: 576px) {
    .foundation-header {
        padding: 80px 0 120px;
    }

    .foundation-header h1 {
        font-size: 32px;
    }
    
    .cover-decoration.left-planet {
        width: 120px;
        bottom: -25px;
    }
    
    .cover-decoration.astronaut-right {
        display: none; /* Hide astronaut in mobile view */
    }
    
    .board-members {
        grid-template-columns: 1fr;
    }
    
    .foundation-content h2 {
        font-size: 24px;
    }
    
    .foundation-content p {
        font-size: 15px;
    }
} 