/* ===================================== */
/* 📌 GENEL TANIMLAMALAR */
/* ===================================== */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


/* ===================================== */
/* 🎨 BÜYÜK & BELİRGİN SCROLLBAR */
/* ===================================== */

/* Webkit tarayıcıları için (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 25px;
    /* Çok daha geniş */
}

::-webkit-scrollbar-track {
    background: rgb(221, 221, 221);
    /* Gri arkaplan */
    border-radius: 0px;
    border: 3px solid rgb(221, 221, 221);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgb(255, 154, 86), rgb(255, 107, 53));
    border-radius: 0px;
    border: 4px solid rgb(221, 221, 221);
    min-height: 80px;
    /* Minimum yükseklik */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgb(255, 140, 70), rgb(255, 90, 40));
    border: 4px solid rgb(221, 221, 221);
}

/* Firefox için */
html {
    scrollbar-width: auto;
    scrollbar-color: rgb(255, 107, 53) rgb(221, 221, 221);
}

body {
    scrollbar-width: auto;
    scrollbar-color: rgb(255, 107, 53) rgb(221, 221, 221);
}


/* ===================================== */
/* 🛡️ GLOBAL TAŞMA KONTROLÜ */
/* ===================================== */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-family: Poppins, sans-serif;
    font-style: normal;
    color: rgb(51, 51, 51);
    background: rgb(255 255 255);
}





/* ===================================== */
/* 🏠 HEADER - TÜM SAYFALAR İÇİN */
/* ===================================== */
/* ===================================== */
/* 🏠 HEADER - TÜM SAYFALAR İÇİN */
/* ===================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 150px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo kısmı */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
}

/* Navigasyon menüsü */
.nav-container {
    display: flex;
    align-items: center;
}

.nav-container nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-container nav ul li a {
    text-decoration: none;
    color: rgb(51, 51, 51);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}

.nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

/* Container - Genel */
.container {
    margin: 0px auto;
    padding: 0px 150px;
}

/* ===================================== */
/* 📱 HAMBURGER MENU - MOBİL İÇİN */
/* ===================================== */

/* Hamburger Menü - Gizli (Desktop'ta görünmez) */
#menuToggle {
    display: none;
    position: relative;
    z-index: 1001;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    right: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 1003;
}

#menuToggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #333;
    border-radius: 3px;
    z-index: 1002;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #333;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    display: flex;
    position: fixed;
    width: 300px;
    height: 100vh;
    margin: 0;
    padding: 80px 0 50px 0;
    right: -300px;
    top: 0;
    background: white;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-y: auto;
    flex-direction: column;
    gap: 11px;
}

#menu li {
    padding: 0;
    margin: 0;
}

#menu li a {
    display: block;
    padding: 18px 40px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, padding-left 0.3s;
}

#menu li a:hover {
    background: #f5f5f5;
    padding-left: 50px;
}

#menuToggle input:checked ~ #menu {
    right: 0;
}



#menu li .ucd:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(206, 206, 206));
}
#menu li .etkinlik:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(30, 130, 50));
}
#menu li .sinema:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(30, 41, 133));
}
#menu li .yemek:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(238, 49, 49));
}
#menu li .hizmetler:hover
{
    background: linear-gradient(to right, #f5f5f5, #74d466);
}
#menu li .alisveris:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(247, 181, 0));

}
#menu li .eglence:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(120, 140, 255));
}
#menu li .iletisim:hover
{
    background: linear-gradient(to right, #f5f5f5, rgb(175, 35, 124));
}



/* ===================================== */
/* 📱 RESPONSIVE TASARIM */
/* ===================================== */


@media screen and (max-width: 1350px) {
    header {
        display: flex;
        justify-content: space-between;
        padding: 20px 50px;
        background: transparent;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
        align-items: center;
        flex-direction: row;
    }

    .nav-container nav ul {
        display: flex;
        list-style: none;
        gap: 22px;
    }
    .custom-svg {
        display: inline-block;
        position: absolute;
        right: -373px;
    }

}



/* Tablet için (1024px ve altı) */
@media screen and (max-width: 1024px) {
    header {
        padding: 20px 50px;
    }
    
    .container {
        padding: 0px 50px;
    }
    
    .nav-container nav ul {
        gap: 20px;
    }
    
    .nav-container nav ul li a {
        font-size: 14px;
    }
}

/* Tablet küçük ekranlar (768px ve altı) */
@media screen and (max-width: 991px) {
    header {
        padding: 20px 30px;
    }
    
    .container {
        padding: 0px 30px;
    }
    
    /* Normal menüyü gizle, hamburger menüyü göster */
    .nav-container nav:not(#menuToggle):not([role="navigation"]) {
        display: none;
    }
    
    #menuToggle {
        display: block;
    }
    
    .logo-container img {
        height: 40px;
    }
}

/* Mobil için (480px ve altı) */
@media screen and (max-width: 480px) {
    header {
        padding: 15px 20px;
    }
    
    .container {
        padding: 0px 20px;
    }
    
    .logo-container img {
        height: 35px;
    }
    
    #menu {
        width: 280px;
        right: -280px;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media screen and (max-width: 360px) {
    header {
        padding: 15px 15px;
    }
    
    .container {
        padding: 0px 15px;
    }
    
    #menu {
        width: 100%;
        right: -100%;
    }
}


/* ===================================== */
/* 🏪 MARKALAR SAYFASI - ANA SECTION */
/* ===================================== */
.brands-intro-section {
    background: white;
    padding: 80px 150px;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
}

.brands-intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Sol: metin, Sağ: görseller */
    gap: 80px;
    align-items: center;
    margin: 0px auto;
}

/* Sol taraf - Metin içeriği */
.brands-main-title {
    margin-bottom: 50px;
    color: rgb(247, 147, 30);
    white-space: nowrap; /* Başlığı tek satırda tutar */
}

.brands-description {
    text-align: justify;
}

/* Sağ taraf - Görsel wrapper */
.visuals-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

/*Custom svg için kullanılan svg ilk görsel */
.custom-svg {
    display: inline-block;
    position: absolute;
    right: -239px;
}

/* SVG'nin kendisi */
.custom-svg svg {
    width: 1136px;
    height: auto;
    transition: all 0.3s ease;
}

/* Görsellerin stack container'ı */
.brands-images-stack {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

/* Tüm stack görselleri */
.brand-stack-img {
    position: absolute;
    object-fit: contain;
}

/* Bina arka plan görseli */
.brand-stack-img.novadabinabg {
    z-index: 2;
    top: -15px;
    right: -149px;
    width: 793px;
}

/* Bina ön görseli */
.brand-stack-img.novadabina {
    width: 745px;
    top: 117px;
    right: -151px;
    z-index: 3;
}

/* Kişi görseli */
.brand-stack-img.novada-person {
    bottom: 28px;
    right: 224px;
    width: 440px;
    z-index: 4;
}

.brands-text-content-visible {
    display: none;
}

/* =========================== */
/* 📱 1750px altı - Yeni düzen */
/* =========================== */
@media (max-width: 1750px) {
    .brands-intro-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    /* Başlık en üstte kalacak */
    .brands-main-title {
        order: 1;
        text-align: center;
        width: 100%;
    }
    
    /* Görseller ortada */
    .visuals-wrapper {
        order: 2;
        width: 100%;
    }
    
    /* Açıklama metni en alta */
    .brands-description {
        order: 3;
        width: 100%;
        max-width: 900px;
        text-align: justify;
        display: none;
    }

    .brands-text-content-visible {
        display: block;
        text-align: center;
        margin: 50px 10px;
    }
}

@media (max-width: 1400px) {
    .brands-intro-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }
}

@media screen and (max-width: 1350px) {

    .custom-svg {
        display: inline-block;
        position: absolute;
        right: -373px;
    }
    
    .brands-images-stack {
        position: absolute;
        top: 20px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    .brand-stack-img.novadabinabg {
        z-index: 2;
        top: -15px;
        right: -149px;
        width: 753px;
    }

    .brand-stack-img.novadabina {
        width: 680px;
        top: 117px;
        right: -151px;
        z-index: 3;
    }

    .brand-stack-img.novada-person {
        bottom: 81px;
        right: 192px;
        width: 384px;
        z-index: 4;
    }

}

@media (max-width: 991px) {


    .brands-intro-section {
        padding: 40px 20px;
    }
    
    .brands-intro-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 80px;
    }
    .brands-images-stack {
        position: absolute;
        top: -30px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    /* Görsel alanı tam genişlikte, boyut orantılı */
    .visuals-wrapper {
        width: 100%;
        height: auto;
        position: relative;
        order: 2;
        overflow: visible;
    }

    /* SVG düzenlemesi - üstte sabit kalsın */
    .custom-svg {
        position: relative;
        right: 0;
        left: -89px;
        width: 100%;
        display: block;
        top: 60px;
    }

    .custom-svg svg {
        width: 1046px;
        height: auto;
        display: block;
    }

    /* Başlık responsive */
    .brands-main-title {
        order: 1;
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 20px;
        text-align: center;
        white-space: normal;
        padding: 0 10px;
    }

    /* Açıklama responsive */
    .brands-description {
        order: 3;
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        text-align: justify;
        padding: 0 20px;
        display: none;
    }

    /* Visible açıklama metni responsive */
    .brands-text-content-visible {
        display: block;
        text-align: justify;
        margin: 30px 20px;
    }

    .brands-description-visible {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
    }

    /* Görseller mobilde orantılı küçülsün */
    .brand-stack-img {
        position: absolute;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
    }

 /* Bina arka plan - sağa yaslı */
    .brand-stack-img.novadabinabg {
        top: 135px;
        right: 0px;
        left: auto;
        width: 635px;
        transform: none;
        margin-right: -20px;
    }

    /* Bina ön - sağa yaslı */
    .brand-stack-img.novadabina {
        top: 239px;
        right: 0;
        left: auto;
        width: 594px;
        transform: none;
        margin-right: -20px;
    }

    /* Kişi görseli - sağda ama biraz içeride */
    .brand-stack-img.novada-person {
        bottom: -23px;
        right: 278px;
        left: auto;
        width: 357px;
        transform: none;
    }

    /* Yazı kısmı tam genişlikte */
    .brands-text-content {
        width: 100%;
        text-align: center;
    }
}



@media (max-width: 660px) {


    .brands-intro-section {
        padding: 40px 20px;
    }
    
    .brands-intro-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 80px;
    }
    .brands-images-stack {
        position: absolute;
        top: -50px;
        left: 38px;
        width: 100%;
        height: 100%;
    }

    /* Görsel alanı tam genişlikte, boyut orantılı */
    .visuals-wrapper {
        width: 100%;
        height: auto;
        position: relative;
        order: 2;
        overflow: visible;
    }

    /* SVG düzenlemesi - üstte sabit kalsın */
    .custom-svg {
        position: relative;
        right: 0;
        left: -71px;
        width: 100%;
        display: block;
        top: 60px;
    }

    .custom-svg svg {
        width: 808px;
        height: auto;
        display: block;
    }

    /* Başlık responsive */
    .brands-main-title {
        order: 1;
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 20px;
        text-align: center;
        white-space: normal;
        padding: 0 10px;
    }

    /* Açıklama responsive */
    .brands-description {
        order: 3;
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        text-align: justify;
        padding: 0 20px;
        display: none;
    }

    /* Visible açıklama metni responsive */
    .brands-text-content-visible {
        display: block;
        text-align: justify;
        margin: 30px 20px;
    }

    .brands-description-visible {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
    }

    /* Görseller mobilde orantılı küçülsün */
    .brand-stack-img {
        position: absolute;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
    }

 /* Bina arka plan - sağa yaslı */
    .brand-stack-img.novadabinabg {
        top: 135px;
        right: 0px;
        left: auto;
        width: 550px;
        transform: none;
        margin-right: -20px;
    }

    /* Bina ön - sağa yaslı */
    .brand-stack-img.novadabina {
        top: 239px;
        right: 0;
        left: auto;
        width: 467px;
        transform: none;
        margin-right: -20px;
    }

    /* Kişi görseli - sağda ama biraz içeride */
    .brand-stack-img.novada-person {
        bottom: -89px;
        right: 213px;
        left: auto;
        width: 300px;
        transform: none;
    }

    /* Yazı kısmı tam genişlikte */
    .brands-text-content {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 520px) {

    
    .brands-intro-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 80px;
    }
    .brands-images-stack {
        position: absolute;
        top: -50px;
        left: 54px;
        width: 100%;
        height: 100%;
    }

    /* SVG düzenlemesi - üstte sabit kalsın */
    .custom-svg {
        position: relative;
        right: 0;
        left: -68px;
        width: 100%;
        display: block;
        top: 60px;
    }

    .custom-svg svg {
        width: 753px;
        height: auto;
        display: block;
    }

    /* Başlık responsive */
    .brands-main-title {
        order: 1;
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 20px;
        text-align: center;
        white-space: normal;
        padding: 0 10px;
    }

    /* Açıklama responsive */
    .brands-description {
        order: 3;
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        text-align: justify;
        padding: 0 20px;
        display: none;
    }

    /* Visible açıklama metni responsive */
    .brands-text-content-visible {
        display: block;
        text-align: justify;
        margin: 30px 20px;
    }

    .brands-description-visible {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
    }

    /* Görseller mobilde orantılı küçülsün */
    .brand-stack-img {
        position: absolute;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
    }

 /* Bina arka plan - sağa yaslı */
    .brand-stack-img.novadabinabg {
        top: 135px;
        right: 0px;
        left: auto;
        width: 526px;
        transform: none;
        margin-right: -20px;
    }

    /* Bina ön - sağa yaslı */
    .brand-stack-img.novadabina {
        top: 239px;
        right: 0;
        left: auto;
        width: 437px;
        transform: none;
        margin-right: -20px;
    }

    /* Kişi görseli - sağda ama biraz içeride */
    .brand-stack-img.novada-person {
        bottom: -72px;
        right: 200px;
        left: auto;
        width: 245px;
        transform: none;
    }

    /* Yazı kısmı tam genişlikte */
    .brands-text-content {
        width: 100%;
        text-align: center;
    }
}




