/* ANBARLI KUYUMCULUK - Kuyumcu CSS Stilleri */

/* Reset ve Base Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Georgia', serif;
    font-size: 42px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Header/Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
}

.header.scrolled .logo {
    color: #000000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header.scrolled .mobile-menu-btn span {
    background: #000000;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.header.scrolled .nav-link {
    color: #000000;
}

.nav-link:hover {
    color: #C9A24D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A24D;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-family: 'Georgia', serif;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #C9A24D;
}

.cta-button:hover {
    background: #C9A24D;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #C9A24D;
    border-color: #C9A24D;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #C9A24D;
    border-color: #C9A24D;
}

/* Hakkımızda Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    padding: 20px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

/* Ana Koleksiyonlar Section */
.main-collections {
    padding: 100px 0;
    background: #ffffff;
}

.main-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.main-collection-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #C9A24D;
}

.main-collection-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.main-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-collection-card:hover .main-collection-image img {
    transform: scale(1.05);
}

.main-collection-content {
    padding: 35px;
    text-align: center;
}

.main-collection-title {
    font-family: 'Georgia', serif;
    font-size: 26px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.main-collection-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 30px;
}

.main-collection-btn {
    display: inline-block;
    background: transparent;
    color: #C9A24D;
    padding: 14px 32px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #C9A24D;
    border-radius: 28px;
    transition: all 0.3s ease;
}

.main-collection-btn:hover {
    background: #C9A24D;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Öne Çıkan Ürünler Section */
.featured {
    padding: 100px 0;
    background: #fafafa;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Tüm Koleksiyon Section */
.collection {
    padding: 100px 0;
    background: #ffffff;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #C9A24D;
    color: #C9A24D;
    padding: 12px 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #C9A24D;
    color: #ffffff;
}

.filter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading {
    text-align: center;
    font-size: 18px;
    color: #666666;
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #C9A24D;
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination button {
    background: #ffffff;
    border: 2px solid #C9A24D;
    color: #C9A24D;
    padding: 12px 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 500;
}

.pagination button:hover:not(:disabled) {
    background: #C9A24D;
    color: #ffffff;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 14px;
    color: #666666;
}

/* Neden ANBARLI KUYUMCULUK Section */
.why-choose {
    padding: 100px 0;
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 48px;
    color: #C9A24D;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

/* İletişim Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-item p {
    color: #333333;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-block;
    background: transparent;
    color: #25d366;
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #25d366;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: none;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #ffffff;
}

.footer-brand p {
    color: #C9A24D;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #C9A24D;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #cccccc;
    font-size: 14px;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: #d32f2f;
    font-size: 16px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        color: #000000;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:hover {
        color: #C9A24D;
        background: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .main-collections-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        width: 85%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid,
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .filter-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .main-collection-content {
        padding: 25px;
    }
    
    .main-collection-title {
        font-size: 22px;
    }
    
    .main-collection-description {
        font-size: 15px;
    }
    
    .main-collection-image {
        height: 350px;
    }
}
