/* Reset and Base Styles - Header.css kullanılıyor */

/* Navigation - Header.css kullanılıyor */

/* Logo - Header.css kullanılıyor */

/* Main Content */
.main-content {
    padding: 200px 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

/* Press Gallery */
.press-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: none;
    margin-bottom: 40px;
    border-bottom: none;
    background: transparent;
    padding-bottom: 20px;
    animation: fadeInUp 0.8s ease-out both;
}

.press-item:nth-child(1) { animation-delay: 0.1s; }
.press-item:nth-child(2) { animation-delay: 0.3s; }
.press-item:nth-child(3) { animation-delay: 0.5s; }
.press-item:nth-child(4) { animation-delay: 0.7s; }
.press-item:nth-child(5) { animation-delay: 0.9s; }

.press-item:hover .press-image {
    transform: translateY(-10px);
}

.press-item:hover .press-image img {
    transform: scale(1.02);
    filter: none;
    z-index: 1;
}

/* Press Visual Styles */
.press-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    overflow: visible;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.press-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Prevent horizontal scrolling */
* {
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .navigation {
        top: 40px !important;
        left: 15px !important;
        max-width: 60px;
        z-index: 10000 !important;
    }
    
    .nav-toggle {
        display: flex !important;
        top: 30px !important;
        left: 15px !important;
        max-width: 60px;
        z-index: 10001 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .hamburger {
        display: block !important;
        background: #000000 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .main-content {
        padding: 60px 40px 80px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .press-gallery {
        gap: 0;
        max-width: 90%;
    }
    
    .press-item {
        border: none;
        border-bottom: none;
        background: transparent;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .customer-logo {
        max-width: 400px;
        height: auto;
        max-height: 150px;
    }
    
    .press-image {
        z-index: 1;
        position: relative;
    }
    
    .press-item {
        z-index: auto;
        position: relative;
    }
    
    .press-item .press-image img {
        max-width: 300px !important;
        height: auto;
    }
}

@media (max-width: 480px) {
    .customer-logo {
        max-width: 400px;
        height: auto;
        max-height: 150px;
    }
    
    .press-item {
        border: none;
        border-bottom: none;
        background: transparent;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .press-item .press-image img {
        max-width: 280px !important;
        height: auto;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.lightbox-content:active {
    cursor: grabbing;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000000;
    transition: opacity 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000000;
    transition: opacity 0.3s ease;
    padding: 20px;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-zoom-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000000;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 18px;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.press-img {
    cursor: pointer;
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-zoom-controls {
        bottom: 20px;
        gap: 10px;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-content img {
        max-height: 85vh;
    }
}