@media (max-width: 465px) {

    
    .brands-intro-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 80px;
    }
    .brands-images-stack {
        position: absolute;
        top: -65px;
        left: 48px;
        width: 100%;
        height: 100%;
    }

    /* SVG düzenlemesi - üstte sabit kalsın */
    .custom-svg {
        position: relative;
        right: 0;
        left: -64px;
        width: 100%;
        display: block;
        top: 60px;
    }

    .custom-svg svg {
        width: 678px;
        height: auto;
        display: block;
    }

    /* Başlık responsive */
    .brands-main-title {
        order: 1;
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 20px;
        text-align: center;
        white-space: normal;
        padding: 0 10px;
    }

    /* Açıklama responsive */
    .brands-description {
        order: 3;
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        text-align: justify;
        padding: 0 20px;
        display: none;
    }

    /* Visible açıklama metni responsive */
    .brands-text-content-visible {
        display: block;
        text-align: justify;
        margin: 30px 20px;
    }

    .brands-description-visible {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
    }

    /* Görseller mobilde orantılı küçülsün */
    .brand-stack-img {
        position: absolute;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
    }

 /* Bina arka plan - sağa yaslı */
    .brand-stack-img.novadabinabg {
        top: 151px;
        right: 0px;
        left: auto;
        width: 464px;
        transform: none;
        margin-right: -20px;
    }

    /* Bina ön - sağa yaslı */
    .brand-stack-img.novadabina {
        top: 239px;
        right: 0;
        left: auto;
        width: 394px;
        transform: none;
        margin-right: -20px;
    }

    /* Kişi görseli - sağda ama biraz içeride */
    .brand-stack-img.novada-person {
        bottom: -79px;
        right: 179px;
        left: auto;
        width: 207px;
        transform: none;
    }

    /* Yazı kısmı tam genişlikte */
    .brands-text-content {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 390px) {

    
    .brands-intro-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 80px;
    }
    .brands-images-stack {
        position: absolute;
        top: -80px;
        left: 31px;
        width: 100%;
        height: 100%;
    }

    /* SVG düzenlemesi - üstte sabit kalsın */
    .custom-svg {
        position: relative;
        right: 0;
        left: -63px;
        width: 100%;
        display: block;
        top: 60px;
    }

    .custom-svg svg {
        width: 671px;
        height: auto;
        display: block;
    }

    /* Başlık responsive */
    .brands-main-title {
        order: 1;
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 20px;
        text-align: center;
        white-space: normal;
        padding: 0 10px;
    }

    /* Açıklama responsive */
    .brands-description {
        order: 3;
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        text-align: justify;
        padding: 0 20px;
        display: none;
    }

    /* Visible açıklama metni responsive */
    .brands-text-content-visible {
        display: block;
        text-align: justify;
        margin: 30px 20px;
    }

    .brands-description-visible {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
    }

    /* Görseller mobilde orantılı küçülsün */
    .brand-stack-img {
        position: absolute;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
    }

 /* Bina arka plan - sağa yaslı */
    .brand-stack-img.novadabinabg {
        top: 171px;
        right: 0px;
        left: auto;
        width: 375px;
        transform: none;
        margin-right: -20px;
    }

    /* Bina ön - sağa yaslı */
    .brand-stack-img.novadabina {
        top: 239px;
        right: 0;
        left: auto;
        width: 328px;
        transform: none;
        margin-right: -20px;
    }

    /* Kişi görseli - sağda ama biraz içeride */
    .brand-stack-img.novada-person {
        bottom: -44px;
        right: 145px;
        left: auto;
        width: 173px;
        transform: none;
    }

    /* Yazı kısmı tam genişlikte */
    .brands-text-content {
        width: 100%;
        text-align: center;
    }
}
/* Extra küçük ekranlar için */
@media (max-width: 576px) {
    .brands-intro-section {
        padding: 30px 15px;
    }

    .brands-main-title {
        font-size: clamp(18px, 6vw, 22px);
        margin-bottom: 15px;
    }

    .brands-description-visible {
        font-size: clamp(13px, 4vw, 15px);
    }

    .brands-text-content-visible {
        margin: 20px 15px;
    }
}


/* ===================================== */
/* 🏠 ANASAYFA - HERO SECTION */
/* ===================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 1700px;
    margin-top: 100px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.1s linear;
    z-index: 1;
}

/* Gökyüzü ve arkaplan */
.hero-layer:nth-child(1) {
    z-index: 4;
    top: 140px;
}

.hero-layer:nth-child(2) {
    z-index: 5;
    top: 140px;
}

/* Bulutlar */
.hero-layer:nth-child(3) {
    z-index: 5;
    top: 519px;
    left: 77%;
    height: 156px;
    width: 362px;
}

.hero-layer:nth-child(4) {
    z-index: 6;
    top: 425px;
    left: 1%;
    height: 156px;
    width: 362px;
}

/* Uçurtma */
.hero-layer:nth-child(5) {
    z-index: 8;
    top: 186px;
    left: 61%;
    height: 450px;
    width: 450px;
}

/* İnsan grubu */
.hero-layer:nth-child(6) {
    z-index: 8;
    top: 302px;
    left: 50%;
    transform: translateX(-50%);
    height: 980px;
    width: 980px;
}

/* Pink div */
.hero-layer:nth-child(7) {
    z-index: 7;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 519px;
    width: 817px;
}

/* Slogan yazısı */
.hero-layer:nth-child(8) {
    z-index: 7;
    top: 70px;
    left: 49%;
    transform: translateX(-40%);
    height: 245px;
    width: 381px;
}

/* ===================================== */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ===================================== */

/* Large Desktop (1600px - 1920px) */
@media (max-width: 1920px) {
    .hero-section {
        margin-top: 90px;
    }
}
@media (max-width: 1800px) {

    .hero-layer:nth-child(3) {
        top: 519px;
        left: 77%;
        height: 140px;
        width: 330px;
    }

    .hero-layer:nth-child(5) {
        z-index: 8;
        top: 122px;
        left: 61%;
        height: 450px;
        width: 450px;
    }


    .hero-layer:nth-child(6) {
        z-index: 8;
        top: 281px;
        left: 50%;
        transform: translateX(-50%);
        height: 960px;
        width: 960px;
    }

    .hero-layer:nth-child(7) {
        z-index: 7;
        top: 3px;
        left: 50%;
        transform: translateX(-50%);
        height: 483px;
        width: 754px;
    }

    .hero-layer:nth-child(8) {
    z-index: 7;
    top: 66px;
    left: 49%;
    transform: translateX(-40%);
    height: 236px;
    width: 370px;
    }
}


/* Desktop (1440px) */
@media (max-width: 1600px) {
    .hero-section {
        height: 1385px;
        margin-top: 80px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 120px;
    }
    
    .hero-layer:nth-child(3) {
        top: 450px;
        left: 75%;
        height: 140px;
        width: 320px;
    }
    
    .hero-layer:nth-child(4) {
        top: 370px;
        height: 140px;
        width: 320px;
    }
    
    .hero-layer:nth-child(5) {
        top: 141px;
        left: 61%;
        height: 383px;
        width: 378px;
    }
    
    .hero-layer:nth-child(6) {
        top: 279px;
        height: 809px;
        width: 823px;
    }
    
    .hero-layer:nth-child(7) {
        top: 24px;
        height: 436px;
        width: 685px;
    }
    
    .hero-layer:nth-child(8) {
        top: 80px;
        height: 215px;
        width: 335px;
    }
}

