/* Cases Page Specific Styles */

/* Page-specific navigation adjustments */
.nav-link.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 1;
    padding: 60px 0;
}

/* Title Section */
.title-section {
    position: relative;
    padding: 0; 
}

.title-section .title-image {
    position: relative;
    padding: 0;
}

.title-section .title-image img {
    width: 100%;
    max-width: 1200px;
    height: 200px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
    margin: 0 auto;
    filter: brightness(0.4); 
}

.title-section .title-overlay {
    position: absolute;
    top: 40px;  
    left: 40px; 
    max-width: 700px;
    text-align: left;
    transform: none;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #B8A06F;
    line-height: 1.2;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #B8A06F;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 20px;
    max-width: 700px;
    padding-bottom: 40px;
}

/* Accordion Section */
.accordion-section {
    width: 100%;
    padding: 0;
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-header {
    background-color: #B8A06F;
    color: #0F2F35;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.accordion-header:hover {
    background-color: #c9a95e;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    font-size: 20px;
    font-weight: bold;
    width: 20px;
    text-align: center;
}

.accordion-content {
    display: none;
    padding: 0;
    background-color: transparent;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header {
    background-color: #B8A06F;
}

.content-border {

    border-top: none;
    padding: 20px;
    background-color: rgba(217, 185, 110, 0.05);
}

.case-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.case-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #B8A06F;
    font-size: 14px;
    line-height: 1.6;
}

.case-list li:before {
    content: "•";
    color: #B8A06F;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.case-list li:last-child {
    margin-bottom: 0;
}

/* Page-specific footer adjustments if needed */

/* Mobile Responsive Design - Preserving Desktop Look */

/* Mobile Layout */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 8px 12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-logo {
        position: static;
        font-size: 24px;
    }
    
    .navbar-logo .logo-img {
        height: 32px;
    }

    .main-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

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

    .accordion-header {
        padding: 15px 20px;
        cursor: pointer;
    }
    
    .accordion-header:active {
        background-color: rgba(184, 160, 111, 0.1);
    }

    .accordion-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .content-border {
        padding: 20px 15px;
    }
    
    .case-list li {
        font-size: 14px;
        line-height: 1.5;
        padding: 8px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-center {
        text-align: center;
    }
}

/* Small Mobile Layout */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 14px;
    }

    .navbar-logo {
        font-size: 20px;
    }
    
    .navbar-logo .logo-img {
        height: 28px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
        min-height: 40px;
    }

    .accordion-header {
        padding: 12px 15px;
    }

    .accordion-title {
        font-size: 16px;
        line-height: 1.2;
    }

    .case-list li {
        font-size: 13px;
        line-height: 1.4;
        padding: 6px 0;
    }
    
    .content-border {
        padding: 15px 10px;
    }
    
    .title-section {
        margin-bottom: 40px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-center {
        text-align: center;
    }
} 

/* Mobile responsive styles for footer logo */
@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 40px;
    }
} 