/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #2d292a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2d292a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffca0c;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffca0c;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d292a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 0.5rem 0;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}

.submenu li a:hover {
    background-color: #3d393a;
    color: #ffca0c;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.current-lang {
    font-weight: 600;
    color: #ffca0c;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2d292a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 4px;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 0.5rem 0;
}

.lang-switcher:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}

.lang-menu li a:hover {
    background-color: #3d393a;
    color: #ffca0c;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 0;
    padding-top: 48px;
    background: transparent;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #232021;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffca0c;
    color: #2d292a;
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #3d393a;
    color: #fff;
}

.btn-secondary:hover {
    background: #4d494a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffca0c;
    border: 2px solid #ffca0c;
}

.btn-outline:hover {
    background: #ffca0c;
    color: #2d292a;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #3d393a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #ffca0c;
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Regions Section */
.regions-section {
    padding: 4rem 0;
    background: #2d292a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.region-card {
    background: #3d393a;
    border: 3px solid #ffca0c;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.region-icon {
    margin-bottom: 1rem;
}

.region-icon img,
.region-icon i {
    width: 60px;
    height: 60px;
    color: #ffca0c;
    font-size: 2rem;
}

.region-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.region-description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: #3d393a;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: #2d292a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-text {
    padding: 1.5rem;
}

.content-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.content-excerpt {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ffca0c 0%, #e6b800 100%);
    padding: 3rem 0;
    text-align: center;
    color: #2d292a;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* About Page */
.about-page {
    padding: 4rem 0;
    background: #2d292a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-body {
    line-height: 1.8;
    color: #e0e0e0;
}

.content-body p {
    margin-bottom: 1.5rem;
}

/* Instruments Page */
.instruments-page {
    padding: 4rem 0;
    background: #2d292a;
}

/* Region Detail */
.region-detail {
    padding: 4rem 0;
    background: #2d292a;
}

.region-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.region-text {
    line-height: 1.8;
    color: #e0e0e0;
}

.region-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.instruments-section {
    margin-top: 3rem;
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instrument-card {
    background: #3d393a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.instrument-card:hover {
    transform: translateY(-5px);
}

.instrument-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.instrument-placeholder {
    width: 100%;
    height: 200px;
    background: #4d494a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3rem;
}

.instrument-content {
    padding: 1.5rem;
}

.instrument-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.instrument-country {
    color: #ffca0c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.instrument-excerpt {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Instrument Detail */
.instrument-detail {
    padding: 4rem 0;
    background: #2d292a;
}

.instrument-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.instrument-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.instrument-info .instrument-country {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.instrument-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.instrument-video {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.instrument-actions {
    display: flex;
    gap: 1rem;
}

/* Gallery Page */
.gallery-page {
    padding: 4rem 0;
    background: #2d292a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #3d393a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.gallery-date {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
    background: #2d292a;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2,
.social-media h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #3d393a;
    border-radius: 8px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffca0c;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-item p {
    color: #e0e0e0;
}

.contact-item a {
    color: #ffca0c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffca0c;
    color: #2d292a;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1d191a;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.footer-contact a {
    color: #ffca0c;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .banner-container, .banner-image {
        max-width: 98vw;
        height: 50vw;
        min-height: 300px;
        border-radius: 24px;
    }
}
@media (max-width: 900px) {
    .banner-container, .banner-image {
        max-width: 100vw;
        height: 40vw;
        min-height: 180px;
        border-radius: 16px;
    }
}
@media (max-width: 600px) {
    .banner-container, .banner-image {
        border-radius: 10px;
        min-height: 120px;
        height: 30vw;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .region-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instrument-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 