:root {
    --bg-dark: #2a2a2a;
    --bg-light: #f5f5f5;
    --bg-cream: #f8f6f3;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --accent: #c9a962;
    --accent-dark: #b08d4a;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background: #fff;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .logo-icon {
    width: 50px;
    margin: 0 auto 20px;
}

.section-header .divider {
    width: 2px;
    height: 40px;
    background: var(--accent);
    margin: 20px auto;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    font-family: var(--font-sans);
}

.btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-white {
    border-color: #fff;
    color: #fff;
}

.btn-white:hover {
    background: #fff;
    color: var(--text-dark);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--bg-dark);
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: flex-start;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.header-main {
    background: var(--bg-dark);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn {
    color: #25D366;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.slide-content .subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.slide-content h1 {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 10px;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: #fff;
}

.collections-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    aspect-ratio: 1024 / 673;
    overflow: hidden;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.collection-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
}

.vitrin-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.vitrin-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.vitrin-slide.active {
    opacity: 1;
}

.vitrin-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vitrin-slide .caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

.vitrin-slide .caption a {
    color: #fff;
}

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-logo {
    width: 80px;
    opacity: 0.3;
    margin-bottom: 30px;
}

.products-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact-info ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info ul li svg {
    flex-shrink: 0;
    color: var(--accent);
}

.contact-info ul li div span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info ul li div a,
.contact-info ul li div p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

#footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

.footer-contact h4,
.footer-address h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-contact ul li,
.footer-address ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact ul li svg,
.footer-address ul li svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.footer-contact ul li div span,
.footer-address ul li div span {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.footer-contact ul li div a,
.footer-address ul li div p {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 1024px) {
    .collections-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-toggle span {
        transition: all 0.3s ease;
    }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .hero-slider {
        height: 70vh;
    }
}

/* ==========================================
   PAGE LOAD ANIMATIONS
   ========================================== */

/* Fade In Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sayfa açılışında body fade */
body {
    animation: fadeIn 0.6s ease-out;
}

/* Header animasyonu */
#header {
    animation: fadeInDown 0.8s ease-out;
}

/* Hero ve Page Hero */
.hero-slider,
.page-hero {
    animation: fadeIn 1s ease-out;
}

/* Section animasyonları - scroll ile tetiklenir */
.collections-section,
.products-section,
.about-section,
.contact-section,
.vitrin-slider {
    animation: fadeInUp 0.8s ease-out;
}

/* Kartlar için staggered animasyon */
.collection-card,
.product-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.collection-card:nth-child(1),
.product-card:nth-child(1) { animation-delay: 0.1s; }
.collection-card:nth-child(2),
.product-card:nth-child(2) { animation-delay: 0.2s; }
.collection-card:nth-child(3),
.product-card:nth-child(3) { animation-delay: 0.3s; }
.collection-card:nth-child(4),
.product-card:nth-child(4) { animation-delay: 0.4s; }
.collection-card:nth-child(5),
.product-card:nth-child(5) { animation-delay: 0.5s; }
.collection-card:nth-child(6),
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Footer */
#footer {
    animation: fadeIn 0.8s ease-out;
}

/* Reduced motion tercih edenler için */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}