* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title{
    color: #f59e0b;
}

body {
    text-align: center;
    color: wheat;
    background-color: #0a0e14;
    font-family: sans-serif;
}

header p{
    color: wheat;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  
    gap: 20px;                       
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.media-item {
    width: 100%;
    aspect-ratio: 16 / 9;  
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    display: block;
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.about-project {
    padding: 80px 20px;
    background: #0a0e14;
}

.about-project h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f59e0b;
}

.intro {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #9ca3af;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.detail-box {
    padding: 30px 20px;
    background: #151a23;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.detail-box:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.5);
}

.detail-box h3 {
    font-size: 1rem;
    color: #f59e0b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.detail-box p {
    font-size: 1.1rem;
    color: wheat;
}

.project-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #f59e0b;
    color: #0a0e14;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f59e0b;
}

.btn:hover {
    background: transparent;
    color: #f59e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: wheat;
    border-color: wheat;
}

.btn-secondary:hover {
    background: wheat;
    color: #0a0e14;
}


footer {
    padding: 50px 20px 30px;
    background: #0a0e14;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: wheat;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-links a {
    color: wheat;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

@media (max-width: 768px) {

    .media-grid {
        grid-template-columns: 1fr;
    }

    .project-details {
        grid-template-columns: 1fr;
    }
    
    .about-project h2 {
        font-size: 2rem;
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}