/* Laptop (1366px) */
@media (max-width: 1440px) {
    .hero-section {
        height: 1190px;
        margin-top: 103px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 100px;
    }
    
    .hero-layer:nth-child(3) {
        top: 379px;
        left: 75%;
        height: 101px;
        width: 262px;
    }
    
    .hero-layer:nth-child(4) {
        top: 293px;
        height: 105px;
        width: 264px;
    }
    
    .hero-layer:nth-child(5) {
        top: 135px;
        left: 57%;
        height: 350px;
        width: 350px;
    }
    
    .hero-layer:nth-child(6) {
        top: 255px;
        height: 680px;
        width: 689px;
    }
    
    .hero-layer:nth-child(7) {
        top: 20px;
        height: 382px;
        width: 599px;
    }
    
    .hero-layer:nth-child(8) {
        top: 90px;
        height: 174px;
        width: 276px;
    }
}


@media (max-width: 1220px) {
    .hero-section {
        height: 1100px;
        margin-top: 70px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 138px;
    }
    
    .hero-layer:nth-child(3) {
        top: 336px;
        left: 77%;
        height: 97px;
        width: 219px;
    }
    
    .hero-layer:nth-child(4) {
        top: 280px;
        height: 86px;
        width: 230px;
    }
    
    .hero-layer:nth-child(5) {
        top: 112px;
        left: 61%;
        height: 315px;
        width: 309px;
    }
    
    .hero-layer:nth-child(6) {
        top: 217px;
        height: 660px;
        width: 670px;
    }
    
    .hero-layer:nth-child(7) {
        top: 20px;
        height: 366px;
        width: 575px;
    }
    
    .hero-layer:nth-child(8) {
        top: 83px;
        height: 159px;
        width: 252px;
    }
}

@media (max-width: 1150px) {
    .hero-section {
        height: 1160px;
        margin-top: 120px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 187px;
    }
    
    .hero-layer:nth-child(3) {
        top: 360px;
        left: 77%;
        height: 97px;
        width: 219px;
    }
    
    .hero-layer:nth-child(4) {
        top: 314px;
        height: 86px;
        width: 230px;
    }
    
    .hero-layer:nth-child(5) {
        top: 112px;
        left: 61%;
        height: 315px;
        width: 309px;
    }
    
    .hero-layer:nth-child(6) {
        top: 217px;
        height: 660px;
        width: 670px;
    }
    
    .hero-layer:nth-child(7) {
        top: 20px;
        height: 366px;
        width: 575px;
    }
    
    .hero-layer:nth-child(8) {
        top: 83px;
        height: 159px;
        width: 252px;
    }
}

/* Laptop Small (1024px) */
@media (max-width: 1024px) {
    .hero-section {
        height: 966px;
        margin-top: 60px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 147px;
    }
    
    .hero-layer:nth-child(3) {
        top: 321px;
        left: 72%;
        height: 100px;
        width: 230px;
    }
    
    .hero-layer:nth-child(4) {
        top: 265px;
        left: 2%;
        height: 100px;
        width: 230px;
    }
    
    .hero-layer:nth-child(5) {
        top: 110px;
        left: 61%;
        height: 280px;
        width: 280px;
    }
    
    .hero-layer:nth-child(6) {
        top: 237px;
        height: 525px;
        width: 537px;
    }
    
    .hero-layer:nth-child(7) {
        top: 57px;
        height: 300px;
        width: 468px;
    }
    
    .hero-layer:nth-child(8) {
        top: 105px;
        height: 145px;
        width: 226px;
    }
}


/* Tablet (768px) */
@media (max-width: 890px) {
    .hero-section {
        height: 815px;
        margin-top: 103px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 98px;
    }
    
    .hero-layer:nth-child(3) {
        top: 266px;
        left: 71%;
        height: 80px;
        width: 185px;
    }
    
    .hero-layer:nth-child(4) {
        top: 208px;
        left: 3%;
        height: 80px;
        width: 185px;
    }
    
    .hero-layer:nth-child(5) {
        top: 85px;
        left: 53%;
        height: 220px;
        width: 220px;
    }
    
    .hero-layer:nth-child(6) {
        top: 155px;
        height: 460px;
        width: 460px;
    }
    
    .hero-layer:nth-child(7) {
        top: 10px;
        height: 250px;
        width: 390px;
    }
    
    .hero-layer:nth-child(8) {
        top: 55px;
        height: 120px;
        width: 188px;
    }
}


/* Tablet (780px) */
@media (max-width: 790px) {
    .hero-section {
        height: 750px;
        margin-top: 90px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 130px;
    }
    
    .hero-layer:nth-child(3) {
        top: 268px;
        left: 73%;
        height: 80px;
        width: 185px;
    }
    
    .hero-layer:nth-child(4) {
        top: 231px;
        left: 2%;
        height: 80px;
        width: 185px;
    }
    
    .hero-layer:nth-child(5) {
        top: 85px;
        left: 53%;
        height: 220px;
        width: 220px;
    }
    
    .hero-layer:nth-child(6) {
        top: 155px;
        height: 460px;
        width: 460px;
    }
    
    .hero-layer:nth-child(7) {
        top: 10px;
        height: 250px;
        width: 392px;
    }
    
    .hero-layer:nth-child(8) {
        top: 55px;
        height: 120px;
        width: 188px;
    }
}



@media (max-width: 700px) {
    .hero-section {
        height: 724px;
        margin-top: 83px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 143px;
    }
    
    .hero-layer:nth-child(3) {
        top: 259px;
        left: 73%;
        height: 70px;
        width: 166px;
    }
    
    .hero-layer:nth-child(4) {
        top: 231px;
        left: 2%;
        height: 70px;
        width: 150px;
    }
    
    .hero-layer:nth-child(5) {
        top: 85px;
        left: 62%;
        height: 180px;
        width: 178px;
    }
    
    .hero-layer:nth-child(6) {
        top: 157px;
        height: 410px;
        width: 417px;
    }
    
    .hero-layer:nth-child(7) {
        top: 26px;
        height: 219px;
        width: 343px;
    }
    
    .hero-layer:nth-child(8) {
        top: 57px;
        height: 104px;
        width: 163px;
    }
}

/* Mobile Large (576px) */
@media (max-width: 598px) {
    .hero-section {
        height: 633px;
        margin-top: 72px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 134px;
    }
    
    .hero-layer:nth-child(3) {
        top: 241px;
        left: 65%;
        height: 65px;
        width: 150px;
    }
    
    .hero-layer:nth-child(4) {
        top: 216px;
        left: 4%;
        height: 50px;
        width: 124px;
    }
    
    .hero-layer:nth-child(5) {
        top: 87px;
        left: 61%;
        height: 170px;
        width: 170px;
    }
    
    .hero-layer:nth-child(6) {
        top: 153px;
        height: 350px;
        width: 350px;
    }
    
    .hero-layer:nth-child(7) {
        top: 34px;
        height: 190px;
        width: 297px;
    }
    
    .hero-layer:nth-child(8) {
        top: 67px;
        height: 92px;
        width: 143px;
    }
}

/* Mobile (425px) */
@media (max-width: 520px) {
    .hero-section {
        height: 583px;
        margin-top: 94px;
    }
    
    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 135px;
    }
    
    .hero-layer:nth-child(3) {
        top: 221px;
        left: 70%;
        height: 55px;
        width: 125px;
    }
    
    .hero-layer:nth-child(4) {
        top: 200px;
        left: 3%;
        height: 55px;
        width: 125px;
    }
    
    .hero-layer:nth-child(5) {
        top: 80px;
        left: 59%;
        height: 140px;
        width: 140px;
    }
    
    .hero-layer:nth-child(6) {
        top: 125px;
        height: 336px;
        width: 331px;
    }
    
    .hero-layer:nth-child(7) {
        top: 9px;
        height: 190px;
        width: 295px;
    }
    
    .hero-layer:nth-child(8) {
        top: 33px;
        height: 106px;
        width: 166px;
    }
}

/* Mobile Small (375px) */
@media (max-width: 450px) {
    .hero-section {
        height: 550px;
        margin-top: 86px;
    }

    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 148px;
    }
    
    .hero-layer:nth-child(3) {
        top: 238px;
        left: 69%;
        height: 50px;
        width: 115px;
    }
    
    .hero-layer:nth-child(4) {
        top: 227px;
        height: 47px;
        width: 115px;
    }
    
    .hero-layer:nth-child(5) {
        top: 84px;
        height: 125px;
        width: 125px;
    }
    
    .hero-layer:nth-child(6) {
        top: 122px;
        height: 313px;
        width: 319px;
    }
    
    .hero-layer:nth-child(7) {
        top: 4px;
        height: 182px;
        width: 285px;
    }
    
    .hero-layer:nth-child(8) {
        top: 30px;
        height: 104px;
        width: 160px;
    }
}

/* Mobile Extra Small (320px) */
@media (max-width: 400px) {
    .hero-section {
        height: 540px;
        margin-top: 76px;
    }
    
    .hero-layer:nth-child(3) {
        top: 214px;
        left: 73%;
        height: 45px;
        width: 103px;
    }

    .hero-layer:nth-child(1),
    .hero-layer:nth-child(2) {
        top: 170px;
    }
    
    .hero-layer:nth-child(4) {
        top: 203px;
        height: 44px;
        width: 95px;
    }
    
    .hero-layer:nth-child(5) {
        top: 74px;
        height: 110px;
        width: 110px;
        left: 64%;
    }
    
    .hero-layer:nth-child(6) {
        top: 146px;
        height: 271px;
        width: 267px;
    }
    
    .hero-layer:nth-child(7) {
        top: 28px;
        height: 154px;
        width: 241px;
    }
    
    .hero-layer:nth-child(8) {
        top: 46px;
        height: 83px;
        width: 132px;
    }
}






/* ===================================== */
/* 🏠 ANASAYFA - KATEGORİ KARTLARI (ORİJİNAL DALGA) */
/* ===================================== */
.main-content {
    padding: 0px 0px;
}

.section-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 40px;
    justify-items: center;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================== */
/* 🆕 ALTERNATİF LAYOUT - 2-2-1 (ORTALANMIŞ) */
/* ===================================== */
.main-content-alt {
    padding: 104px 0px;
}

.section-cards-alt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-cards-alt .card-center {
    grid-column: 1 / -1;
    justify-self: center;
}

/* ===================================== */
/* KART STİLLERİ (HER İKİ LAYOUT İÇİN) */
/* ===================================== */
.card {
    background: white;
    border-radius: 51px;
    padding: 30px 16px;
    width: 100%;
    max-width: 300px;
    height: 360px;
    text-align: center;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    flex-flow: column-reverse;
    align-items: center;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px;
}

/* Dalga tasarımı için (sadece .section-cards içinde) */
.section-cards .card:nth-child(1) {
    background: linear-gradient(135deg, rgb(255, 154, 86), rgb(255, 107, 53));
    color: white;
    margin-top: 100px;
}

.section-cards .card:nth-child(2) {
    background: linear-gradient(135deg, rgb(255, 87, 87), rgb(228, 27, 27));
    color: white;
    margin-top: 40px;
}

