/* ============================================
   Portfolio Inner Dark - Landa S11P Specific Styles
   All styles specific to landa-s11p.html
   ============================================ */

/* Header Section - Dark Theme Overrides */
body {
    background: #000;
    color: #fff;
}

.project-content.black {
    background: #000;
}
/* More specific selectors to override base styles */
section.header.black {
    padding: 8rem 2rem !important;
    margin-top: 0 !important;
}

section.header.black .header-text {
    color: #fff !important;
}

section.header.black .company-name {
    color: rgba(255, 255, 255, 0.8) !important;
}

section.header.black h1 {
    color: #fff !important;
}

section.header.black .header-text p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.project .tag {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Header Image - Dark Theme Specific */
.header-image video {
    width: 100%;
    height: auto;
    display: block;
    border-radius:12px;
    border:1px solid #393c4c;
}

/* Glow Effect */
.glow {
    box-shadow:0 10px 50px rgb(43 77 148 / 31%), 0 0px 80px rgb(38 64 144 / 40%);
}

/* Full Width Image */
.full-width-image {
    width: 100%;
    padding: 0;
    margin: 0;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Print Mode Image - 3D Perspective */
.print-mode-image {
    width: 500px;
    height: auto;
    transform: perspective(1000px) rotateX(35deg) rotateY(-5deg) rotateZ(10deg);
    display: block;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

/* Feature section - Proportional scaling container */
.project-content.report .two-grid {
    align-items: center;
}

/* Side by Side Layout - Dark Theme Specific Overrides */
.side-by-side-layout .project-section-title {
    margin-bottom: 2rem;
    padding: 0;
    display: flex;
    align-items: flex-start;
    min-height: 3.5rem;
    padding-top: 84px;
    margin-top: 0;
}

.side-by-side-layout .project-section-title .info-box-title {
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.2;
}

/* Project Section Title - Dark Theme Specific */
.project-section-title {
    margin-bottom: 2rem;
}

/* Image Accordion */
.image-accordion-container {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 1;
}

.image-accordion {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.image-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.image-accordion-item:last-child {
    border-bottom: none;
}

.image-accordion-headline {
    margin: 0;
    padding: 0;
}

.image-accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 300;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.image-accordion-button:hover {
    color: #000;
}

.image-accordion-title-text {
    flex: 1;
}

.image-accordion-icon {
    width: 17px;
    height: 8.85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-accordion-item[aria-expanded="true"] .image-accordion-icon,
.image-accordion-item.active .image-accordion-icon {
    transform: rotate(180deg);
}

.image-accordion-icon-svg {
    width: 100%;
    height: 100%;
}

.image-accordion-tray {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}

.image-accordion-item[aria-expanded="true"] .image-accordion-tray,
.image-accordion-tray.active {
    max-height: 400px;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}

.image-accordion-content {
    padding: 0 0 1rem 0;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #666;
}

.image-accordion-content p {
    margin: 0 0 1rem 0;
}

.image-accordion-content p:last-child {
    margin-bottom: 0;
}

.image-accordion-item-image-container {
    margin-top: 1.5rem;
    display: none;
}

.image-accordion-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-accordion-large-image-container {
    display: none;
}

.image-accordion-large-image {
    width: 100%;
    height: auto;
    display: block;
}


/* Feature Intro Section */
.feature-intro {
    max-width: 50%;
}

/* Typography - Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ffaccf 0%, #5cb6f8 50%, #ba75e0 87%, #dd5183 96%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    overflow: visible;
}

p.lrgtext {
    font-size: 1.2rem;
}


/* Utility Classes - Dark Theme Specific */

/* Print Control Comparison */
.print-control-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.print-control-before,
.print-control-after {
    width: 100%;
}

.print-control-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap:2rem;
    align-items: start;
}

.print-control-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.print-control-image-before {
    max-width: 80px;
}

.print-control-image-after {
    max-width: 130px;
}

.print-control-image img {
    width: 100%;
    height: auto;
    display: block;
}

.print-control-map-section {
    margin-top: 6rem;
}

.print-control-map-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Case Problems */
.case-problems {
    margin-top: 2rem;
}

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

.case-problems ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    line-height: 1.6;
}

.case-problems ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cccccc;
}

/* UX Strategic Move */
.ux-strategic-move {
    margin: 3rem 0 0 0;
    padding: 0;
}

.ux-strategic-move h3.gradient-text {
    margin-bottom: 1rem;
    margin-top: 0;
}

.ux-strategic-move p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: var(--font-body);
}

.ux-strategic-move p strong {
    font-weight: 500;
    color: #fff;
}

/* Interactive Image Container */
.interactive-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.interactive-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

/* Hotspot Styles */
.hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hotspot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.hotspot:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.hotspot:hover::before {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 1);
}

