/* ---------------------------------------------------- */
/* NOVA LIFE ESENLER - GENEL STİLLER (css/style.css) - SON HAL */
/* ---------------------------------------------------- */
:root {
    /* Renk Paleti */
    --color-primary: #124654;
    --color-secondary: #ffc548;
    --color-background: #F4F6F6;
    --color-text-light: #F4F6F6;
    --color-text-dark: #17202A;
    --transition-speed: 0.4s;
    --z-top: 1010;
    --z-menu: 1000;
    --z-overlay: 900;
}

/* Genel Sıfırlama ve Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--color-secondary);
}

/* body,html Ayarı */
body,
html {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-light);
    background: var(--color-primary);
}

/* Genel Sayfa Yapısı (Slider olmayan sayfalar için) */
.page-wrapper {
    min-height: 100vh;
    padding-top: 100px;
    background: var(--color-background);
    color: var(--color-text-dark);
    position: relative;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.about-background {
    position: relative;
    background-image: url('../images/assets/hk_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
    pointer-events: none;
}

.about-background .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* LOGO ve MENÜ BUTONU (POSITION:FIXED ve Z-INDEX) */
.project-logo {
    position: fixed;
    top: 1%;
    left: 39.5%;
    z-index: var(--z-top);
    width: 20%;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all var(--transition-speed);
}

.project-logo img {
    width: 100%;
    height: 100%;
    display: block;
}
.sc-logo-container-center {
    position: absolute;
    top: 15%; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1025;

}
.sc-logo-container-center .sc-site-logo {
    max-height: 200px;
    transition: transform 0.3s ease;
}
.offcanvas-sc-logo {
    max-height: 90px;
    transition: transform 0.3s ease;
	margin-top:170%
}

#main-header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-top);
}

.menu-button {
    background: var(--color-secondary);
    color: var(--color-text-light);
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.menu-button:hover {
    background: #005E54;
    transform: rotate(90deg);
}

.menu-button.hidden {
    opacity: 0;
    visibility: hidden;
}

#main-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    list-style: none;
    background: var(--color-primary);
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.8);
    padding: 100px 40px 20px;
    margin: 0;
    transform: translateX(100%);
    transition: transform var(--transition-speed) ease-in-out;
    z-index: var(--z-menu);
}

#main-menu.active {
    transform: translateX(0);
}

#main-menu li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#main-menu li.divider {
    height: 1px;
    padding: 0;
    margin: 20px 0;
}

#main-menu a {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 1.3em;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
}

#main-menu a:hover {
    color: var(--color-secondary);
    padding-left: 15px;
}

.company-link {
    font-weight: 700 !important;
    font-size: 1em;
    color: var(--color-secondary);
    margin-top: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease-in-out;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ANA SAYFA - SLIDER STİLLERİ */
#homepage-slider.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.slide-content {
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.slide-content h1,
.slide-content h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--color-background);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-secondary) !important;
    z-index: 10;
}

.swiper-pagination-bullet-active {
    background: var(--color-secondary) !important;
}

/* FOOTER STİLLERİ */
#main-footer {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 40px 20px 20px;
    font-size: 0.9em;
    border-top: 3px solid var(--color-secondary);
    z-index: 50;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.footer-section {
    padding: 15px;
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.2em;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--color-text-light);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    opacity: 0.7;
    font-size: 0.85em;
}

/* GALERİ VE LIGHTBOX STİLLERİ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding-bottom: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
}

#lightbox-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    display: block;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 2005;
}

#lightbox-close:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.popup-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2em;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border-radius: 4px;
    z-index: 2005;
}

#prevBtn {
    left: 30px;
}

#nextBtn {
    right: 30px;
}

/* İLETİŞİM SAYFASI STİLLERİ */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.contact-form-wrapper {
    flex: 1 1 450px;
}

.contact-form-wrapper h3 {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form {
    background: var(--color-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 0.95em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    color: var(--color-text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.2);
    outline: none;
}

.contact-form button {
    background: var(--color-secondary);
    color: var(--color-text-light);
    font-weight: 600;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    background: #005E54;
}

.contact-info {
    flex: 1 1 350px;
    padding-top: 0px;
}

.contact-info h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

.contact-info a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--color-primary);
}

.map-iframe {
    margin-top: 20px;
    width: 100%;
    height: 350px;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobil Uyumu (Responsive) */
@media(max-width:768px) {
    .project-logo {
        width: 130px;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 10px;
        position: absolute;
    }

    #main-header {
        top: 15px;
        right: 15px;
    }

    .menu-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    #main-menu {
        width: 250px;
    }

    .page-wrapper {
        padding-top: 70px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        min-width: 100%;
        text-align: center;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section ul {
        text-align: center;
    }

    #prevBtn {
        left: 10px;
        font-size: 1.5em;
        padding: 5px 10px;
    }

    #nextBtn {
        right: 10px;
        font-size: 1.5em;
        padding: 5px 10px;
    }

    #lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2em;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        padding-top: 0;
    }
}