
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
}


@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }
    .menu a {
        margin-left: 15px;
        font-size: 12px;
    }
}


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-media video, 
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 12vw;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 20px;
    color: white;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 18vw;
        letter-spacing: -0.3rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}


.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: rotate(45deg) translateY(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translateY(20px); }
}

.services {
    padding: 100px 5%;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    padding: 40px 20px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.service-item:hover {
    background: #fff;
    color: #000;
}

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-item {
        padding: 30px 15px;
    }
}


.portfolio {
    padding: 100px 5%;
    background: #111;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 250px;
    }
}


/* YENİ FOOTER - DAHA KÜÇÜK */
footer {
    padding: 15px 5%;
    margin-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* MOBİL FOOTER */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 5%;
    }
}

.social a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
}

.custom-cursor,
.cursor-follower {
    display: none;
}
  
.custom-cursor {
    width: 8px;
    height: 8px;
    background: white;
    transition: transform 0.1s;
}
  
.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid white;
    transition: 
        width 0.3s ease-out,
        height 0.3s ease-out,
        transform 0.3s ease-out;
}
  
/* CURSOR MOBİL */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    a, button, .hoverable {
        cursor: pointer !important;
    }
}
/* Influencer Slider */
.influencer-section {
  padding: 80px 5%;
  background: #0a0a0a;
  position: relative;
}
.influencer-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}
.influencer-container {
  width: 100%;
  overflow: hidden;
}

.influencer-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.influencer-card {
  flex: 0 0 300px;
  height: 400px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.influencer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-arrow {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.4);
}

/* Mobil */
@media (max-width: 768px) {
  .influencer-card {
    flex: 0 0 250px;
    height: 350px;
  }
}
/* GALERİ COVER FOTOĞRAFI - YENİ EKLENECEK */
.gallery-hero {
    position: relative;
    height: 35vh;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.gallery-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gallery-hero {
        height: 50vh;
    }
    
    .gallery-hero-content h1 {
        font-size: 2rem;
    }
    
    .gallery-hero-content p {
        font-size: 1rem;
    }
}

/* NAV'DA ETKİNLİK GALERİSİ LİNKİ */
.menu a[href="events.html"] {
    color: #ff6b6b !important;
    font-weight: 600;
}
/* ALBÜM GRID */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Desktop: 3 sütun */
    gap: 30px;
    padding: 40px 5% 60px;
    max-width: 1500px;
    margin: 0 auto;
}
/* Tablet için 2 sütun */
@media (max-width: 1024px) {
    .album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding: 30px 5% 50px;
    }
}

/* Telefon için tek sütun ve daha kompakt kartlar */
@media (max-width: 640px) {
    .album-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 6% 40px;
    }

    .album-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .album-info h3 {
        font-size: 1.2rem;
    }

    .album-info p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}



.album-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,107,107,0.2);
}

