/* Genel Stiller */
:root {
    --primary-color: #e31837;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Navbar Stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 76px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

/* Products Section */
.card {
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* İmalat Sayfası Özel Stilleri */
.manufacturing-section {
    background-color: var(--light-color);
}

.manufacturing-process {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.process-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.process-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-image:hover img {
    transform: scale(1.05);
}

.process-image h5 {
    color: var(--secondary-color);
    margin-top: 1rem;
    font-size: 1.2rem;
}

.process-image p {
    color: #666;
    margin-bottom: 0;
}

.capacity-info {
    height: 100%;
}

.capacity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.capacity-card:hover {
    transform: translateY(-5px);
}

.capacity-card h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.capacity-card .h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.capacity-card p {
    color: #666;
    margin: 0;
}

.facilities-section {
    background-color: var(--light-color);
}

.facility-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.facility-card h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.facility-card p {
    color: #666;
    margin: 0;
}

/* Hakkımızda Sayfası Özel Stilleri */
.value-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.mission-vision-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.mission-vision-card i {
    color: var(--primary-color);
}

/* Ürünler Sayfası Özel Stilleri */
.products-grid {
    background-color: var(--light-color);
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

/* Referanslar Sayfası Özel Stilleri */
.references-grid {
    background-color: var(--light-color);
}

.reference-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-5px);
}

.reference-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #f8f9fa;
}

.reference-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.reference-card:hover .reference-image img {
    transform: scale(1.05);
}

.reference-content {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.reference-content h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

/* İletişim Sayfası Özel Stilleri */
.contact-section {
    background-color: var(--light-color);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-item h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c41230;
    border-color: #c41230;
    transform: translateY(-2px);
}

.map-section {
    margin-top: 2rem;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .capacity-card,
    .value-card {
        margin-bottom: 1rem;
    }
    
    .manufacturing-process {
        padding: 1.5rem;
    }
    
    .process-image img {
        height: 200px;
    }
    
    .capacity-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .capacity-card .h2 {
        font-size: 2rem;
    }
    
    .facility-card {
        margin-bottom: 1.5rem;
    }
    
    .facility-card img {
        height: 180px;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
    }
    
    .reference-card {
        margin-bottom: 1.5rem;
    }
    
    .reference-content {
        padding: 1rem;
    }
    
    .reference-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .map-container {
        padding-top: 300px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.feature-card,
.card,
.manufacturing-process,
.capacity-card,
.value-card,
.mission-vision-card {
    animation: fadeIn 1s ease-out;
}

/* Hero Slider Styles */
#heroSlider {
    margin-top: 76px;
}

#heroSlider .hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 76px);
    min-height: 500px;
}

#heroSlider .carousel-item {
    transition: transform 1.2s ease-in-out;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-indicators {
    margin-bottom: 2rem;
}

#heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

#heroSlider .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#heroSlider .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    #heroSlider .hero-section {
        min-height: 400px;
    }
    
    #heroSlider .display-4 {
        font-size: 2.5rem;
    }
    
    #heroSlider .lead {
        font-size: 1.1rem;
    }
    
    #heroSlider .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
} 