
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.blog-page {
    min-height: 100vh;
    padding: 140px 5% 90px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 44, 51, 0.12), transparent 32%),
        linear-gradient(180deg, #050505 0%, #000 45%, #080808 100%);
}

.blog-article {
    width: min(980px, 100%);
    margin: 0 auto;
}

.blog-hero {
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ff2c33;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-hero h1 {
    max-width: 880px;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.blog-hero p,
.blog-content p,
.blog-content li {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
    line-height: 1.8;
}

.blog-hero p {
    max-width: 720px;
    font-size: 1.18rem;
}

.blog-content {
    padding-top: 56px;
}

.blog-content h2 {
    margin: 44px 0 14px;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.15;
}

.blog-content ul {
    margin: 18px 0 0 20px;
}

.blog-content li + li {
    margin-top: 10px;
}

.blog-callout {
    margin-top: 56px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.blog-callout h2 {
    margin-top: 0;
}

.blog-callout a {
    display: inline-flex;
    margin-top: 22px;
    color: #000;
    background: #fff;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 768px) {
    .blog-page {
        padding: 118px 6% 70px;
    }

    .blog-hero h1 {
        letter-spacing: -0.03em;
    }

    .blog-callout {
        padding: 24px;
    }
}

.blog-hub,
.article-page {
    min-height: 100vh;
    padding: 140px 5% 92px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 44, 51, 0.18), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #050505 0%, #000 46%, #080808 100%);
}

.blog-hub {
    display: grid;
    gap: 34px;
}

.blog-hub-hero {
    width: min(1180px, 100%);
    margin: 0 auto 16px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 42px;
    align-items: end;
}

.blog-kicker,
.post-tag {
    display: inline-flex;
    color: #ff2c33;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.blog-hub-hero h1 {
    max-width: 850px;
    margin-top: 18px;
    font-size: clamp(3rem, 7vw, 7.2rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.blog-hub-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.75;
}

.featured-post,
.blog-card-grid,
.blog-seo-band {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.featured-post-link {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(255, 44, 51, 0.24), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 24%),
        #080808;
}

.featured-post-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.22;
}

.featured-post-link > * {
    position: relative;
    z-index: 1;
}

.featured-post h2 {
    max-width: 760px;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.featured-post p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.read-more {
    width: fit-content;
    margin-top: 8px;
    padding: 13px 20px;
    border-radius: 999px;
    color: #000;
    background: #fff;
    font-weight: 900;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.045);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 44, 51, 0.55);
    background: rgba(255, 255, 255, 0.075);
}

.blog-card h2 {
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.blog-card p,
.blog-card > span:last-child,
.blog-seo-band p,
.article-hero p,
.article-content p,
.article-content li {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.blog-seo-band {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.blog-seo-band span {
    color: #ff2c33;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.blog-seo-band h2 {
    max-width: 820px;
    margin: 14px 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.blog-seo-band p {
    max-width: 820px;
}

.article-shell {
    width: min(920px, 100%);
    margin: 0 auto;
}

.article-back {
    display: inline-flex;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 800;
}

.article-hero {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.article-hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.article-hero p {
    max-width: 760px;
    font-size: 1.18rem;
}

.article-content {
    padding-top: 52px;
}

.article-content h2 {
    margin: 44px 0 14px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.article-note {
    margin-top: 48px;
    padding: 26px;
    border-left: 3px solid #ff2c33;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .blog-hub-hero {
        grid-template-columns: 1fr;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hub,
    .article-page {
        padding: 118px 6% 70px;
    }

    .featured-post-link {
        min-height: 330px;
    }
}

.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 img {
    width: auto;
    display: block;
}
.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İ */

/* 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;
}

@media (max-width: 768px) {
    .logo {
        margin-left: 15px;
    }
}
.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);
}
/* ===== contag 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 */
  }
}

/* ================= ABOUT US PAGE ================= */

.about-hero {
    position: relative;
    min-height: 100vh;
    padding: 110px 5% 30px;
    background: #000;
    overflow: hidden;
    isolation: isolate;
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-glow {
    position: absolute;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.55;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-glow-1 {
    top: 10%;
    left: 8%;
    background: radial-gradient(circle, rgba(255, 40, 80, 0.85), transparent 68%);
}

.about-glow-2 {
    right: 8%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.75), transparent 68%);
}

.about-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 3px 3px, 3px 3px;
    pointer-events: none;
}

.about-wrapper {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.about-kicker {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}

.about-wrapper h1 {
    font-size: clamp(54px, 7vw, 110px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 28px;
    max-width: 900px;
}

.about-text {
    max-width: 620px;
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.about-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-cta,
.about-link {
    text-decoration: none;
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.12);
}

.about-cta {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.about-cta:hover {
    transform: translateY(-3px);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.about-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.28);
}

.   s {
    background: #000;
    padding: 20px 5% 100px;
}

.about-points-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-point {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-point:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,107,0.5);
}

.about-point span {
    display: inline-block;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-point h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.about-point p {
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 6% 70px;
    }
    .about-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    }
    .about-wrapper h1 {
        font-size: clamp(42px, 12vw, 72px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-points-grid {
        grid-template-columns: 1fr;
    }

    .about-glow {
    opacity: 0.8;
    }
    filter: blur(180px);

    .about-hero::after{
content:"contag";
position:absolute;
right:-120px;
bottom:-80px;
font-size:28vw;
font-weight:900;
color:rgba(255,255,255,0.03);
pointer-events:none;
}
.about-cta{
background:linear-gradient(135deg,#ff2d55,#ff6b6b);
border:none;
}
.about-cta:hover{
transform:translateY(-4px) scale(1.02);
}
.mouse-light {
position: fixed;
width: 600px;
height: 600px;
pointer-events: none;
background: radial-gradient(circle,
rgba(255,40,80,0.35) 0%,
rgba(0,255,200,0.25) 40%,
transparent 70%);
filter: blur(120px);
transform: translate(-50%,-50%);
z-index:0;
}

}
/* ================= ABOUT US PAGE ================= */

.about-hero {
     position: relative;
    min-height: auto;
    padding: 110px 5% 160px;
    background: #000;
    overflow: hidden;
    isolation: isolate;
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-glow {
    position: absolute;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.55;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-glow-1 {
    top: 8%;
    left: 4%;
    background: radial-gradient(circle, rgba(255, 40, 80, 0.78), transparent 68%);
}

.about-glow-2 {
    right: 4%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.55), transparent 68%);
}

.about-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 3px 3px, 3px 3px;
    pointer-events: none;
}

.mouse-light {
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    z-index: 2;
    opacity: 0.75;
    filter: blur(110px);
    background: radial-gradient(circle,
        rgba(255,40,80,0.20) 0%,
        rgba(0,255,200,0.14) 42%,
        transparent 72%);
}

.about-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 72px;
    align-items: center;
}

.about-left {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.about-left h1 {
    font-size: clamp(62px, 6.4vw, 98px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.about-text {
    max-width: 540px;
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.about-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-link {
    text-decoration: none;
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
}

.about-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.28);
}

/* Sağ panel */
.about-right {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.about-showcase {
   position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 340px;
    padding: 34px 30px;
    border-radius: 28px;
    text-decoration: none;
    color: white;
    overflow: hidden;
    margin-left: auto;

    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);

    box-shadow:
      0 20px 80px rgba(0,0,0,0.42),
      inset 0 1px 0 rgba(255,255,255,0.07);

    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-showcase::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background:
      radial-gradient(circle at top left, rgba(255,45,85,0.16), transparent 35%),
      radial-gradient(circle at bottom right, rgba(0,255,200,0.14), transparent 42%);
    pointer-events: none;
    opacity: 0.9;
}

.about-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background:
      linear-gradient(120deg, rgba(255,255,255,0.10), transparent 25%, transparent 75%, rgba(255,255,255,0.04));
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: screen;
}

.about-showcase:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.16);
    box-shadow:
      0 28px 100px rgba(0,0,0,0.52),
      0 0 30px rgba(255,45,85,0.08),
      0 0 30px rgba(0,255,200,0.06);
}

.showcase-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.about-showcase h3 {
    font-size: clamp(32px, 3vw, 50px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.about-showcase p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.70);
    max-width: 320px;
    position: relative;
    z-index: 2;
}

.showcase-footer {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    z-index: 2;
}

.showcase-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.about-showcase:hover .showcase-arrow {
    transform: translate(4px, -4px);
}

/* alt blok */
.about-points {
    background: transparent;
    padding: 0 5% 6px;
    margin-top: -140px;
    position: relative;
    z-index: 4;
}

.about-points-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 2%;
}

.about-point {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-point:hover {
    transform: translateY(-6px);
    border-color: rgba(255,107,107,0.4);
}

.about-point span {
    display: inline-block;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-point h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.about-point p {
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    font-size: 0.95rem;
}
    .about-points + footer {
margin-top: 1.5%;
}
/* mobil */
@media (max-width: 980px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-right {
        justify-content: flex-start;
    }

    .about-showcase {
        max-width: 100%;
        min-height: 320px;
        margin-left: 0;
    }

    .about-left h1 {
        font-size: clamp(48px, 12vw, 74px);
        line-height: 0.98;
    }

    .about-points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 6% 70px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-glow {
        width: 420px;
        height: 420px;
        filter: blur(100px);
    }

    .mouse-light {
        width: 320px;
        height: 320px;
        filter: blur(80px);
        opacity: 0.55;
    }
}
@media (max-width: 768px) {
  .about-points {
    display: none !important;
  }
}
/* ================= CONTACT PAGE ================= */

.contact-page {
    position: relative;
    min-height: 100vh;
    padding: 120px 5% 0px;
    background: #000;
    overflow-x: hidden;
    isolation: isolate;
}

.contact-map {
    padding: 0 5% 80px;
    background: #000;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-glow {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.48;
    mix-blend-mode: screen;
    pointer-events: none;
}

.contact-glow-1 {
    top: 10%;
    left: 6%;
    background: radial-gradient(circle, rgba(255, 40, 80, 0.72), transparent 68%);
}

.contact-glow-2 {
    right: 8%;
    bottom: 12%;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.48), transparent 68%);
}

.contact-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 3px 3px, 3px 3px;
    pointer-events: none;
}

.contact-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 72px;
    align-items: center;
    min-height: auto;
}

.contact-left {
    max-width: 720px;
}

.contact-kicker {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.50);
    margin-bottom: 18px;
}

.contact-left h1 {
    font-size: clamp(68px, 7.4vw, 112px);
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.contact-text {
    max-width: 520px;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-panel {
    width: 100%;
    max-width: 430px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
    box-shadow:
      0 20px 80px rgba(0,0,0,0.42),
      inset 0 1px 0 rgba(255,255,255,0.07);
}

.contact-row {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    transform: translateX(6px);
}

.contact-row.static:hover {
    transform: none;
}

.contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
}

.contact-row strong {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
}

@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
        min-height: auto;
    }

    .contact-right {
        justify-content: flex-start;
    }

    .contact-panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 95px 6% 30px;
    }

    .contact-left h1 {
        font-size: clamp(44px, 13vw, 68px);
        line-height: 0.96;
    }

    .contact-text {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-row {
        padding: 18px 0;
    }

    .contact-row strong {
        font-size: 1.1rem;
    }

    .contact-glow {
        width: 360px;
        height: 360px;
        filter: blur(90px);
    }
}
.contact-map-inner {
    position: relative;
    z-index: 3;
    max-width: 1350px;
    margin: 40px auto 0;
    padding: 2% 0 0px;  /* alt padding sıfır */
}
/* ================= DARK MAP PANEL ================= */

.contact-map img{
    width:100%;
    height:220px;
    object-fit:cover;
    filter:brightness(0.75);
}

