
:root {
    --bg-color: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #d4af37;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 400; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


nav {
    position: fixed; top: 0; width: 100%; padding: 20px 50px;
    display: flex; justify-content: space-between; align-items: center; z-index: 1000;
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo { font-size: 1.5rem; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; color: #fff; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; position: relative; color: #fff; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.menu-icon { color: #fff; display: none; cursor: pointer; font-size: 1.5rem; }


header {
    height: 100vh; width: 100%; position: relative;
    display: flex; justify-content: center; align-items: center; text-align: center;
    /* --- RESİM YOLUNU KONTROL ET --- */
    background: url('2017.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); }
.hero-content { position: relative; z-index: 2; animation: fadeIn 2s ease-out; }
.hero-content h1 { font-size: 4rem; margin-bottom: 10px; letter-spacing: 5px; color: #fff; }
.hero-content p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); letter-spacing: 2px; margin-bottom: 40px; }

.cta-btn {
    padding: 12px 35px; border: 1px solid rgba(255,255,255,0.4);
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px;
    background: transparent; color: white; cursor: pointer; transition: var(--transition);
}
.cta-btn:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.scroll-down { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; opacity: 0.8; color: #fff; }

/* --- SLIDER --- */
.gallery-section { padding: 80px 0; background: #0a0a0a; }
.section-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; letter-spacing: 3px; color: #fff; }
.section-header p { color: var(--text-secondary); font-size: 0.9rem; }

.slider-wrapper {
    position: relative;
    width: 95%; 
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}


/* --- BENTO GRID STYLE --- */

.bento-container {
    display: grid;
    /* 4 Eşit sütun oluşturuyoruz */
    grid-template-columns: repeat(5, 1fr);
    /* Satır yükseklikleri otomatik ama minimum 200px */
    grid-auto-rows: minmax(100px, auto);
    gap: 15px; /* Kutular arası boşluk */
    padding: 0 5%;
    max-width: 100%;
    margin: 0 auto;
}

/* Genel Kutu Stili */
.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* Hafif köşe yumuşatma */
    display: block;
    width: 100%;
    height: 100%;
}

/* Resimlerin kutuya tam oturması için */
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* --- ÖZEL BOYUTLANDIRMA SINIFLARI (Çizimine Göre) --- */

/* 1. Sol En Baştaki Uzun Blok */
.item-tall {
    grid-column: span 1;
    grid-row: span 2; /* 2 satır yüksekliğinde */
    height: 100%; /* Emin olmak için */
}

/* 2. Ortadaki Büyük Kare Blok */
.item-big {
    grid-column: span 2; /* 2 sütun genişliğinde */
    grid-row: span 2;    /* 2 satır yüksekliğinde */
}

/* 3. Sağ Sütundaki Bloklar (Sadece genişlik ayarı gerekebilir) */
.item-wide-right {
    grid-column: span 1;
    /* Varsayılan 1 satır yüksekliğinde */
}

/* 4. Alt kısımdaki özel bloklar (Çizimdeki alt kısım için) */
.item-wide-center-bottom {
    grid-column: span 1; 
}

.item-big-right-bottom {
    grid-column: span 2; /* Sağ alt köşedeki geniş blok */
}


/* --- HOVER EFEKTLERİ (Mevcut Tasarımına Uygun) --- */

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Normalde hafif karanlık */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Başlangıçta görünmez (sadece resim görünür) */
    transition: all 0.3s ease;
}

.bento-overlay h3 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.bento-overlay span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border: 1px solid #fff;
    padding: 8px 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Mouse Üzerine Gelince */
.bento-item:hover .bento-overlay {
    opacity: 1; /* Yazı ve karanlık katman görünür */
    background: rgba(0, 0, 0, 0.6);
}

.bento-item:hover img {
    transform: scale(1.05); /* Resim hafifçe yaklaşır */
}

.bento-item:hover h3,
.bento-item:hover span {
    transform: translateY(0); /* Yazılar yukarı kayarak gelir */
}


/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */

@media (max-width: 900px) {
    .bento-container {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
    .item-tall { grid-row: span 2; } /* Uzun yine uzun kalsın */
    .item-big { grid-column: span 2; } /* Büyük kare tam genişlik */
    .item-big-right-bottom { grid-column: span 2; }
}

@media (max-width: 600px) {
    .bento-container {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 10px;
    }
    /* Mobilde özel şekilleri iptal edip alt alta diziyoruz */
    .item-tall, .item-big, .item-wide-right, .item-big-right-bottom {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px; /* Mobilde hepsi standart yükseklik */
    }
}

.slider-container {
    width: 100%;
    overflow: hidden;
    margin: 0 10px; 
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


.about-section {
    padding: 120px 0;
    background-color: #0f0f0f; 
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 550px;
    object-fit: cover;
    filter: grayscale(100%); 
    transition: var(--transition);
    border-radius: 2px;
    position: relative;
    z-index: 2;
}


.img-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    max-width: 400px;
    height: 550px;
    border: 1px solid var(--accent);
    z-index: 1;
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%); 
    transform: translate(-10px, -10px);
}

.about-image:hover .img-border {
    transform: translate(10px, 10px);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: #fff;
}

.about-text .subtitle {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

.signature {
    font-family: 'Cinzel', serif; 
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
    font-style: italic;
}



.contact-section {
    padding: 120px 0;
    background-color: var(--bg-color); 
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.contact-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.submit-btn {
    padding: 15px 50px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--accent);
    color: #000;
}


@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-image img, .img-border {
        max-width: 100%;
        height: 400px;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info {
        flex-direction: row;
        justify-content: space-between;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .info-item {
        flex: 1 1 100px; 
    }
}

.slider-track {
    display: flex;
    gap: 15px; 
    transition: transform 0.5s ease-in-out;
    width: 100%;
}


.collection-slide {
    flex: 0 0 calc(25% - 11.25px); 
    width: calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
}

.collection-card {
    height: 60vh; 
    min-height: 400px;
    width: 100%; 
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}

.card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 25px;
    opacity: 0.9; transition: var(--transition);
}

.collection-info h3 { font-size: 1.5rem; margin-bottom: 5px; transform: translateY(20px); transition: var(--transition); color: #fff; }
.collection-info span { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; opacity: 0; transform: translateY(20px); transition: var(--transition); transition-delay: 0.1s; }

.collection-card:hover img { transform: scale(1.05); }
.collection-card:hover .collection-info h3, .collection-card:hover .collection-info span { transform: translateY(0); opacity: 1; }


.slider-btn {
    background: rgba(0, 0, 0, 0.3); 
    border: none; 
    font-size: 2rem; 
    color: #fff;
    cursor: pointer; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    transition: var(--transition); 
    flex-shrink: 0; 
    padding: 0 10px; 
    z-index: 100; 
    border-radius: 5px;
}
.slider-btn:hover { color: var(--accent); transform: scale(1.1); }

/* FOOTER */
footer { text-align: center; padding: 50px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-secondary); font-size: 0.8rem; }
.social-icons a { margin: 0 10px; font-size: 1.2rem; color: #fff; }
.social-icons a:hover { color: var(--accent); }

/* ANİMASYONLAR */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);} 40% {transform: translate(-50%, -10px);} 60% {transform: translate(-50%, -5px);} }

/* MOBİL VE TABLET AYARLARI */
@media (max-width: 1024px) {
    
}

@media (max-width: 850px) {
    .collection-slide { flex: 0 0 calc(50% - 10px); width: calc(50% - 10px); } 
    .nav-links { display: none; }
    .menu-icon { display: block; }
}

@media (max-width: 500px) {
    .collection-slide { flex: 0 0 100%; width: 100%; } 
    .hero-content h1 { font-size: 2.5rem; }
}




.subpage-nav {
    position: fixed; top: 0; width: 100%; padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    background: #0a0a0a; border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 1000;
}
.back-link { font-size: 0.9rem; color: var(--accent); display: flex; align-items: center; gap: 10px; font-weight: 500; }
.back-link:hover { color: #fff; transform: translateX(-5px); }
.logo-small { font-family: 'Cinzel', serif; font-size: 1rem; color: #fff; letter-spacing: 2px; }


.sub-header {
    height: 100vh; /
    width: 100%; 
    position: relative;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    background-repeat: no-repeat;
    background-color: #000; 
}
.header-content h1 { font-size: 4rem; color: #FFFFFF ;letter-spacing: 5px; margin-bottom: 10px; text-shadow: 0 5px 15px rgba(0,5,0,0.7); }
.header-content p { color: #49FF00; font-size: 1.2rem; letter-spacing: 3px; }



.masonry-section { padding: 50px 40px; }

.masonry-grid {
    
    column-count: 5; 
    column-gap: 20px; 
}

.masonry-item {
    margin-bottom: 20px; 
    break-inside: avoid; 
    position: relative;
    cursor: pointer;
    overflow: visible;
    border-radius: 0px;
}

.masonry-item img {
    width: 100%;
    height: auto; 
    display: block;
    transition: transform 0.5s ease;
}


.hover-info {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: 0.3s;
}
.hover-info span {
    color: var(--accent); font-family: 'Cinzel', serif; font-size: 1.2rem; letter-spacing: 2px;
    transform: translateY(20px); transition: 0.3s;
}

.masonry-item:hover img { transform: scale(1.05); }
.masonry-item:hover .hover-info { opacity: 1; }
.masonry-item:hover .hover-info span { transform: translateY(0); }


.lightbox {
    position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: none; 
    justify-content: center; align-items: center; flex-direction: column;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }

.lightbox-img {
    max-width: 90%; max-height: 80vh;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.close-lightbox {
    position: absolute; top: 30px; right: 40px;
    color: #fff; font-size: 3rem; cursor: pointer; transition: 0.3s;
}
.close-lightbox:hover { color: var(--accent); }

.lightbox-caption { margin-top: 15px; color: #fff; font-family: 'Montserrat', sans-serif; letter-spacing: 1px; }


.pod-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a0a0a, #111);
}

.pod-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pod-card {
    position: relative;
    width: 100%;
    max-width: 900px; 
    height: 600px; 
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.pod-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 1s ease;
}

.pod-card:hover img {
    transform: scale(1.03); 
}

.pod-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pod-overlay h3 {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.pod-overlay span {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .pod-card { height: 400px; }
    .pod-overlay h3 { font-size: 1.5rem; }
}


.pod-actions {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pod-actions button {
    background: rgba(0, 0, 0, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.pod-actions button:hover {
    background: var(--accent); 
    color: #000;
    border-color: var(--accent);
    transform: scale(1.1);
}


#pod-refresh i {
    transition: transform 0.5s ease;
}

#pod-refresh:hover i {
    transform: rotate(180deg); 
}

#pod-refresh:active i {
    transform: rotate(360deg); 
}


@media (max-width: 768px) {
    .pod-actions {
        bottom: 20px;
        right: 20px;
    }
    .pod-actions button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .pod-card { height: 400px; }
    .pod-overlay h3 { font-size: 1.5rem; }
}
