/* Magava Project Page Styles */

.magava-project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    font-family: sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Sections */
.mv-sec-hero,
.mv-sec-desc,
.mv-sec-gallery3,
.mv-sec-gallery2,
.mv-sec-nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 120px;
    padding: 0 40px;
}

.mv-sec-hero { margin-top: 80px; }
.mv-sec-nav { 
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

/* Grid Columns */
.mv-col-25 { width: 25%; padding-right: 40px; }
.mv-col-75 { width: 75%; }
.mv-col-58 { width: 58%; padding-right: 60px; }
.mv-col-42 { width: 42%; }
.mv-col-20 { width: 20%; padding-right: 30px; }
.mv-col-35 { width: 35%; padding-right: 30px; }
.mv-col-45 { width: 45%; }
.mv-col-40 { width: 40%; padding-right: 40px; }
.mv-col-60 { width: 60%; }

/* Alignment Utilities */
.mv-valign-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mv-valign-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Typography */
.mv-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin: 0;
}

.mv-body {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.mv-meta-block {
    margin-top: 48px;
}

.mv-meta {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
}

.mv-caption {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-top: 16px;
    line-height: 1.5;
}

.mv-nav-link {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mv-nav-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.mv-nav-back {
    border-color: #cccccc;
    color: #666666;
}
.mv-nav-back:hover {
    background-color: transparent;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

/* Image Placeholders (Aspect Ratios) */
.mv-img-placeholder {
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.mv-placeholder-text {
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.mv-hero-ratio { aspect-ratio: 16 / 9; }
.mv-square-ratio { aspect-ratio: 1 / 1; }
.mv-portrait-ratio { aspect-ratio: 2 / 3; }

/* Scroll Reveal Animation */
.mv-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.mv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .mv-sec-hero,
    .mv-sec-desc,
    .mv-sec-gallery3,
    .mv-sec-gallery2,
    .mv-sec-nav {
        flex-direction: column;
        padding: 0 20px;
        margin-bottom: 64px;
    }
    
    .mv-col-25,
    .mv-col-75,
    .mv-col-58,
    .mv-col-42,
    .mv-col-20,
    .mv-col-35,
    .mv-col-45,
    .mv-col-40,
    .mv-col-60 {
        width: 100%;
        padding-right: 0;
    }
    
    .mv-tag {
        margin-bottom: 24px;
    }
    
    .mv-col-58 {
        margin-bottom: 32px;
    }
    
    .mv-col-20,
    .mv-col-35 {
        margin-bottom: 40px;
    }
    
    .mv-col-40 {
        margin-bottom: 48px;
    }
    
    .mv-sec-nav {
        gap: 20px;
    }
    
    .mv-nav-link {
        text-align: center;
    }
}