/**
 * Classic Theme
 * Klasik ve zarif tasarım
 */

:root {
    --theme-primary: #2c3e50;
    --theme-secondary: #3498db;
    --theme-accent: #e74c3c;
    --theme-text: #333333;
    --theme-background: #ffffff;
    --theme-footer-bg: #2c3e50;
    --theme-heading-font: 'Poppins', sans-serif;
    --theme-body-font: 'Roboto', sans-serif;
}

/* Typography */
body {
    font-family: var(--theme-body-font);
    color: var(--theme-text);
    background-color: var(--theme-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--theme-heading-font);
    color: var(--theme-primary);
    font-weight: 600;
}

/* Header - Classic Style */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid var(--theme-secondary);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    background: transparent !important;
}

.navbar-brand img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--theme-text) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--theme-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--theme-secondary) !important;
}

/* Slider - Fade Style */
.slider-section,
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

#hero {
    min-height: 100vh;
}

.slider-item {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
}

/* Overlay removed - show original image */
.carousel-item {
    position: relative;
}

.carousel-item::before,
.carousel-item::after {
    display: none !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before,
.hero-bg::after {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

/* Slider Yazı Kartı - Tek Zemin */
.hero-text-card {
    background: rgba(0, 0, 0, 0.45);
    padding: 40px 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: fit-content;
    max-width: 90%;
    text-align: left;
}

.hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-description {
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.slider-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 100px 0;
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slider-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-primary {
    background: var(--theme-secondary);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--theme-primary) !important;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Hero section'dan sonraki section padding kaldır */
.hero-section,
#hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero-section + .section,
.hero-section ~ section:first-of-type,
section.product-details-section,
.product-details-section,
.product-details-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.carousel,
.carousel-inner,
#heroCarousel {
    margin-bottom: 0 !important;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--theme-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--theme-secondary);
}

.section-subtitle {
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--theme-primary);
}

/* Services */
.service-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
}

.service-item:hover {
    border-color: var(--theme-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--theme-secondary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    color: var(--theme-primary);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--theme-primary);
}

/* Footer - Simple Style */
.site-footer {
    background: var(--theme-footer-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-widget-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--theme-secondary);
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.footer-link:hover {
    color: white;
    padding-left: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--theme-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-content h1 {
        font-size: 2rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-item {
        height: 400px;
    }

    .hero-content {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-text-card {
        padding: 25px 30px;
        border-radius: 15px;
        max-width: 95%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}