.section-cards .card:nth-child(3) {
    background: linear-gradient(135deg, rgb(79, 195, 247), rgb(41, 182, 246));
    color: white;
    margin-top: 0px;
}

.section-cards .card:nth-child(4) {
    background: linear-gradient(135deg, rgb(92, 107, 192), rgb(63, 81, 181));
    color: white;
    margin-top: 40px;
}

.section-cards .card:nth-child(5) {
    background: linear-gradient(135deg, rgb(40, 53, 147), rgb(26, 35, 126));
    color: white;
    margin-top: 100px;
}

/* Alternatif layout için renkler (düz, margin-top yok) */
.section-cards-alt .card:nth-child(1) {
    background: linear-gradient(135deg, rgb(255, 154, 86), rgb(255, 107, 53));
    color: white;
}

.section-cards-alt .card:nth-child(2) {
    background: linear-gradient(135deg, rgb(255, 87, 87), rgb(228, 27, 27));
    color: white;
}

.section-cards-alt .card:nth-child(3) {
    background: linear-gradient(135deg, rgb(79, 195, 247), rgb(41, 182, 246));
    color: white;
}

.section-cards-alt .card:nth-child(4) {
    background: linear-gradient(135deg, rgb(92, 107, 192), rgb(63, 81, 181));
    color: white;
}

.section-cards-alt .card:nth-child(5) {
    background: linear-gradient(135deg, rgb(40, 53, 147), rgb(26, 35, 126));
    color: white;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    top: 87px;
}

.card h3 {
    font-size: 29px;
    font-weight: 600;
    text-align: left;
}

.card p {
    font-size: 23px;
    opacity: 0.9;
}

.card-icerik {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
}

.kategori-img {
    height: 200px;
    width: auto;
}

.main-content-alt{
    display:none;
        
}


/* ===================================== */
/* 📱 RESPONSIVE - ORİJİNAL DALGA LAYOUT */
/* ===================================== */
@media (max-width: 1800px) {
    .section-cards {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1600px;
    }
    
    .card {
        max-width: 280px;
    }
}

@media (max-width: 1672px) {
    .section-cards {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1400px;
    }
    
    .card {
        max-width: 260px;
        height: 326px;
    }
}

@media (max-width: 1400px) {
    .section-cards {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1200px;
    }
    
    .card {
        max-width: 217px;
        height: 269px;
    }
    
    .kategori-img {
        height: 136px;
    }
    
    .card-icon {
        top: 70px;
        width: 70px;
        height: 70px;
    }
    
    .card h3 {
        font-size: 24px;
    }
    
    .card p {
        font-size: 20px;
    }
    
    .card-icerik {
        width: 170px;
    }
}

@media (max-width: 1250px) {

    .main-content{
        display:none;

    }
    .main-content-alt{
        display:block;
        margin-top: -104px;
    }

    .section-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .card {
        max-width: 335px;
        height: 345px;
    }

}

@media (max-width: 1200px) {
    .section-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1000px;
    }
    
    .section-cards .card {
        max-width: 300px;
        height: 360px;
        margin-top: 0px !important;
    }
    
    .kategori-img {
        height: 161px;
    }
    
    .card-icon {
        top: -31px;
        width: 60px;
        height: 60px;
    }
    
    .card h3 {
        font-size: 29px;
    }
    
    .card p {
        font-size: 23px;
    }
    
    .card-icerik {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .section-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .section-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .card {
        max-width: 400px;
        height: 340px;
    }
    
    .main-content {
        padding: 60px 0px;
    }
    
    .kategori-img {
        height: 150px;
    }
    
    .card-icon {
        top: -36px;
    }
    
    .card h3 {
        font-size: 26px;
    }
    
    .card p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-cards {
        max-width: 350px;
    }
    
    .card {
        height: 300px;
        padding: 25px 16px;
        max-width: 100%;
    }
    
    .kategori-img {
        height: 131px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        top: -20px;
    }
    
    .card h3 {
        font-size: 24px;
    }
    
    .card p {
        font-size: 18px;
    }
    
    .card-icerik {
        width: 180px;
    }
}

/* ===================================== */
/* 📱 RESPONSIVE - ALTERNATİF 2-2-1 LAYOUT */
/* ===================================== */
@media (max-width: 768px) {
    .section-cards-alt {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .main-content-alt {
        padding: 60px 0px;
    }
}

@media (max-width: 480px) {
    .section-cards-alt {
        max-width: 350px;
    }
}







/* ===================================== */
/* 🏠 ANASAYFA - OUTLET HERO */
/* ===================================== */
.outlet-hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0px;
}

.outlet-hero-content {
    margin: 0px auto;
}

.outlet-hero-image-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
    margin-top: -4px;
    padding: 0px;
    justify-content: center;
    align-items: center;
    background: white;
}

.outlet-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    min-height: 500px;
}

.outlet-hero-text-content {
    padding: 50px 60px;
    position: relative;
    bottom: 80px;
}

.outlet-hero-text-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(26, 26, 26);
    margin-bottom: 25px;
    text-align: center;
}

.outlet-hero-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgb(85, 85, 85);
    text-align: center;
    max-width: 891px;
    margin: 0px auto;
}


@media (max-width: 1030px){

.outlet-hero-image-wrapper img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    min-height: 500px;
    width: 1068px;
    position: relative;
    left: 16px;
}

}

@media (max-width: 992px) {

    .outlet-hero-text-content {
        padding: 50px 60px;
        position: relative;
        bottom: 55px;
    }

    .outlet-hero-text-content h2 {
        font-size: 37px;
        margin-bottom: 25px;
    }

}

@media (max-width: 768px) {

    .outlet-hero-text-content {
        padding: 30px 25px;
        position: relative;
        bottom: 40px;
    }

    .outlet-hero-text-content h2 {
        font-size: 27px;
    }

    .outlet-hero-text-content p {
        font-size: 14px;
    }

}

@media (max-width: 650px) {
    .outlet-hero-image-wrapper img {
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        min-height: 558px;
        width: 1089px;
        position: relative;
        left: 39px;
    }

}

@media (max-width: 550px) {
    .outlet-hero-text-content {
        padding: 30px 25px;
        position: relative;
        bottom: 15px;
    }
    
    .outlet-hero-text-content h2 {
        font-size: 23px;
        font-weight: 600;
    }

    .outlet-hero-text-content p {
        font-size: 12px;
    }
}







/* ===================================== */
/* 🏠 ANASAYFA - ETKİNLİKLER */
/* ===================================== */
.events-showcase-section {
    padding: 80px 150px;
    background: rgb(255 255 255);
}

.events-showcase-wrapper {
    max-width: 1400px;
    margin: 0px auto;
}

.events-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.event-card-item {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card-item:hover {
    transform: translateY(-8px);
}

.event-card-header {
    padding: 25px 25px 15px;
    width: 450px;
}

.event-card-title {
    font-size: 18px;
    font-weight: 600;
    color: rgb(26, 26, 26);
    margin-bottom: 8px;
    text-align: left;
    padding-right: 163px;
}

.event-card-date {
    font-size: 13px;
    color: rgb(136, 136, 136);
    font-weight: 400;
}

.event-card-image-container {
    border-radius: 20px;
    width: 100%;
    height: 408px;
    overflow: hidden;
    position: relative;
}

.event-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.event-card-item:hover .event-card-image-container img {
    transform: scale(1.08);
}

.events-footer-info {
    text-align: center;
    margin-top: 50px;
}

.events-footer-text {
    font-size: 13px;
    color: rgb(102, 102, 102);
    margin-bottom: 25px;
    line-height: 1.6;
}

.view-all-events-btn {
    display: inline-block;
    padding: 4px 30px;
    background: rgb(247, 147, 30);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: rgba(233, 30, 99, 0.3) 0px 5px 20px;
    margin: 0px 8px;
}

.view-all-events-btn:hover {
    transform: translateY(-3px);
    box-shadow: rgba(233, 30, 99, 0.4) 0px 8px 30px;
    background: rgb(247, 147, 30);
}


@media (max-width: 768px) {

    .events-footer-info {
        text-align: justify;
        margin-top: 70px;
    }

    .view-all-events-btn {
        padding: 5px 16px;
        font-size: 13px;
    }

}

@media (max-width: 530px) {

    .events-footer-info {
        text-align: justify;
        margin-top: 65px;
    }

    .view-all-events-btn {
        padding: 3px 12px;
        font-size: 12px;
    }

}



@media (max-width: 486px) {

    .events-footer-info {
        text-align: justify;
        margin-top: 65px;
        position: relative;
    }

    .view-all-events-btn {
        padding: 3px 12px;
        font-size: 12px;
        position: absolute;
        top: 63px;
        left: 25%;
    }
}

/* ===================================== */
/* ⚓ FOOTER - TÜM SAYFALAR İÇİN ORTAK */
/* ===================================== */

.footer-bg-image {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 680px;
    z-index: 0;
    overflow: hidden;
}

.footer-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-container {
    position: relative;
    z-index: 1;
}


.new-footer {
    background: rgb(255 255 255);
    padding: 0px;
}

/* Footer üst kısım - Logo */
.footer-top-section {
    background: white;
    padding: 60px 0px;
    text-align: center;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-wrapper img {
    height: 80px;
    width: auto;
    z-index: 554;
    position: relative;
}

/* Footer alt kısım - 3 kolon */
.footer-bottom-section {
    background: rgb(255, 255, 255);
    padding: 60px 150px 0px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0px auto;
    align-items: start;
}

/* Sol kolon - Açıklama */
.footer-col.footer-description p {
    font-size: 14px;
    line-height: 1.8;
    color: rgb(51, 51, 51);
    text-align: justify;
}

/* Orta kolon - Sosyal medya */
.footer-col.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgb(51, 51, 51);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(51, 51, 51);
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: rgb(51, 51, 51);
    color: white;
    transform: translateY(-3px);
}

/* Sağ kolon - İletişim */
.footer-col.footer-contact {
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    font-size: 13px;
    color: rgb(102, 102, 102);
    margin: 15px 0px 0px;
}

.contact-label:first-child {
    margin-top: 0px;
}

.contact-value {
    font-size: 14px;
    color: rgb(51, 51, 51);
    margin: 0px;
}

.contact-value strong {
    font-weight: 600;
}

/* Copyright Bölümü */
.footer-copyright {
    text-align: center;
    padding: 40px 0px 30px;
    margin-top: 40px;
    /* border-top: 1px solid rgb(230, 230, 230); */
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.footer-copyright a {
    color: rgb(102, 102, 102);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-copyright a:hover {
    opacity: 0.7;
}

/* ===================================== */
/* 📱 FOOTER RESPONSIVE KODLARI */
/* ===================================== */

/* Tablet - 1024px ve altı */
@media (max-width: 1024px) {
    .footer-bottom-section {
        padding: 40px 60px 0px;
    }
    
    .footer-container {
        gap: 40px;
    }
    
    .footer-bg-image {
        height: 550px;
    }
    
    .footer-copyright {
        padding: 35px 0px 25px;
        margin-top: 35px;
    }
}

@media (max-width: 850px) {
    .footer-bg-image {
        height: 625px;
    }
}

/* Tablet - 768px ve altı */
@media (max-width: 768px) {
    .footer-top-section {
        padding: 40px 0px;
    }
    
    .footer-logo-wrapper img {
        height: 60px;
    }
    
    .footer-bottom-section {
        padding: 40px 30px 0px;
        background-color: rgb(241, 241, 241);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Sol kolon - Açıklama */
    .footer-col.footer-description p {
        text-align: center;
        font-size: 13px;
    }
    
    /* Orta kolon - Sosyal medya */
    .footer-col.footer-social {
        justify-content: center;
    }
    
    /* Sağ kolon - İletişim */
    .footer-col.footer-contact {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-bg-image {
       display: none;
    }
    
    .footer-copyright {
        padding: 30px 30px 25px;
        margin-top: 30px;
    }
}

/* Mobil - 480px ve altı */
@media (max-width: 480px) {
    .footer-top-section {
        padding: 30px 0px;
    }
    
    .footer-logo-wrapper img {
        height: 50px;
    }
    
    .footer-bottom-section {
        padding: 30px 20px 0px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-col.footer-description p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .social-icons-wrapper {
        gap: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-label {
        font-size: 12px;
        margin: 12px 0px 0px;
    }
    
    .contact-value {
        font-size: 13px;
    }
    
    .footer-copyright {
        padding: 25px 20px 20px;
        margin-top: 25px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

/* Çok küçük ekranlar - 360px ve altı */
@media (max-width: 360px) {
    .footer-bottom-section {
        padding: 25px 15px 0px;
    }
    
    .social-icons-wrapper {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-copyright {
        padding: 25px 15px 20px;
        margin-top: 20px;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
}

/* ===================================== */
/* 🏪 MARKALAR SAYFASI - BRANDS GRID - 4'LÜ DÜZENLENDİ */
/* ===================================== */
.markalar-brands-grid-section {
    padding: 60px 28px;
    background: rgb(255 255 255);
}

.markalar-brands-container {
    max-width: 1400px;
    margin: 0 auto;
}

.markalar-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 5'ten 4'e değiştirildi */
    gap: 20px;
}

.markalar-brand-card {
    background: rgb(241, 241, 241);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Görsel konteynerini sabit boyutta tutalım */
.markalar-brand-image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.markalar-brand-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Alt bilgi kısmını düzenleyelim */
.markalar-brand-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    flex-shrink: 0;
}

/* Kat bilgisi - sabit boyut */
.markalar-brand-floor {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    padding: 6px 10px;
    border-radius: 25px;
    background: #dbdbdb;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.markalar-brand-floor i {
    font-size: 14px;
}

/* Telefon butonu - sabit boyut */
.markalar-brand-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #dadada;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 120px;
    white-space: nowrap;
    flex-shrink: 0;
}

.markalar-brand-phone:hover {
    background: #f0f0f0;
}

.markalar-brand-phone i {
    font-size: 14px;
}

/* ===================================== */
/* 📱 RESPONSIVE - MARKALAR BRANDS GRID */
/* ===================================== */
@media (max-width: 1200px) {
    .markalar-brands-grid {
        grid-template-columns: repeat(3, 1fr); /* 4'ten 3'e */
    }

    .markalar-brands-grid-section {
        padding: 60px 18px;
    }
}

@media (max-width: 992px) {
    .markalar-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .markalar-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .markalar-brands-grid-section {
        padding: 40px 20px;
    }

    .markalar-brand-image {
        height: 120px;
        padding: 12px;
    }

    .markalar-brand-info {
        padding: 10px 12px;
        flex-direction: row;
        gap: 8px;
    }

    .markalar-brand-phone {
        width: auto;
        min-width: 110px;
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .markalar-brand-floor {
        font-size: 12px;
        padding: 5px 8px;
    }
}

@media (max-width: 576px) {
    .markalar-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .markalar-brand-info {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .markalar-brand-phone {
        min-width: 100px;
        font-size: 10px;
        padding: 4px 6px;
    }
    
    .markalar-brand-floor {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .markalar-brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .markalar-brand-image {
        height: 130px;
    }
    
    .markalar-brand-info {
        padding: 12px 15px;
    }
    
    .markalar-brand-phone {
        min-width: 120px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .markalar-brand-floor {
        font-size: 13px;
    }
}

/* ===================================== */
/* 🏪 MARKALAR SAYFASI - TAM GENİŞLİK GÖRSEL BANNER */
/* ===================================== */
/* ===================================== */
/* 🏪 MARKALAR SAYFASI - TAM GENİŞLİK GÖRSEL BANNER */
/* ===================================== */
.markalar-full-image-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: white;
}

.markalar-image-wrapper {
    position: relative;
}

/* Arka plan görseli - tam genişlikte */
.markalar-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* 991px ve altında sabit boyut */
@media (max-width: 991px) {
    .markalar-banner-bg {
        width: 991px;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        position: relative;
    }
}

/* ===================================== */
/* 🏠 MARKALAR SAYFASI - KATEGORİ KARTLARI */
/* ===================================== */
.markalar-main-content {
    padding: 0px 0px 170px 0px;
    /* Üst padding'i kaldırdık, sadece alt padding kaldı */
    margin-top: -200px;
    /* Banner ile kartlar arasındaki boşluğu kapatmak için negatif margin */
}

.markalar-section-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 0px;
    /* Margin-top'u sıfırladık */
    justify-items: center;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* Diğer kart stilleri aynı kalacak */
.markalar-card {
    background: white;
    border-radius: 51px;
    padding: 30px 16px;
    width: 100%;
    max-width: 300px;
    height: 360px;
    text-align: center;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    flex-flow: column-reverse;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.markalar-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px;
}

/* Hizalama */
.markalar-card:nth-child(1) {
    background: linear-gradient(135deg, rgb(255, 154, 86), rgb(255, 107, 53));
    color: white;
    margin-top: 0px;
}

.markalar-card:nth-child(2) {
    background: linear-gradient(135deg, rgb(255, 87, 87), rgb(228, 27, 27));
    color: white;
    margin-top: 40px;
}

.markalar-card:nth-child(3) {
    background: linear-gradient(135deg, rgb(79, 195, 247), rgb(41, 182, 246));
    color: white;
    margin-top: 100px;
}

.markalar-card:nth-child(4) {
    background: linear-gradient(135deg, rgb(92, 107, 192), rgb(63, 81, 181));
    color: white;
    margin-top: 40px;
}

.markalar-card:nth-child(5) {
    background: linear-gradient(135deg, rgb(40, 53, 147), rgb(26, 35, 126));
    color: white;
    margin-top: 0px;
}

.markalar-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    top: 87px;
}

.markalar-card h3 {
    font-size: 29px;
    font-weight: 600;
    text-align: left;
}

.markalar-card p {
    font-size: 23px;
    opacity: 0.9;
}

.markalar-card-icerik {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
}

.markalar-kategori-img {
    height: 175px;
    width: auto;
}



/* 💻 1800px ve altı */
@media (max-width: 1800px) {
    .markalar-section-cards {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1600px;
    }

    .markalar-card {
        max-width: 280px;
    }
}

/* 💻 1672px ve altı */
@media (max-width: 1672px) {
    .markalar-section-cards {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1400px;
    }

    .markalar-card {
        max-width: 260px;
    }
}

/* 💻 1400px ve altı */
@media (max-width: 1400px) {
    .markalar-section-cards {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1200px;
    }

    .markalar-card {
        max-width: 217px;
        height: 269px;
    }


    .markalar-card-icon {
        top: 109px;
        width: 70px;
        height: 70px;
    }

    .markalar-card h3 {
        font-size: 24px;
    }

    .markalar-card p {
        font-size: 20px;
    }

    .markalar-card-icerik {
        width: 170px;
    }
}

/* 💻 1250px ve altı */
@media (max-width: 1250px) {
    .markalar-main-content {
        display: none;
    }

    .markalar-main-content-alt {
        display: block;
    }

    .markalar-section-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
        margin: 0 auto;
    }

    .markalar-card {
        max-width: 335px;
        height: 345px;
    }
}










/* ===================================== */
/* 📱 RESPONSIVE - TÜM SAYFALAR */
/* ===================================== */
@media (max-width: 1200px) {

    .events-showcase-section {
        padding: 60px 60px;
    }

    .events-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-section {
        padding: 60px 40px;
    }

    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .events-showcase-section {
        padding: 40px 60px;
    }



    .events-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-card-title {
        font-size: 18px;
    }

    .event-card-image-container {
        height: 380px;
    }


    .footer-bottom-section {
        padding: 40px 20px;
    }
}


@media (max-width: 450px) {

    .events-showcase-section {
        padding: 40px 40px;
    }

    .event-card-image-container {
        height: 300px;
    }

}



/* ===================================== */
/*  TASARIM -MARKALAR SAYFASI */
/* ===================================== */




#markalar .nav-container nav ul li a {
    color: white;
}

#markalar #menuToggle span{
    background: white;
}

#markalar #menuToggle  #menu li a {
    color: rgb(0, 0, 0);
}


#markalar .nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}


#markalar header.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

}

#markalar header.scrolled #menuToggle span{
    background: rgb(0, 0, 0);
}

#markalar header.scrolled .nav-container nav ul li a {
    color: rgb(51, 51, 51);
}

#markalar .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

#markalar header.scrolled .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

/* Hamburger close simgesi - SİYAH */
#markalar #menuToggle input:checked ~ span {
    background: #000000;
}

#markalar #menuToggle input:checked ~ span:nth-last-child(3) {
    background: #000000;
}

#markalar #menuToggle input:checked ~ span:nth-last-child(2) {
    background: #000000;
}

@media (max-width: 991px) {
    #markalar .logo-container a img {
        content: url('/assets/img/novalandlogo_white.png'); /* Mobil logo yolu */
    }

    #markalar header.scrolled  .logo-container a img{
        content: url('/assets/img/novalandlogo.png'); /* Mobil logo yolu */

    }
    
}
/* ===================================== */
/*  TASARIM -HİZMETLER SAYFASI */
/* ===================================== */

#hizmetler .custom-svg path{
    fill: url(#greenGradient);
    stroke: #000000;
    stroke-width: 1px;
}

#hizmetler .brands-main-title {
    color: #74d466;
}

#hizmetler .nav-container nav ul li a {
    color: white;
}

#hizmetler #menuToggle span{
    background: white;
}

#hizmetler #menuToggle  #menu li a {
    color: rgb(0, 0, 0);
}

#hizmetler .nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}


#hizmetler header.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

}

#hizmetler header.scrolled #menuToggle span{
    background: rgb(0, 0, 0);
}

