/* =====================
   DÜĞÜN DEFTERİ - ANA SITE CSS
   ===================== */

/* Design Tokens */
:root {
    /* Colors */
    --color-primary: #d66ca7;
    --color-primary-light: #ffb7d9;
    --color-primary-dark: #a74d81;
    --color-secondary: #8b5cf6;
    --color-secondary-light: #b79bff;
    --bg-900: #0f0810;
    --bg-800: #120616;
    --surface-800: #1a0f1a;
    --surface-glass: rgba(255,255,255,0.04);
    --text-main: #f7e9f5;
    --text-soft: #ffe4f4;
    --text-muted: #c8a9bf;
    --border-light: rgba(255,255,255,0.06);
    --border-soft: rgba(255,255,255,0.03);

    /* Spacing */
    --space-xs: 4px; --space-sm:8px; --space-md:12px; --space-lg:16px; --space-xl:24px; --space-2xl:32px;

    /* Radii */
    --radius-sm:6px; --radius-md:10px; --radius-lg:14px; --radius-xl:20px; --radius-pill:999px;

    /* Shadows */
    --shadow-soft: 0 8px 24px rgba(0,0,0,0.18);
    --shadow-card: 0 8px 30px rgba(214,108,167,0.10);
    --shadow-glow: 0 0 24px rgba(214,108,167,0.35);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-ui: 'Poppins', sans-serif;
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    background: linear-gradient(180deg, var(--bg-900), var(--bg-800));
    color: var(--text-main);
    font-family: var(--font-ui);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    background-attachment: fixed;
    background-size: cover; 
    background-repeat: no-repeat; 
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-soft);
}

.site-header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand .logo {
    width: 120px;
    height: 48px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-glow);
}

.brand small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

/* Logo ayarları */
.logo-img {
    display: block;
}

.logo-mobile {
    display: none;
}

/* Mobil Menu Toggle Butonu */
.mobile-menu-toggle {
    display: none;
    background: var(--surface-glass);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Mobil Nav Wrapper */
.mobile-nav-wrapper {
    display: none;
    width: 100%;
}

/* Sepet ikonu */
.cart-icon {
    position: relative;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

nav > a {
    margin-left: 14px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
    transition: all .18s;
}

nav > a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Desktop menü - yatay */
.header-actions nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

/* Desktop menü ikonları */
.header-actions nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.header-actions nav a i {
    font-size: 16px;
    color: var(--color-primary);
}

.header-actions nav a:hover i {
    color: inherit;
}

/* Button variants */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s;
    font-size: 15px;
}

.btn--primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214,108,167,0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(214,108,167,0.12);
}

.btn--secondary:hover {
    background: rgba(214,108,167,0.05);
}

.btn--ghost {
    background: var(--surface-glass);
    color: var(--text-muted);
    border: 1px solid var(--border-soft);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.08);
}

/* Hero Section */
.hero {
    padding: 0px 20px 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--surface-glass);
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
    border: 1px solid var(--border-soft);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: var(--text-main);
}

.hero p.lead {
    color: var(--text-muted);
    font-size: 18px;
    margin: 0 0 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(180deg, rgba(139,92,246,0.06), rgba(214,108,167,0.03));
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
}

.hero-card h3 {
    font-family: var(--font-display);
    margin-bottom: 16px;
    font-size: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.02);
    margin-bottom: 10px;
}

.contact-item i {
    font-size: 20px;
    color: var(--color-primary);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-main);
}

.contact-item small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

/* Features Grid */
.section {
    padding: 60px 20px;
    border-top: 1px solid var(--border-soft);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 38px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface-glass);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: all .3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.feature-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    color: var(--text-main);
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-glass);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    transition: all .3s;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-primary);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(214,108,167,0.08), var(--surface-glass));
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 36px;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 20px 0;
}

.pricing-price small {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-soft);
}

.pricing-features li i {
    color: var(--color-primary);
    margin-right: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
    color: var(--text-main);
    font-family: var(--font-ui);
    font-size: 15px;
    transition: all .3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(214,108,167,0.08);
    border-color: var(--color-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Alert */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #86efac;
    padding: 20px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

/* Footer */
.site-footer {
    padding: 40px 20px 20px;
    border-top: 1px solid var(--border-soft);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: var(--font-display);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    transition: color .3s;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1000px) {
    .features { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobil - 768px ve altı */
@media (max-width: 768px) {
    /* Mobil toggle butonunu göster */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Desktop menüyü gizle */
    .header-actions {
        display: none !important;
    }
    
    /* Logo switch */
    .logo-desktop {
        display: none !important;
    }
    
    .logo-mobile {
        display: block !important;
    }
    
    /* Mobil menü açıldığında */
    .mobile-nav-wrapper {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    .mobile-nav-wrapper.active {
        display: block !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-nav-content {
        background: var(--surface-glass);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 15px;
        backdrop-filter: blur(10px);
    }
    
    .mobile-nav-content nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .mobile-nav-content nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: var(--surface-800);
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
        border: 1px solid transparent;
    }
    
    .mobile-nav-content nav a i {
        font-size: 18px;
        color: var(--color-primary);
    }
    
    .mobile-nav-content nav a:hover {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
        transform: translateX(5px);
    }
    
    .mobile-nav-content nav a:hover i {
        color: white;
    }
    
    .mobile-actions {
        padding-top: 15px;
        border-top: 1px solid var(--border-light);
    }
    
    .mobile-cart-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
        padding: 14px;
        font-weight: 600;
    }
    
    .mobile-auth-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .mobile-auth-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 12px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .features { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .brand .logo { width: 90px; height: 36px; }
    .section-title h2 { font-size: 28px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }