/* CSS Reset & Core Settings */
:root {
    --white: #ffffff;
    --text-muted: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background: #000; 
    color: var(--white); 
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ------------------------------------- */
/* PRESTIGE OVERLAY HEADER               */
/* ------------------------------------- */
.main-header { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 50; 
    padding-top: 1.5rem; 
}

/* TOP ROW */
.top-row { 
    display: grid; 
    grid-template-columns: 1fr auto 1fr; 
    align-items: start; 
    gap: 2rem; 
}

/* = Top Left = */
.top-left { 
    display: flex; 
    flex-direction: column; 
    gap: 0.8rem; 
    font-size: 0.85rem; 
    letter-spacing: 0.5px; 
}
.contact-line { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--text-muted);
}
.contact-line i { font-size: 0.95rem; }
.phone-num { font-weight: 500; color: var(--white); }

.account-links { 
    display: flex; 
    align-items: center; 
    gap: 0.7rem; 
    color: var(--white); 
    font-weight: 500;
}
.account-links a { transition: opacity 0.3s; }
.account-links a:hover { opacity: 0.7; }

/* = Top Center (Decomaxi Logo) = */
.top-center { 
    text-align: center; 
}
.top-center img {
    max-height: 85px; /* Orjinal kalsın ama aşırı devasa olmasın */
    max-width: 100%;
    object-fit: contain;
}
.logo { 
    margin: 0; 
    font-size: 3.2rem; 
    font-weight: 900; 
    letter-spacing: 2px; 
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif; /* Fallback for bold chunky block logo if font doesn't match perfectly */
}
.tagline { 
    display: block; 
    font-size: 0.75rem; 
    letter-spacing: 3px; 
    text-transform: lowercase; 
    color: var(--text-muted); 
    margin-top: 5px;
    font-weight: 400;
}

/* = Top Right = */
.top-right { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    gap: 0.5rem; 
    font-size: 0.85rem; 
}
.search-cart-line { 
    display: flex; 
    align-items: center; 
    gap: 2.5rem; 
}
.search-box { 
    display: flex; 
    align-items: center; 
    border-bottom: 1px solid rgba(255,255,255,0.4); 
    padding-bottom: 5px; 
}
.search-box input { 
    background: transparent; 
    border: none; 
    color: var(--white); 
    outline: none; 
    font-family: inherit; 
    font-size: 0.75rem; 
    width: 130px; 
}
.search-box input::placeholder { color: rgba(255,255,255,0.6); }
.search-box i { font-size: 0.9rem; color: rgba(255,255,255,0.8); cursor: pointer; }

.cart-icon { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 1.15rem; 
    cursor: pointer;
}
.cart-icon span { font-size: 1rem; font-weight: 600; }

.currency-line { 
    color: var(--white); 
    font-weight: 600;
    margin-top: 3px;
    margin-right: 1.5rem;
}

/* ------------------------------------- */
/* FROSTED GLASS NAVIGATION BAR          */
/* ------------------------------------- */
.mobile-menu-toggle { display: none; }
.glass-nav { 
    margin-top: 2rem; 
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border-top: 1px solid rgba(255,255,255,0.1); 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}
.nav-menu { 
    display: flex; 
    justify-content: center; 
    gap: 3.5rem; 
    padding: 1.2rem 0; 
}
.nav-menu a { 
    font-size: 0.85rem; 
    font-weight: 700; 
    letter-spacing: 1.5px; 
    color: var(--white); 
    text-shadow: 0 2px 4px rgba(0,0,0,0.4); 
    transition: opacity 0.3s;
}
.nav-menu a:hover { opacity: 0.6; }


/* ------------------------------------- */
/* FULLSCREEN HERO SLIDER                */
/* ------------------------------------- */
.hero-slider { 
    height: 100vh; 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
}
.swiper-slide { 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
}
/* Subtle dark gradient overlay to ensure menu visibility over any image */
.swiper-slide::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.4) 100%); 
}

/* Glassmorphism Info Box Box at bottom left */
.slider-info-box { 
    position: absolute; 
    bottom: 4rem; 
    left: 4rem; 
    max-width: 550px; 
    background: rgba(0, 0, 0, 0.45); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 2.2rem; 
    border-radius: 12px; 
    border: 1px solid rgba(255,255,255,0.08); 
    z-index: 10; 
    color: #e2e8f0; 
    font-size: 0.95rem; 
    line-height: 1.6; 
}
.slider-info-box strong { 
    color: var(--white); 
    font-size: 1.05rem; 
    font-weight: 700;
}

/* Swiper Autoplay Progress Line */
.slider-progress-bar-container {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 50;
}
.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ------------------------------------- */
/* BANNERS GRID SECTION (Asymmetric)     */
/* ------------------------------------- */
.banners-grid-section {
    padding: 3rem 0;
    background: #fff;
}
.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.grid-banner {
    position: relative;
    display: block;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: inherit;
    transition: transform 0.4s ease;
}
.grid-banner:hover {
    transform: scale(1.005);
}
.tall-banner {
    height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 3rem;
}
.tall-text-top {
    font-size: 2.1rem;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1.3;
}
.tall-text-bottom {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    color: #222;
    max-width: 400px;
}
.tall-text-bottom h4 { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 700; line-height: 1.4; color: #1a1a1a; }
.tall-text-bottom p { font-size: 0.85rem; color: #444; font-weight: 500;}

.grid-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 750px;
}
.short-banner {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}
.dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.decomini-content {
    position: relative;
    z-index: 10;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.click-badge {
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 2rem;
}
.decomini-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.oasis-content {
    padding: 3rem;
    color: #333;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, transparent 40%);
    height: 100%;
}
.oasis-content h2 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 0.5rem;
}
.oasis-content p {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
}

/* ------------------------------------- */
/* VAZO COLLECTION BANNER                */
/* ------------------------------------- */
.vazo-banner {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}
/* Subtle darkened overlay just for readability, not pitch black */
.vazo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15); 
}
.vazo-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 900px;
    padding: 0 1rem;
}
.vazo-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.vazo-content p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 2.5px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.btn-incele {
    display: inline-block;
    background: var(--white);
    color: #111;
    padding: 12px 35px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.btn-incele:hover {
    background: #111;
    color: var(--white);
}


/* ------------------------------------- */
/* LUXURY FOOTER                         */
/* ------------------------------------- */
.main-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 6rem 0 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-logo { font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 1.5rem; display: block; letter-spacing: 2px; font-family: Arial, sans-serif; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1.8rem; font-weight: 600; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 1rem; color: #888; }
.footer-col ul li a { color: #888; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--white); padding-left: 8px; }

.social-icons { display: flex; gap: 1rem; margin-top: 2rem; }
.social-icons a { width: 45px; height: 45px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; color: #ccc;}
.social-icons a:hover { background: var(--white); color: #000; border-color: var(--white); transform: translateY(-5px); }

.footer-bottom { border-top: 1px solid #222; padding-top: 2rem; text-align: center; font-size: 0.85rem; color: #555; letter-spacing: 1px; }


/* Responsive Tweaks */
@media (max-width: 1024px) {
    .nav-menu { gap: 1.5rem; }
    .nav-menu a { font-size: 0.75rem; }
    .slider-info-box { left: 2rem; bottom: 2rem; max-width: calc(100% - 4rem); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    /* Başlık Düzeni (Siyah arka plan, Slider aşağıda) */
    .main-header { position: relative !important; background: #000 !important; border-bottom: 2px solid #222; }
    
    .top-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 15px 15px 15px !important;
        gap: 15px;
        position: relative;
    }
    
    .top-left { width: 100%; text-align: center; order: 1; display: flex; justify-content: center !important; }
    .top-left .contact-line span { display: none !important; } /* Projeler için gizlendi */
    .top-left .contact-line a, .top-left .contact-line i { font-size: 0.85rem !important; color: #ccc; text-decoration: none; display: inline-block; padding-top: 5px; }
    
    .top-center { width: 100%; text-align: center; order: 2; margin-top: 10px; }
    .top-center .logo { font-size: 2.5rem; margin: 0; }
    .top-center img { max-width: 75%; max-height: 55px; object-fit: contain; }
    .top-center .tagline { font-size: 0.65rem; }
    
    /* Sağ Taraf - Sadece Hamburger (Sepet Gizli) */
    .top-right { 
        position: absolute; 
        right: 20px; 
        top: 25px; 
    }
    .top-right .cart-icon { display: none !important; }

    /* Hamburger Menüsü */
    .mobile-menu-toggle { display: block !important; font-size: 1.8rem; color: #fff; cursor: pointer; }
    .glass-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        z-index: 1000;
        padding: 0;
        margin-top: 0;
    }
    .glass-nav.active { display: block; }
    .nav-menu { display: flex !important; flex-direction: column; width: 100%; padding: 0 !important; margin: 0; }
    .nav-menu a { width: 100%; padding: 15px 20px; text-align: left; border-top: none; border-left: none; border-right: none; border-bottom: 1px solid #222; font-size: 1.1rem; border-radius: 0; background: transparent; }

    /* Hero Slider Mobile Tam Otursun (Kesilmesin diye 16:9 yatay oran kullanıldı) */
    .hero-slider {
        display: block !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
        min-height: unset !important;
        background: #000 !important;
    }
    .hero-slider .swiper-slide {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Doğru Parallax Vazo Alanı Mobilde Tamamen Silinir */
    .parallax-vazo-section { display: none !important; }
    
    /* Normal Slider Yazıları ve Diğer Kategoriler Bırakıldı */
    .slider-info-box { display: block !important; left: 15px !important; bottom: 15px !important; width: calc(100% - 30px) !important; padding: 1.2rem !important; }
    .slider-info-box h2 { font-size: clamp(1.2rem, 4vw, 2rem) !important; line-height: 1.2 !important; margin-bottom: 5px !important; }
    .slider-info-box p { font-size: clamp(0.9rem, 3vw, 1.1rem) !important; margin: 0 !important; }
    .parallax-category-section { display: block !important; }

    /* Banners Grid Section ("Tasarım" köşesi ve Decomini) */
    .banners-grid-section .container { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
    .custom-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 10px !important; /* Aralarına 10px boşluk */
    }
    .grid-right-col { 
        width: 100% !important; 
        height: auto !important; 
        display: flex; 
        flex-direction: column; 
        gap: 10px !important; 
    }
    .tall-banner, .short-banner {
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        border-radius: 0 !important;
        background-size: cover !important;
        background-position: center !important;
    }
    /* Sığmaları için kendilerine özel Oranlar (aspect-ratio) */
    .tall-banner { aspect-ratio: 4/5 !important; }
    .short-banner { aspect-ratio: 16/9 !important; }
    
    /* Triple Grid ("Nasıl Yapıyoruz", Saksı, Sehpa vb.) */
    .banners-wrapper { padding: 0 !important; }
    .custom-triple-grid {
        display: flex !important; 
        flex-direction: column !important; 
        gap: 10px !important; /* Aralarına 10px boşluk */
    }
    .custom-video-box, .custom-banner-card {
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
    }
    .custom-video-box { aspect-ratio: 16/9 !important; }
    .custom-triple-grid .custom-banner-card:nth-child(2) {
        aspect-ratio: 4/5 !important; 
        background-size: cover !important;
        background-position: center !important;
    }
    .custom-triple-grid .custom-banner-card:nth-child(3) {
        aspect-ratio: 16/9 !important; 
        background-size: cover !important;
        background-position: center !important;
    }

    /* Footer Mobil Ölçeklemesi */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 2.5rem; }
    .footer-grid .footer-col { display: flex; flex-direction: column; align-items: center; }

    .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { display: none !important; }
}