#hizmetler header.scrolled .nav-container nav ul li a {
    color: rgb(51, 51, 51);
}

#hizmetler .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

#hizmetler header.scrolled .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

/* Hamburger close simgesi - SİYAH */
#hizmetler #menuToggle input:checked ~ span {
    background: #000000;
}

#hizmetler #menuToggle input:checked ~ span:nth-last-child(3) {
    background: #000000;
}

#hizmetler #menuToggle input:checked ~ span:nth-last-child(2) {
    background: #000000;
}

@media (max-width: 991px) {
    #hizmetler .logo-container a img {
        content: url('/assets/img/novalandlogo_white.png'); /* Mobil logo yolu */
    }

    #hizmetler header.scrolled  .logo-container a img{
        content: url('/assets/img/novalandlogo.png'); /* Mobil logo yolu */

    }
    
}



/* ===================================== */
/*  TASARIM -YEMEKMARKALARI SAYFASI */
/* ===================================== */
/*  TASARIM -YEMEKMARKALARI SAYFASI */
/* ===================================== */


#yemekmarkalar .custom-svg path{
    fill: url(#redGradient); /* Gradient kullan */
    stroke: #000000;
    stroke-width: 1px;
}

#yemekmarkalar .brands-main-title {
    color: rgb(238, 49, 49);
}

#yemekmarkalar .nav-container nav ul li a {
    color: white;
}

#yemekmarkalar #menuToggle  #menu li a {
    color: rgb(0, 0, 0);
}

#yemekmarkalar #menuToggle span{
    background: white;
}


#yemekmarkalar .nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}

#yemekmarkalar header.scrolled #menuToggle span{
    background: rgb(0, 0, 0);
}


#yemekmarkalar header.scrolled .nav-container nav ul li a {
    color: rgb(51, 51, 51);
}


#yemekmarkalar .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

#yemekmarkalar header.scrolled .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}


/* Hamburger close simgesi - SİYAH */
#yemekmarkalar #menuToggle input:checked ~ span {
    background: #000000;
}

#yemekmarkalar #menuToggle input:checked ~ span:nth-last-child(3) {
    background: #000000;
}

#yemekmarkalar #menuToggle input:checked ~ span:nth-last-child(2) {
    background: #000000;
}

@media (max-width: 991px) {
    #yemekmarkalar .logo-container a img {
        content: url('/assets/img/novalandlogo_white.png'); /* Mobil logo yolu */
    }

    #yemekmarkalar header.scrolled  .logo-container a img{
        content: url('/assets/img/novalandlogo.png'); /* Mobil logo yolu */

    }
}


/* ===================================== */
/*  TASARIM -EĞLENCE SAYFASI */
/* ===================================== */

#eglence .custom-svg path{
    fill: url(#blueGradient); /* Gradient kullan */
    stroke: #000000;
    stroke-width: 1px;
}

#eglence .brands-main-title {
    color: rgb(73, 90, 185);
}

#eglence .nav-container nav ul li a {
    color: white;
}

#eglence #menuToggle span{
    background: white;
}

#eglence #menuToggle  #menu li a {
    color: rgb(0, 0, 0);
}



#eglence .nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}


#eglence header.scrolled #menuToggle span{
    background: rgb(0, 0, 0);
}

#eglence header.scrolled .nav-container nav ul li a {
    color: rgb(51, 51, 51);
}

#eglence .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

#eglence header.scrolled .nav-container nav ul li a.active {
    color: rgb(134, 134, 134);
}

/* Hamburger close simgesi - SİYAH */
#eglence #menuToggle input:checked ~ span {
    background: #000000;
}

#eglence #menuToggle input:checked ~ span:nth-last-child(3) {
    background: #000000;
}

#eglence #menuToggle input:checked ~ span:nth-last-child(2) {
    background: #000000;
}

@media (max-width: 991px) {
    #eglence .logo-container a img {
        content: url('/assets/img/novalandlogo_white.png'); /* Mobil logo yolu */
    }

    #eglence header.scrolled  .logo-container a img{
        content: url('/assets/img/novalandlogo.png'); /* Mobil logo yolu */

    }
}



/* ===================================== */
/*  TASARIM -SİNEMA SAYFASI */
/* ===================================== */

#markalar .custom-svg path{
    fill: url(#darkblueGradient); /* Gradient kullan */
    stroke: #000000;
    stroke-width: 1px;
}


#sinema .brands-main-title {
    color: rgb(30, 41, 133);
}


#sinema .nav-container nav ul li a {
    color: white;
}

#sinema #menuToggle span{
    background: white;
}

#sinema #menuToggle  #menu li a {
    color: rgb(0, 0, 0);
}

#sinema .nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}

#sinema header.scrolled #menuToggle span{
    background: rgb(0, 0, 0);
}

#sinema header.scrolled .nav-container nav ul li a {
    color: rgb(51, 51, 51);
}


/* Hamburger close simgesi - SİYAH */
#sinema #menuToggle input:checked ~ span {
    background: #000000;
}

#sinema #menuToggle input:checked ~ span:nth-last-child(3) {
    background: #000000;
}

#sinema #menuToggle input:checked ~ span:nth-last-child(2) {
    background: #000000;
}

@media (max-width: 991px) {
    #sinema .logo-container a img {
        content: url('/assets/img/novalandlogo_white.png'); /* Mobil logo yolu */
    }

    #sinema header.scrolled  .logo-container a img{
        content: url('/assets/img/novalandlogo.png'); /* Mobil logo yolu */

    }
}



/* Sinema sayfasında sinema linkini aktif göster */
body#sinema .nav-container nav ul li a[href="#sinema"] {
    color: rgb(134, 134, 134) !important;
}

body#sinema header.scrolled .nav-container nav ul li a[href="#sinema"] {
    color: rgb(134, 134, 134) !important;
}

/* ===================================== */
/* 🎬 SİNEMA SAYFASI - ÖZEL KARTLAR (SADECE SİNEMA İÇİN) */
/* ===================================== */
#sinema .markalar-brand-card {
    background: rgb(241, 241, 241);
    border-radius: 15px;
    overflow: hidden;
}

#sinema .markalar-brand-image {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sinema .markalar-brand-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
    border-radius: 25px;
}

        /* ===================================== */
        /* 🎬 SİNEMA POPUP MODAL */
        /* ===================================== */
        .sinema-popup-overlay {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        .sinema-popup-content {
            position: relative;
            background: white;
            margin: 3% auto;
            padding: 0;
            width: 90%;
            max-width: 800px;
            border-radius: 20px;
            overflow: hidden;
            animation: slideDown 0.4s ease;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }

        .sinema-popup-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 35px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            transition: 0.3s;
        }

        .sinema-popup-close:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        .sinema-popup-header {
            position: relative;
            height: 242px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-film-afis {
            position: relative;
            top: 20px;
            max-height: 212px;
            max-width: 800px;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .sinema-popup-body {
            padding: 30px;
            padding-top: 10px;
        }

        .sinema-popup-body h2 {
            color: rgb(30, 41, 133);
            font-size: 28px;
            margin-bottom: 9px;
            text-align: center;
        }

        /* Film Türleri - İkonlu Etiketler */
        .film-tur-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 15px;
        }

        .tur-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            color: rgb(30, 41, 133);
            border: 1px solid rgb(200, 200, 200);
        }

        .tur-tag svg {
            width: 16px;
            height: 16px;
            fill: rgb(30, 41, 133);
        }

        .popup-film-detay {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 10px;
            padding: 20px;
            background: rgb(245, 245, 245);
            border-radius: 10px;
        }

            /* popup-film-detay bölümündeki ikonları hedefliyoruz */
        .popup-film-detay .info-icon {

            width: 0; /* Alanda yer kaplamasını minimuma indir */
        }


        .popup-film-detay p {
            margin: 0;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .popup-film-detay strong {
            color: rgb(30, 41, 133);
        }

        .info-icon {
            font-size: 16px;
        }

        .popup-film-ozet {
            margin-bottom: 15px;
        }

        .popup-film-ozet h3 {
            color: rgb(30, 41, 133);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .popup-film-ozet p {
            line-height: 1.6;
            text-align: justify;
            font-size: 14px;
        }

        .popup-seans-saatleri h3 {
            color: rgb(30, 41, 133);
            font-size: 20px;
            margin-bottom: 13px;
        }

        .seans-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .seans-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: rgb(80, 100, 220);
            color: white;
            border: none;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .seans-btn:hover {
            background: rgb(30, 41, 133);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 41, 133, 0.3);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
/* ===================================== */
/* 🎬 SİNEMA POPUP RESPONSIVE TASARIM */
/* ===================================== */

@media (max-width: 768px) {
    .sinema-popup-overlay {
        animation: fadeInMobile 0.3s ease;
    }
    
    .sinema-popup-content {
        width: 95%;
        margin: 2% auto;
        max-width: none;
        border-radius: 15px;
        animation: slideUpMobile 0.4s ease;
    }
    
    .sinema-popup-close {
        right: 15px;
        top: 15px;
        font-size: 30px;
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .sinema-popup-header {
        height: 150px; /* Daha küçük */
    }
    
    .popup-film-afis {
        max-height: 130px; /* Daha küçük */
        max-width: 85%;
    }
    
    .sinema-popup-body {
        padding: 20px 15px;
    }
    
    .sinema-popup-body h2 {
        font-size: 22px; /* Biraz küçülttüm */
        margin-bottom: 12px;
    }
    
    .film-tur-tags {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .tur-tag {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .popup-film-detay {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .popup-film-detay p {
        font-size: 12px;
    }
    
    .popup-film-ozet h3,
    .popup-seans-saatleri h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .popup-film-ozet {
        margin-bottom: 15px;
    }
    
    .popup-film-ozet p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .popup-seans-saatleri {
        margin-bottom: 15px;
    }
    
    .seans-buttons {
        gap: 8px;
    }
    
    .seans-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sinema-popup-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 12px;
    }
    
    .sinema-popup-close {
        right: 10px;
        top: 10px;
        font-size: 25px;
        width: 30px;
        height: 30px;
    }
    
    .sinema-popup-header {
        height: 120px; /* Daha da küçük */
    }
    
    .popup-film-afis {
        max-height: 100px; /* Daha da küçük */
        max-width: 90%;
    }
    
    .sinema-popup-body {
        padding: 15px 12px;
    }
    
    .sinema-popup-body h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .film-tur-tags {
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .tur-tag {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .popup-film-detay {
        padding: 10px;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .popup-film-detay p {
        font-size: 11px;
    }
    
    .popup-film-ozet,
    .popup-seans-saatleri {
        margin-bottom: 12px;
    }
    
    .popup-film-ozet h3,
    .popup-seans-saatleri h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .popup-film-ozet p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .seans-buttons {
        gap: 6px;
    }
    
    .seans-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Çok küçük ekranlar için (360px ve altı) */
@media (max-width: 360px) {
    .sinema-popup-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        overflow-y: auto;
    }
    
    .sinema-popup-header {
        height: 100px;
    }
    
    .popup-film-afis {
        max-height: 85px;
    }
    
    .sinema-popup-body {
        padding: 12px 10px;
    }
    
    .sinema-popup-body h2 {
        font-size: 16px;
    }
    
    .film-tur-tags {
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .tur-tag {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .popup-film-detay {
        padding: 8px;
        gap: 6px;
    }
    
    .popup-film-detay p {
        font-size: 10px;
    }
    
    .popup-film-ozet h3,
    .popup-seans-saatleri h3 {
        font-size: 13px;
    }
    
    .popup-film-ozet p {
        font-size: 10px;
    }
    
    .seans-btn {
        padding: 7px 10px;
        font-size: 11px;
    }
}

/* Yatay mod (landscape) için optimizasyon */
@media (max-height: 600px) and (orientation: landscape) {
    .sinema-popup-content {
        margin: 1% auto;
        max-height: 98vh;
        overflow-y: auto;
    }
    
    .sinema-popup-header {
        height: 120px;
    }
    
    .popup-film-afis {
        max-height: 100px;
    }
    
    .sinema-popup-body {
        padding: 12px;
    }
    
    .sinema-popup-body h2 {
        font-size: 18px;
    }
    
    .popup-film-detay {
        padding: 10px;
    }
}

/* Tablet için (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .sinema-popup-content {
        width: 84%;
        height: 100%;
        margin: 5% auto;
    }
    
    .sinema-popup-header {
        height: 250px;
    }
    
    .popup-film-afis {
        max-height: 230px;
    }
    
    .sinema-popup-body {
        padding: 25px;
    }
}

/* Animasyonlar için mobile uyumlu versiyonlar */
@keyframes fadeInMobile {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpMobile {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar stilleri popup için */
.sinema-popup-content::-webkit-scrollbar {
    width: 8px;
}

.sinema-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.sinema-popup-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.sinema-popup-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}



/* ===================================== */
/* 🏪 MARKA DETAY POPUP */
/* ===================================== */
.marka-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.marka-popup-content {
    position: relative;
    background: white;
    margin: 3% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    animation: slideDown 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.marka-popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: 0.3s;
}

.marka-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.marka-popup-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgb(247, 181, 0), rgb(250, 205, 0));
    display: flex;
    align-items: center;
    justify-content: center;
}


#markalar .custom-svg path{
    fill: url(#orangeGradient); /* Gradient kullan */
    stroke: #000000;
    stroke-width: 1px;
}

/* Markalar sayfası için */
#markalar .marka-popup-header {
    background: linear-gradient(135deg, rgb(247, 181, 0), rgb(250, 205, 0));
}

/* Yemek markalar sayfası için */
#yemekmarkalar .marka-popup-header {
    background: linear-gradient(135deg, rgb(238, 49, 49), rgb(255, 85, 85));
}

/* Hizmetler sayfası için */
#hizmetler .marka-popup-header {
    background: linear-gradient(135deg, #74d466, #1e8232);
}

/* Eğlence sayfası için */
#eglence .marka-popup-header {
    background: linear-gradient(135deg, rgb(73, 90, 185), rgb(120, 140, 255));
}

.popup-marka-logo {
    max-height: 150px;
    max-width: 80%;
    object-fit: contain;
}

.marka-popup-body {
    padding: 30px;
}

.marka-popup-body h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

/* Markalar sayfası için renk */
#markalar .marka-popup-body h2,
#markalar .popup-marka-detay strong,
#markalar .popup-marka-aciklama h3,
#markalar .popup-marka-kampanyalar h3 {
    color: rgb(247, 147, 30);
}

/* Yemek markalar sayfası için renk */
#yemekmarkalar .marka-popup-body h2,
#yemekmarkalar .popup-marka-detay strong,
#yemekmarkalar .popup-marka-aciklama h3,
#yemekmarkalar .popup-marka-kampanyalar h3 {
    color: rgb(238, 49, 49);
}

/* Hizmetler sayfası için renk */
#hizmetler .marka-popup-body h2,
#hizmetler .popup-marka-detay strong,
#hizmetler .popup-marka-aciklama h3,
#hizmetler .popup-marka-kampanyalar h3 {
    color: #74d466;
}

/* Eğlence sayfası için renk */
#eglence .marka-popup-body h2,
#eglence .popup-marka-detay strong,
#eglence .popup-marka-aciklama h3,
#eglence .popup-marka-kampanyalar h3 {
    color: rgb(73, 90, 185);
}

.popup-marka-detay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgb(245, 245, 245);
    border-radius: 10px;
}

.popup-marka-detay p {
    margin: 0;
    font-size: 14px;
}

.popup-marka-aciklama,
.popup-marka-kampanyalar {
    margin-bottom: 20px;
}

.popup-marka-aciklama h3,
.popup-marka-kampanyalar h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.popup-marka-aciklama p,
.popup-marka-kampanyalar p {
    line-height: 1.6;
    text-align: justify;
    font-size: 14px;
    color: rgb(85, 85, 85);
}

/* ===================================== */
/* 📱 MARKA POPUP RESPONSIVE TASARIM */
/* ===================================== */

@media (max-width: 768px) {
    .marka-popup-overlay {
        animation: fadeInMobile 0.3s ease;
    }
    
    .marka-popup-content {
        width: 95%;
        margin: 2% auto;
        max-width: none;
        border-radius: 15px;
        animation: slideUpMobile 0.4s ease;
    }
    
    .marka-popup-close {
        right: 15px;
        top: 15px;
        font-size: 30px;
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .marka-popup-header {
        height: 150px;
    }
    
    .popup-marka-logo {
        max-height: 100px;
        max-width: 85%;
    }
    
    .marka-popup-body {
        padding: 20px 15px;
    }
    
    .marka-popup-body h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .popup-marka-detay {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .popup-marka-detay p {
        font-size: 13px;
    }
    
    .popup-marka-aciklama h3,
    .popup-marka-kampanyalar h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .popup-marka-aciklama p,
    .popup-marka-kampanyalar p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .marka-popup-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 12px;
    }
    
    .marka-popup-close {
        right: 10px;
        top: 10px;
        font-size: 25px;
        width: 30px;
        height: 30px;
    }
    
    .marka-popup-header {
        height: 120px;
    }
    
    .popup-marka-logo {
        max-height: 80px;
        max-width: 90%;
    }
    
    .marka-popup-body {
        padding: 15px 12px;
    }
    
    .marka-popup-body h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .popup-marka-detay {
        padding: 12px;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .popup-marka-detay p {
        font-size: 12px;
    }
    
    .popup-marka-aciklama,
    .popup-marka-kampanyalar {
        margin-bottom: 15px;
    }
    
    .popup-marka-aciklama h3,
    .popup-marka-kampanyalar h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .popup-marka-aciklama p,
    .popup-marka-kampanyalar p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Çok küçük ekranlar için (360px ve altı) */
@media (max-width: 360px) {
    .marka-popup-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        overflow-y: auto;
    }
    
    .marka-popup-header {
        height: 100px;
    }
    
    .popup-marka-logo {
        max-height: 60px;
    }
    
    .marka-popup-body {
        padding: 12px 10px;
    }
    
    .marka-popup-body h2 {
        font-size: 18px;
    }
    
    .popup-marka-detay {
        padding: 10px;
    }
    
    .popup-marka-detay p {
        font-size: 11px;
    }
}

/* Yatay mod (landscape) için optimizasyon */
@media (max-height: 600px) and (orientation: landscape) {
    .marka-popup-content {
        margin: 1% auto;
        max-height: 98vh;
        overflow-y: auto;
    }
    
    .marka-popup-header {
        height: 100px;
    }
    
    .popup-marka-logo {
        max-height: 70px;
    }
    
    .marka-popup-body {
        padding: 15px;
    }
}

/* Tablet için (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .marka-popup-content {
        width: 85%;
        margin: 5% auto;
    }
    
    .marka-popup-header {
        height: 180px;
    }
    
    .popup-marka-logo {
        max-height: 140px;
    }
    
    .marka-popup-body {
        padding: 25px;
    }
}

/* Animasyonlar için mobile uyumlu versiyonlar */
@keyframes fadeInMobile {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpMobile {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar stilleri popup için */
.marka-popup-content::-webkit-scrollbar {
    width: 8px;
}

.marka-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.marka-popup-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.marka-popup-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Body scroll'u engelleme */
body.popup-open {
    overflow: hidden;
}

/* Section 1 - Başlık ve Açıklama */
.iletisim-hero {
    max-width: 1400px;
    margin: 200px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 0px;
}

.hero-baslik h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FF6B35, #1863A3, #AF237C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.hero-metin p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
    text-align: justify;
}

/* Section 2 - Tam Genişlik Görsel */
.full-width-image {
    width: 100%;
    height: 800px;
    overflow: hidden;
    z-index: 51;
    position: relative;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 51;
    position: relative;
}

/* Section 3 - Form (YAN YANA DÜZENLENDİ) */
.iletisim-form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-top: 70px;
}

.form-sol-taraf {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-baslik {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: black;
    background: linear-gradient(135deg, #000000, #000000, #AF237C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-aciklama {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
    text-align: justify;
}

.form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-input-group {
    width: 100%;
}

.form-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    color: #343a40;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #adb5bd;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    box-shadow: rgba(233, 64, 137, 0.212) 0px 8px 20px;
    background: rgb(207, 6, 105);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(207, 6, 107, 0.562);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

/* Section 4 - Harita */
.harita-section {
    width: 100%;
    height: 650px;
    margin-top: 100px;
}

.harita-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Section 5 - İletişim Bilgileri */
.iletisim-bilgileri {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    margin-bottom: 50px;
}

.bilgi-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    height: 336px;
}

.bilgi-card.adres {
    background: linear-gradient(39deg, rgb(175, 35, 124), rgb(255 66 147));
}

.bilgi-card.tel {
    background: linear-gradient(39deg, rgb(200, 30, 35), rgb(255, 80, 80));
}

.bilgi-card.posta {
    background: linear-gradient(39deg, rgb(24, 99, 163), rgb(66, 150, 255));
}

.bilgi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.bilgi-baslik {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.bilgi-icerik {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
}

.bilgi-icerik a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}


.map-left-bg {
    position: absolute;
    width: 100%;
    top: 1790px;
}

.map-left-bg img {
    height: 450px;
    width: 100%;
}

.map-top-bg {
    position: absolute;
    width: 100%;
    top: 1366px;
}

.map-top-bg img {
    height: 205px;
    width: 100%;
}

.harita-baslik {
    position: absolute;
    left: 43%;
    top: 129px;
    z-index: 99;
    font-size: 24px;
    font-weight: 400;
}


/* Responsive */
@media (max-width: 1024px) {
    .iletisim-hero {
        grid-template-columns: 1fr;
        gap: 50px;
        margin: 60px auto;
    }

    .hero-baslik h1 {
        font-size: 40px;
        text-align: center;
    }

    .hero-metin p {
        text-align: center;
    }

    .iletisim-form-section {
        grid-template-columns: 1fr;
        gap: 50px;
        margin: 80px auto;
    }

    .form-baslik {
        text-align: center;
    }

    .form-aciklama {
        text-align: center;
    }

    .iletisim-bilgileri {
        grid-template-columns: 1fr;
    }

    .map-top-bg img {
        height: 154px;
        width: 100%;
    }

    .map-top-bg {
        position: absolute;
        width: 100%;
        top: 2400px;
    }

    .map-left-bg img {
        height: 394px;
        width: 100%;
    }
    .map-left-bg {
        position: absolute;
        width: 100%;
        top: 2765px;
    }
}

@media (max-width: 768px) {
    .iletisim-hero {
        padding: 0 20px;
    }

    .hero-baslik h1 {
        font-size: 32px;
    }

    .full-width-image {
        height: 400px;
    }

    .iletisim-form-section {
        padding: 0 20px;
        margin: 120px auto;
    }

    .form-wrapper {
        padding: 40px 30px;
    }

    .form-input-row {
        grid-template-columns: 1fr;
    }

    .harita-section {
        height: 400px;
        margin-top: 60px;
    }

    .iletisim-bilgileri {
        padding: 60px 20px;
    }


    .map-top-bg {
        display: none;
    }

    .map-left-bg {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-baslik h1 {
        font-size: 28px;
    }

    .form-baslik {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .full-width-image {
        height: 300px;
    }
}






/* ===================================== */
/*  TASARIM - SAYFASI */
/* ===================================== */


@media (max-width: 991px) {
    #etkinlik .logo-container a img {
        content: url('/assets/img/novalandlogo_white.png'); /* Mobil logo yolu */
    }

    #etkinlik header.scrolled  .logo-container a img{
        content: url('/assets/img/novalandlogo.png'); /* Mobil logo yolu */

    }
}

#etkinlik .custom-svg path{
    fill: url(#greenGradient); /* Gradient kullan */
    stroke: #000000;
    stroke-width: 1px;
}

#etkinlik .brands-main-title {
    color: rgb(30, 130, 50);
}

#etkinlik .nav-container nav ul li a {
    color: white;
}

#etkinlik #menuToggle  #menu li a {
    color: rgb(0, 0, 0);
}

#etkinlik #menuToggle span{
    background: white;
}

