/* CMD Butik - Tüm stiller */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #B8860B;
    --dark-black: #1a1a1a;
    --light-black: #2d2d2d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Tahoma', sans-serif;
    background-color: var(--dark-black);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: linear-gradient(135deg, var(--dark-black), var(--light-black)) !important;
    border-bottom: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(15px);
}

.navbar-brand {
    color: var(--primary-gold) !important;
    font-weight: bold;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-brand:hover {
    color: var(--secondary-gold) !important;
    transform: scale(1.05);
}

.nav-link {
    color: white !important;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, var(--dark-black), var(--light-black));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Fashion Background Elements */
.fashion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.fashion-item {
    position: absolute;
    opacity: 0.4;
    transition: all 0.3s ease;
    filter: grayscale(50%) brightness(0.7) sepia(0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fashion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.fashion-item:hover {
    opacity: 0.7;
    filter: grayscale(20%) brightness(0.9) sepia(0.05);
    transform: scale(1.05);
}

.fashion-item-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 300px;
    transform: rotate(5deg);
}

.fashion-item-2 {
    top: 60%;
    right: 15%;
    width: 180px;
    height: 250px;
    transform: rotate(-8deg);
}

.fashion-item-3 {
    top: 20%;
    left: 10%;
    width: 220px;
    height: 320px;
    transform: rotate(-3deg);
}

.fashion-item-4 {
    bottom: 15%;
    left: 5%;
    width: 160px;
    height: 240px;
    transform: rotate(12deg);
}

.fashion-item-5 {
    top: 40%;
    left: 25%;
    width: 190px;
    height: 280px;
    transform: rotate(-5deg);
}

.fashion-item-6 {
    bottom: 30%;
    right: 25%;
    width: 170px;
    height: 260px;
    transform: rotate(8deg);
}

.fashion-item-3d {
    top: 50%;
    left: 50%;
    width: 250px;
    height: 350px;
    transform: rotate(-15deg) perspective(1000px) rotateY(20deg);
    opacity: 0.6;
    filter: grayscale(30%) brightness(0.8) sepia(0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2;
}

.fashion-item-3d:hover {
    opacity: 0.9;
    filter: grayscale(10%) brightness(1) sepia(0);
    transform: rotate(-15deg) perspective(1000px) rotateY(30deg) scale(1.1);
    box-shadow: 0 25px 50px rgba(255,215,0,0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-gold {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    color: var(--primary-gold);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.card-custom {
    background: linear-gradient(135deg, var(--light-black), var(--dark-black));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.card-custom:hover::before {
    left: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card-custom:hover .card-icon {
    transform: scale(1.1);
}

.card-body, .card-body * {
    color: #fff !important;
    opacity: 1 !important;
}

.footer {
    background: linear-gradient(135deg, var(--dark-black), var(--light-black));
    border-top: 2px solid var(--primary-gold);
    padding: 40px 0 20px;
}

.social-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: white;
    transform: scale(1.2) rotate(5deg);
}

.product-card {
    background: linear-gradient(135deg, var(--light-black), var(--dark-black));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.product-image {
    height: 250px;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.stats-section {
    background: linear-gradient(135deg, var(--light-black), var(--dark-black));
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.form-control {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(255,215,0,0.3);
    color: white;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.8);
}

.navbar-toggler {
    border: 1px solid white;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .card-custom, .product-card {
        margin-bottom: 2rem;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .fashion-item {
        display: none;
    }
    
    .fashion-bg {
        opacity: 0.3;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-gold, .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-gold);
    z-index: 9999;
    transition: width 0.3s ease;
} 