/* ============================================
   ADANA TWINS - PIXEL PERFECT CLONE
   ============================================ */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Import - Proxima Nova alternative (Source Sans Pro is closest free match) */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --font-primary: 'Source Sans Pro', 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;
    --color-text: #343434;
    --color-text-light: #8a8a8a;
    --color-bg: #ffffff;
    --color-border: #f2f2f2;
    --color-divider: #343434;
    --max-width: 860px;
    --header-height: 120px;
}

html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s ease;
}

a:hover {
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    z-index: 1800;
    text-align: center;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px 0;
}

/* Logo */
.logo {
    display: inline-block;
    margin-bottom: 15px;
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.3;
    color: var(--color-text);
}

/* Search Icon */
.search-icon {
    position: absolute;
    right: 40px;
    top: 30px;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-text-light);
}

.search-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--color-text-light);
    stroke-width: 2;
}

/* Header Border */
.header-border {
    border-bottom: 1px solid var(--color-border);
    margin: 0 40px;
}

/* Main Navigation */
.main-nav {
    padding: 18px 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 5px 0;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #000;
}

.main-nav a.active {
    color: var(--color-text-light);
}

/* Sub Navigation (Music pages) */
.sub-nav {
    border-top: 1px solid var(--color-border);
    padding: 18px 0;
    margin: 0 40px;
}

.sub-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.sub-nav a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 5px 0;
}

.sub-nav a.active {
    color: var(--color-text-light);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: absolute;
    left: 20px;
    top: 25px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 2000;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 1900;
    padding-top: 80px;
    text-align: center;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu li {
    padding: 12px 0;
}

.mobile-menu a {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
}

.mobile-menu .sub-items {
    padding-left: 20px;
}

.mobile-menu .sub-items li {
    padding: 8px 0;
}

.mobile-menu .sub-items a {
    font-size: 11px;
    color: var(--color-text-light);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    padding-top: var(--header-height);
}

/* With sub nav */
.main-content.has-subnav {
    padding-top: 165px;
}

/* Page Title Section */
.page-title-section {
    background: #f9f9f9;
    padding: 60px 20px 50px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 16px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 25px;
}

.page-title-divider {
    width: 80px;
    height: 3px;
    background: var(--color-divider);
    margin: 0 auto;
}

/* Content Container */
.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HOME PAGE
   ============================================ */
.hero-section {
    padding: 0 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.bio-section {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 40px;
}

.bio-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 14px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.bio-divider {
    width: 80px;
    height: 3px;
    background: var(--color-divider);
    margin: 0 auto 30px;
}

.bio-text {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--color-text);
    text-align: left;
}

.bio-text p {
    margin-bottom: 16px;
}

.bio-text ul,
.bio-text ol {
    margin: 15px 0;
    padding-left: 25px;
}

.bio-text li {
    margin-bottom: 8px;
}

.bio-text strong {
    font-weight: 700;
}

.bio-text em {
    font-style: italic;
}

/* ============================================
   EMBED SECTIONS (SoundCloud, YouTube)
   ============================================ */
.embed-list {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 40px 60px;
}

.embed-item {
    margin-bottom: 40px;
}

.embed-item .embed-title {
    font-size: 13px;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    margin-top: 8px;
    text-align: left;
}

.embed-item iframe {
    width: 100%;
    border: none;
}

/* SoundCloud specific */
.soundcloud-embed iframe {
    height: 300px;
}

.soundcloud-embed.playlist iframe {
    height: 300px;
}

/* YouTube specific */
.youtube-embed {
    margin-bottom: 50px;
}

.youtube-embed .video-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text);
}

.youtube-embed .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.youtube-embed .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-embed .video-description {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--color-text);
    margin-top: 20px;
    text-align: left;
}

/* ============================================
   DJ DERSİ PAGE
   ============================================ */
.dj-dersi-section {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 40px;
}

.dj-dersi-image {
    margin-bottom: 40px;
}

.dj-dersi-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.dj-dersi-image img:hover {
    filter: grayscale(0%);
}

.dj-dersi-content {
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-text);
}

.dj-dersi-content h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 30px 0 15px;
    color: #000;
}

.dj-dersi-content h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 25px 0 10px;
    color: var(--color-text);
}

.dj-dersi-content p {
    margin-bottom: 15px;
}

.dj-dersi-content ul,
.dj-dersi-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.dj-dersi-content li {
    margin-bottom: 8px;
}

.dj-dersi-content strong {
    font-weight: 700;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    max-width: var(--max-width);
    margin: 50px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-block {
    margin-bottom: 20px;
}

.contact-block .label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3px;
}

.contact-block .company {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 3px;
}

.contact-block .detail {
    font-size: 12.5px;
    color: var(--color-text);
    line-height: 1.7;
}

.contact-block .detail a {
    color: var(--color-text);
}

.contact-block .detail a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 40px 40px 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-border {
    border-top: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.footer-legal {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 30px;
}

.footer-legal a {
    color: var(--color-text);
}

.footer-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-text);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social a svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 800px) {
    .hamburger {
        display: flex;
    }

    .main-nav,
    .sub-nav {
        display: none;
    }

    .header-inner {
        padding: 15px 20px 0;
    }

    .header-border {
        margin: 0 20px;
    }

    .logo h1 {
        font-size: 18px;
        letter-spacing: 6px;
    }

    .search-icon {
        right: 20px;
        top: 22px;
    }

    .main-content {
        padding-top: 80px;
    }

    .main-content.has-subnav {
        padding-top: 80px;
    }

    .hero-section {
        padding: 0 20px;
    }

    .bio-section {
        padding: 0 20px;
    }

    .bio-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .page-title-section {
        padding: 40px 20px 35px;
    }

    .page-title {
        font-size: 28px;
        letter-spacing: 8px;
    }

    .embed-list {
        padding: 20px 20px 40px;
    }

    .content-container {
        padding: 0 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .site-footer {
        padding: 30px 20px 20px;
    }

    .footer-border {
        margin: 0 0 20px;
    }

    .youtube-embed .video-title {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 22px;
        letter-spacing: 6px;
    }

    .bio-title {
        font-size: 22px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    background: #1a1a1a;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.whatsapp-btn::after {
    content: 'İletişime Geç';
    position: absolute;
    right: 65px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: var(--font-primary);
}

.whatsapp-btn:hover::after {
    opacity: 1;
}