.contact-map img {
    width: 100%;
    height: 400px;   
    object-fit: cover;
    display: block;
}

.map-panel {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    background: #0a0a0a;
}

.map-bg {
    width: 100%;
    height: 320px;
    background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
    url("assets/img/map-dark.jpg") center 70% / cover no-repeat;
    transition: transform 0.6s ease;
}

.map-panel:hover .map-bg {
    transform: scale(1.04);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.map-pin {
    width: 18px;
    height: 18px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255,107,107,0.22);
    margin-bottom: 14px;
}

.map-overlay p {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.map-overlay span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
    .map-bg {
        height: 240px;
    }
}
/* Hamburger butonu - her zaman gizli, mobilde görünür */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animasyonu */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }

    /* Masaüstü menüyü gizle */
    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 150;
        backdrop-filter: blur(12px);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        font-size: 22px !important;
        margin-left: 0 !important;
        margin-right: 20px;
        padding: 14px 0;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        animation: menuItemIn 0.4s forwards;
    }

    .menu a:nth-child(1) { animation-delay: 0.05s; }
    .menu a:nth-child(2) { animation-delay: 0.10s; }
    .menu a:nth-child(3) { animation-delay: 0.15s; }
    .menu a:nth-child(4) { animation-delay: 0.20s; }
    .menu a:nth-child(5) { animation-delay: 0.25s; }
    .menu a:nth-child(6) { animation-delay: 0.30s; }

    @keyframes menuItemIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hamburger butonu göster */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 200;
        margin-right: 15px;
    }
}
.hero-content h1 {
    animation: tagFadeIn 2s ease forwards;
    opacity: 0;
}

@keyframes tagFadeIn {
    0% {
        opacity: 0;
        letter-spacing: 1.5rem;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        letter-spacing: -0.5rem;
    }
}
@media (max-width: 768px) {
    @keyframes tagFadeIn {
        0% {
            opacity: 0;
            letter-spacing: 0.8rem;
        }
        60% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            letter-spacing: -0.1rem;
        }
    }
}
/* sosyal medya ana sayfa*/

.social-sidebar {
    position: fixed;
    right: 33px;
    bottom: 30px;
    transition: opacity 0.1s ease;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-sidebar a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .social-sidebar {
    position: fixed;
    right: 20px;
    bottom: 5px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 99;
    }
}