#etkinlik .nav-container nav ul li a:hover {
    color: rgb(134, 134, 134);
}


#etkinlik header.scrolled #menuToggle span{
    background: rgb(0, 0, 0);
}

#etkinlik header.scrolled .nav-container nav ul li a {
    color: rgb(51, 51, 51);
}


/* Hamburger close simgesi - SİYAH */
#etkinlik #menuToggle input:checked ~ span {
    background: #000000;
}

#etkinlik #menuToggle input:checked ~ span:nth-last-child(3) {
    background: #000000;
}

#etkinlik #menuToggle input:checked ~ span:nth-last-child(2) {
    background: #000000;
}




body#etkinlik .nav-container nav ul li a[href="#sinema"] {
    color: rgb(134, 134, 134) !important;
}

body#etkinlik header.scrolled .nav-container nav ul li a[href="#sinema"] {
    color: rgb(134, 134, 134) !important;
}

/* ===================================== */
/* 🎬 SİNEMA SAYFASI - ÖZEL KARTLAR */
/* ===================================== */
#etkinlik .markalar-brand-card {
    background: rgb(241, 241, 241);
    border-radius: 15px;
    overflow: hidden;
}

#etkinlik .markalar-brand-image {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#etkinlik .markalar-brand-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 25px;
}



#iletisim .footer-bottom-section {
    background: rgb(241, 241, 241);
}

#iletisim .footer-top-section{
    background: rgb(241, 241, 241);
}




/* Etkinlik Grid Section */
/* Etkinlik Grid Section */
.etkinlik-grid-section {
    padding: 60px 60px;
    background-color: #ffffff;
}

.etkinlik-container {
    max-width: 1400px;
    margin: 0 auto;
}

.etkinlik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: stretch;
}

/* Etkinlik Card Styles */
.etkinlik-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.etkinlik-card:hover {
    transform: translateY(-8px);
}

/* Etkinlik Header */
.etkinlik-header {
    padding: 20px;
    color: #000000;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.etkinlik-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.etkinlik-date {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Etkinlik Image */
.etkinlik-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.etkinlik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.etkinlik-card:hover .etkinlik-image img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .etkinlik-grid-section {
        padding: 50px 40px;
    }
    
    .etkinlik-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .etkinlik-image {
        height: 280px;
    }
}

@media (max-width: 1200px) {
    .etkinlik-grid-section {
        padding: 40px 30px;
    }
    
    .etkinlik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .etkinlik-image {
        height: 280px;
    }
    
    .etkinlik-header {
        min-height: 110px;
    }
}

@media (max-width: 1024px) {
    .etkinlik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .etkinlik-image {
        height: 260px;
    }
    
    .etkinlik-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .etkinlik-grid-section {
        padding: 40px 25px;
    }

    .etkinlik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .etkinlik-header {
        min-height: 100px;
        padding: 15px;
    }

    .etkinlik-title {
        font-size: 16px;
    }

    .etkinlik-date {
        font-size: 13px;
    }

    .etkinlik-image {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .etkinlik-grid-section {
        padding: 48px 50px;
    }
    
    .etkinlik-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .etkinlik-header {
        min-height: 90px;
        padding: 15px;
    }
    
    .etkinlik-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .etkinlik-grid-section {
        padding: 30px 15px;
    }
    
    .etkinlik-header {
        min-height: 85px;
        padding: 15px;
    }

    .etkinlik-title {
        font-size: 15px;
        margin: 0 0 8px 0;
    }
    
    .etkinlik-date {
        font-size: 12px;
    }

    .etkinlik-image {
        height: 220px;
    }
}




/* ===================================== */
/* 📱 ETKİNLİK POPUP RESPONSIVE TASARIM */
/* ===================================== */

/* Popup Overlay */
.etkinlik-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.etkinlik-popup-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Mobilde üstten hizala */
    padding: 20px;
}

/* Popup Content */
.etkinlik-popup-content {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: auto; /* Ortalamak için */
}

/* Close Button */
.etkinlik-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.etkinlik-popup-close:hover {
    background: #f44336;
    color: #fff;
    transform: rotate(90deg);
}

/* Popup Image */
.etkinlik-popup-image {
    width: 100%;
    height: 400px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.etkinlik-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Popup Body */
.etkinlik-popup-body {
    padding: 30px;
}

.etkinlik-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e8232;
    margin-bottom: 15px;
    line-height: 1.3;
}

.etkinlik-popup-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.etkinlik-popup-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================== */
/* 📱 RESPONSIVE TASARIM */
/* =========================== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .etkinlik-popup-overlay.active {
        padding: 15px;
        align-items: flex-start;
    }
    
    .etkinlik-popup-content {
        max-width: 95%;
        margin: 10px auto;
        border-radius: 12px;
    }
    
    .etkinlik-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .etkinlik-popup-image {
        height: 250px;
        border-radius: 12px 12px 0 0;
    }
    
    .etkinlik-popup-body {
        padding: 20px;
    }
    
    .etkinlik-popup-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .etkinlik-popup-date {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .etkinlik-popup-description {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 15px;
    }
}

/* Mobil (480px ve altı) */
@media (max-width: 480px) {
    .etkinlik-popup-overlay.active {
        padding: 10px;
        align-items: flex-start;
    }
    
    .etkinlik-popup-content {
        max-width: 100%;
        margin: 5px auto;
        border-radius: 10px;
    }
    
    .etkinlik-popup-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .etkinlik-popup-image {
        height: 200px;
        border-radius: 10px 10px 0 0;
    }
    
    .etkinlik-popup-body {
        padding: 15px;
    }
    
    .etkinlik-popup-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .etkinlik-popup-date {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .etkinlik-popup-description {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 12px;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media (max-width: 360px) {
    .etkinlik-popup-overlay.active {
        padding: 5px;
    }
    
    .etkinlik-popup-content {
        border-radius: 8px;
        margin: 0 auto;
    }
    
    .etkinlik-popup-close {
        top: 6px;
        right: 6px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .etkinlik-popup-image {
        height: 180px;
        border-radius: 8px 8px 0 0;
    }
    
    .etkinlik-popup-body {
        padding: 12px;
    }
    
    .etkinlik-popup-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .etkinlik-popup-date {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .etkinlik-popup-description {
        font-size: 13px;
        line-height: 1.4;
        margin-top: 10px;
    }
}

/* Yatay mod (landscape) için optimizasyon */
@media (max-height: 600px) and (orientation: landscape) {
    .etkinlik-popup-overlay.active {
        align-items: flex-start;
        padding: 10px;
    }
    
    .etkinlik-popup-content {
        max-height: 95vh;
        overflow-y: auto;
        margin: 10px auto;
    }
    
    .etkinlik-popup-image {
        height: 150px;
    }
    
    .etkinlik-popup-body {
        padding: 15px;
    }
}

/* Yüksek çözünürlüklü ekranlar için */
@media (min-width: 1200px) {
    .etkinlik-popup-content {
        max-width: 800px;
    }
    
    .etkinlik-popup-image {
        height: 450px;
    }
}

/* Koyu tema desteği */
@media (prefers-color-scheme: dark) {
    .etkinlik-popup-content {
        /* background: #2d2d2d; */
        color: #000000;
    }
    
    .etkinlik-popup-title {
        color: #000000;
    }
    
    .etkinlik-popup-date {
        color: #ccc;
    }
    
    .etkinlik-popup-description {
        color: #ccc;
    }
    
    .etkinlik-popup-close {
        background: rgba(45, 45, 45, 0.95);
        color: #fff;
    }
}

/* Touch device optimizasyonu */
@media (hover: none) and (pointer: coarse) {
    .etkinlik-popup-close:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        color: #333;
    }
    
    .etkinlik-popup-close:active {
        background: #f44336;
        color: #fff;
        transform: rotate(90deg);
    }
}

/* Scrollbar stilleri */
.etkinlik-popup-content::-webkit-scrollbar {
    width: 6px;
}

.etkinlik-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.etkinlik-popup-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.etkinlik-popup-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Etkinlik Card Hover Effect */
.etkinlik-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.etkinlik-card:hover {
    transform: translateY(-5px);
}

/* Mobilde hover efektini kaldır */
@media (hover: none) and (pointer: coarse) {
    .etkinlik-card:hover {
        transform: none;
    }
    
    .etkinlik-card:active {
        transform: scale(0.98);
    }
}

.markalar-main-content a,
.main-content-alt a {
    text-decoration: none; 
}

.markalar-main-content a:hover,
.main-content-alt a:hover {
    text-decoration: none;  /
}