.hotspot-popup {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 1000;
    display: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.hotspot-popup.active {
    display: block;
}

.hotspot-popup h3 {
    margin: 0 0 0.75rem 0;
    color: #000;
    font-weight: 400;
    line-height: 1.3;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.hotspot-popup p {
    margin: 0;
    color: #000 !important;
    font-family: var(--font-body);
}

/* Impact Stats */
.case-impact {
    text-align: center;
    padding: 4rem 2rem;
}

.gradient-text.hugetitle {
    font-size: 6rem;
    font-family: 'Montserrat';
    letter-spacing: -0.02em;
    font-weight:900;
    line-height:5.3rem;
    text-transform:initial;
    padding-bottom: 1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #13162a;
    border-bottom: 1px solid #393c4c;
}

.impact-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.impact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #393c4c;
}

.impact-number {
    font-weight: 300;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1;
    font-size: 4rem;
}

.impact-label {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.5;
}

/* Two Grid - Dark Theme Specific */
.two-grid {
    margin-top: 1rem;
    gap: 2rem;
}

.two-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.two-grid p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.image-zoom-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.image-zoom-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.image-zoom-close:hover {
    opacity: 0.7;
}

.zoomable-image {
    cursor: zoom-in;
}

/* Navigation Section - Dark Theme Specific */
.black.navigation {
    background: #000 !important;
    color: #fff;
}

.navigation-content {
    max-width: 90%;
    margin: 0 auto;
}

.nav-links {
    gap: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    background: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Project Section Styles - Dark Theme Specific */
.project-section-content img {
    margin: 2rem 0;
}

.project-section-content img:first-child {
    margin-top: 0;
}

.project-section-content img:last-child {
    margin-bottom: 0;
}

/* Design Process Section */
.about-section {
    padding: 6rem 0 0 0;
    background-color: #fff;
    margin: 0 auto;
}

.about-section.last-sectiondesign-process {
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: radial-gradient(circle farthest-corner at 100% 0, #ffaccf 28%, #5cb6f8 51%, #ba75e0 87%, #dd5183 96%);
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-black);
}

.process-section {
    margin-bottom: 3rem;
}

.process-section h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: var(--color-black);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    padding: 2rem;
    background: #f8f8f8;
}

.process-step h4,
.design-step h4,
.post-step h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.process-step p,
.design-step p,
.post-step p {
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    font-family: var(--font-body);
    margin: 0;
}

.design-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.design-step {
    padding: 2rem;
    background: #f8f8f8;
    position: relative;
}

.step-number {
    display: block;
    font-weight: 300;
    font-family: var(--font-heading);
    color: var(--color-black);
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.post-design-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.post-step {
    padding: 1.5rem;
    background: #f8f8f8;
}

.post-design-steps .read-more {
    grid-column: 1 / -1;
    display: flex;
    margin: 3rem auto 0;
    text-align: center;
    width: fit-content;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    color: var(--color-black);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid var(--color-black);
    transition: all 0.3s ease;
}

.post-design-steps .read-more:hover {
    background: var(--color-black);
    color: #fff;
}

/* Responsive Design - Moved to portfolio-inner-dark-mobile.css */
