/* Pamuk Kuyumculuk - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C5A059;
    --primary-dark: #B08F45;
    --background: #F9F8F4;
    --foreground: #1A1A1A;
    --muted: #F2F0EB;
    --border: #E2E0D9;
    --success: #059669;
    --danger: #DC2626;
}

body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #E5C585 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgba(26, 26, 26, 0.7);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav .nav-link {
    padding: 0.75rem 1rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.slide-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary);
}

/* Sections Grid */
.sections-grid {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--background), var(--muted));
}

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

.card {
    background: white;
    border: 1px solid rgba(226, 224, 217, 0.4);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.price-list {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 224, 217, 0.3);
    font-size: 0.875rem;
}

.price-name {
    color: rgba(26, 26, 26, 0.6);
}

.price-value {
    font-weight: 600;
    color: var(--foreground);
}

.info-list {
    list-style: none;
    text-align: left;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Page Header */
.page-header {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--background), var(--muted));
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(26, 26, 26, 0.6);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Products */
.products-section {
    padding: 3rem 0;
}

.products-grid {
    columns: 3;
    column-gap: 2rem;
}

.product-card {
    break-inside: avoid;
    margin-bottom: 2rem;
    background: white;
    border: 1px solid rgba(226, 224, 217, 0.4);
    overflow: hidden;
    transition: all 0.5s;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-caption {
    padding: 1rem;
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
}

.product-link {
    display: block;
    padding: 1rem;
    text-align: center;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.product-link:hover {
    background: var(--primary-dark);
}

/* Prices Table */
.prices-section {
    padding: 3rem 0;
}

.prices-table {
    background: white;
    border: 1px solid rgba(226, 224, 217, 0.4);
    overflow: hidden;
}

.prices-table table {
    width: 100%;
    border-collapse: collapse;
}

.prices-table th,
.prices-table td {
    padding: 1.5rem 1.5rem;
    text-align: left;
}

.prices-table th {
    background: rgba(242, 240, 235, 0.3);
    font-weight: 500;
    font-size: 1.125rem;
}

.prices-table tbody tr {
    border-bottom: 1px solid rgba(226, 224, 217, 0.2);
    transition: background 0.3s;
}

.prices-table tbody tr:hover {
    background: rgba(242, 240, 235, 0.1);
}

.price-highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.trend-up { color: var(--success); font-size: 1.5rem; }
.trend-down { color: var(--danger); font-size: 1.5rem; }
.trend-neutral { color: rgba(26, 26, 26, 0.3); }

/* Contact */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Maintenance Page */
.maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--background), var(--muted));
    padding: 2rem;
}

.maintenance-content {
    text-align: center;
    max-width: 600px;
}

.maintenance-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.maintenance-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.maintenance-content p {
    font-size: 1.25rem;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 1rem;
}

.maintenance-note {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav.active { display: flex; }
    
    .slide-title { font-size: 2.5rem; }
    .slide-subtitle { font-size: 1rem; }
    
    .page-header h1 { font-size: 2.5rem; }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 300px; }
    
    .products-grid { columns: 1; }
    
    .prices-table { overflow-x: auto; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map iframe { height: 350px; }
    
    .footer-grid { grid-template-columns: 1fr; }
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }