/* Base Styles */
:root {
    --color-dark: #0a0a0a;
    --color-darker: #050505;
    --color-light: #f5f5f5;
    --color-gold: #d4af37;
    --color-gold-light: #e5c767;
    --color-gray: #333333;
    --color-gray-light: #555555;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--color-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 12px 30px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--color-gold-light);
    color: var(--color-dark);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 5, 5, 0.9);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.logo img {
    max-width: 120px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-dark), transparent);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--color-light);
    font-weight: 300;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--color-darker);
}

.products h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-gold);
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1400px;
}

.product-card {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    transition: transform 0.4s ease;
}

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

.product-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Product info styles removed as per requirement - no text or pricing */

/* Enhanced product grid styles */
.products {
    padding: 120px 0;
}

.products h2 {
    margin-bottom: 80px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('resimler/100 (21).JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--color-light);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.2s ease;
    cursor: auto;
}

.lightbox-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    position: relative;
    z-index: 20;
}

.lightbox-zoom-controls {
    display: flex;
    gap: 10px;
}

.lightbox-zoom-controls button,
.lightbox-close {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-zoom-controls button:hover,
.lightbox-close:hover {
    background-color: #fff;
}

.lightbox-close {
    font-size: 24px;
}

.zoom-reset {
    width: auto !important;
    padding: 0 15px;
    border-radius: 20px !important;
    font-size: 14px !important;
}

/* Footer */
footer {
    background-color: var(--color-darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

footer h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    flex-direction: column;
}

.social-icon {
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--color-gold);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 14px;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        flex-direction: row;
        justify-content: center;
    }
    
    .social-icon {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 8px;
    }
    
    nav ul li a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .products h2,
    .cta h2 {
        font-size: 28px;
    }
}