.album-cover {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.photo-count, .hd-badge {
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.hd-badge {
    background: #ff6b6b;
    color: #000;
    font-weight: bold;
}

.album-info {
    padding: 20px;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.album-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
    color: #ccc;
}

.album-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.album-info-large h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.album-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.album-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.download-all-btn {
    background: #ff6b6b;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.download-all-btn:hover {
    background: #ff8e8e;
}

.quality-badge {
    background: #000;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}


/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    margin: 2% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.lightbox-controls button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-controls button:hover {
    background: rgba(255,255,255,0.3);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .masonry-grid {
        columns: 2;
    }
    
    .album-hero {
        flex-direction: column;
        gap: 20px;
    }
    
    .album-info-large h1 {
        font-size: 2rem;
    }
    
    .album-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 1;
    }
}
/* ALBÜM LINK STİLLERİ - DÜZELTME */
.album-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-grid a:hover {
    color: inherit;
}

.album-grid a:visited {
    color: inherit;
}

.album-grid a:focus {
    color: inherit;
}

/* Albüm kartı içindeki tüm text elementleri */
.album-card h3,
.album-card p,
.album-card .album-stats span {
    color: #ffffff;
    text-decoration: none;
}

/* Özel olarak istatistikler */
.album-stats span:last-child {
    color: #ff6b6b;
}

.album-stats span:last-child:hover {
    color: #ff8e8e;
}

/* Link olduğu için outline'ı kaldır */
.album-card:focus {
    outline: none;
}

/* Focus durumu için alternatif stil */
.album-card:focus-visible {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: white !important;
    text-decoration: none !important;
}
.back-to-albums {
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-albums:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

/* YENİ İNDİR BUTONU - BEYAZ İKON */
.download-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #000 !important;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* PROFİL FOTOĞRAFI */
.artist-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}


.album-info-large {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* PROFİL FOTOĞRAFI */
.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BAŞLIK İÇERİĞİ */
.title-content h1 {
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.album-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* GERİ DÖN BUTONU */
.back-to-albums {
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-to-albums:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}
/* ===== TAG ALBÜM SAYFASI – BLOK3 / POİZİ STANDARDI ===== */

/* Header */
.album-header {
  background: #000;
  padding: 90px 5% 40px;
  margin-top: 70px; /* navbar sabit olduğu için */
}

.album-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.album-info-large {
  display: flex;
  align-items: center;
  gap: 20px;
}

.artist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-content h1 {
  font-size: 2.4rem;
  margin-bottom: 4px;
}

.album-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.album-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quality-badge {
  background: #000;
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.album-header-top {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.back-to-albums {
  color: #fff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.back-to-albums:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-4px);
}

/* Foto grid */
.album-photos {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* TÜM FOTO KARTLARI AYNI ORANDA GÖRÜNÜR */
.album-photo {
  position: relative;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;          /* 3:4 dikey oran – istersen 4/3 yaparsın */
}

.album-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* oran koru, ortadan kırp */
  display: block;
  transition: transform 0.25s ease-out;
}

.album-photo:hover img {
  transform: scale(1.03);
}
/* Lightbox (mevcut tanımın varsa bırakabilirsin, yoksa bu yeter) */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.lightbox-controls {
  display: flex;
  gap: 10px;
}

.lightbox-controls button {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.lightbox-controls button:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .album-header {
    padding: 80px 5% 32px;
    margin-top: 60px;
  }

  .album-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .title-content h1 {
    font-size: 2rem;
  }

  .album-photos {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 20vh; /* mobilde boşluğu azaltır */
        padding-top: 40px; /* başlık üst boşluğu dengeler */
    }

    .gallery-hero-content {
        padding: 1rem 1.2rem;
    }

    .gallery-hero-content h1 {
        font-size: 1.6rem;
        margin: 0;
    }
}
/* MOBİL 2'Lİ ALBÜM GRID */
@media (max-width: 640px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 20px;
        padding: 20px 4% 40px;
    }

    .album-card {
        margin: 0;
    }

    /* Başlık boyutlarını küçült */
    .album-info h3 {
        font-size: 1rem;
    }

    .album-info p {
        font-size: 0.8rem;
    }

    /* Görsel oran mobilde daralmış görünmesin diye */
    .album-cover {
        aspect-ratio: 1 / 1.1; /* Fotoğrafları daha dikey gösterir */
    }
}
/* MOBİL NAVBAR BÜYÜTME */
@media (max-width: 768px) {
    .navbar {
        padding: 18px 10%;
    }

    .logo {
        font-size: 28px !important;  /* 24 → 28 */
    }

    .menu a {
        font-size: 11px !important;  /* 12 → 14 */
        margin-left: 18px !important; /* arayı biraz açtık */
    }
}
/* REFERANS – MOBİL 2'Lİ GRID */
@media (max-width: 640px) {
    #portfolio .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding: 0 4% !important;
    }

    #portfolio .gallery-item {
        aspect-ratio: 1/1.1;
        height: auto !important;
        border-radius: 12px;
        overflow: hidden;
    }

    #portfolio .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #portfolio h2 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
        padding-left: 4%;
    }
}
/* Albüm sayfalarında mobilde üst panel sabit olsun */
@media (max-width: 768px) {
  .album-page .album-top-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.6); /* istersen oynarsın */
    backdrop-filter: blur(6px);
  }

  /* Menü sabitlenince alttaki galeri üstüne binmesin diye boşluk */
  .album-page .gallery {
    margin-top: 80px;  /* menünün yüksekliğine göre ayarla */
  }
}
/* MOBİLDE NAVBAR SABİTLEME (TÜM SAYFALAR) */
@media (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    /* varsa arkaplan koyu bant istiyorsan aç: */
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
  }

  /* Navbar yüksekliği kadar boşluk bırak, içerik alta insin */
  main {
    padding-top: 72px; /* nav yüksekliğine göre 60–80 arasında oynayabilirsin */
  }
}

