/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header ve Navigasyon */
.navbar {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 56px; /* Navbar height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Ürünler Section */
#urunler {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

#urunler h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.urun-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.urun-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.urun-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.urun-btn:hover {
    background-color: #34495e;
}

/* Hakkımızda Section */
#hakkimizda {
    padding: 5rem 5%;
    text-align: center;
}

.hakkimizda-content {
    max-width: 800px;
    margin: 0 auto;
}

/* İletişim Section */
#iletisim {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.iletisim-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.iletisim-bilgi {
    padding: 2rem;
}

.iletisim-bilgi i {
    margin-right: 0.5rem;
    color: #e74c3c;
}

.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.iletisim-form input,
.iletisim-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.iletisim-form textarea {
    height: 150px;
    resize: vertical;
}

.gonder-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gonder-btn:hover {
    background-color: #c0392b;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

/* Social media icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

/* Responsive social media icons */
@media (max-width: 768px) {
    .social-links a {
        font-size: 0.9rem;
        min-width: 35px;
        height: 35px;
    }
}

/* İletişim sayfası özel stilleri */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-info i {
    margin-top: 0.1rem;
    min-width: 18px;
    margin-right: 0.5rem;
}

.working-hours {
    margin-bottom: 1.5rem;
}

.working-hours h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.working-hours p {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    line-height: 1.5;
    font-size: 0.95rem;
}

.working-hours i {
    min-width: 18px;
    margin-right: 0.5rem;
}

.social-media-section {
    margin-top: 1.5rem;
}

.social-media-section h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.social-media-section .social-links {
    margin-top: 0.4rem;
}

.social-media-section .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 2px solid;
}

.social-media-section .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-media-section .social-links a i {
    font-size: 1.2rem;
}

.social-media-section .social-links a.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
}

.social-media-section .social-links a.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.social-media-section .social-links a.btn-outline-primary:hover i {
    color: white !important;
}

.social-media-section .social-links a.btn-outline-info {
    border-color: #0dcaf0;
    color: #0dcaf0;
}

.social-media-section .social-links a.btn-outline-info:hover {
    background-color: #0dcaf0;
    color: white;
}

.social-media-section .social-links a.btn-outline-info:hover i {
    color: white !important;
}

.social-media-section .social-links a.btn-outline-success {
    border-color: #198754;
    color: #198754;
}

.social-media-section .social-links a.btn-outline-success:hover {
    background-color: #198754;
    color: white;
}

.social-media-section .social-links a.btn-outline-success:hover i {
    color: white !important;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .contact-info i {
        margin-bottom: 0.3rem;
    }
    
    .working-hours p {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.3rem;
    }
    
    .working-hours i {
        margin-bottom: 0.3rem;
    }
    
    .social-media-section .social-links a {
        width: 35px;
        height: 35px;
        margin-right: 6px;
        margin-bottom: 6px;
    }
    
    .social-media-section .social-links a i {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem !important;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Tasarım */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
}

/* Custom styles for Bootstrap components */

/* Navbar Brand/Logo */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50 !important;
    transition: all 0.3s ease;
}

.brand-text {
    color: #0d6efd;
    font-weight: 800;
}

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

/* Carousel/Slider customization */
.carousel {
    margin-top: 56px; /* Navbar height */
}

.carousel-item {
    height: 100vh;
    min-height: 500px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-caption {
    bottom: 180px;
    padding-left: 100px;
    padding-right: 100px;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
}

.carousel-indicators {
    margin-bottom: 2rem;
    z-index: 2;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 2;
}

/* Responsive Carousel */
@media (max-width: 1200px) {
    .carousel-caption {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .carousel-caption h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .carousel-caption {
        bottom: 150px;
    }
    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 80vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        bottom: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .carousel-indicators {
        margin-bottom: 1rem;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 70vh;
        min-height: 350px;
    }
    
    .carousel-caption {
        bottom: 80px;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Custom button styles */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* Form customization */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Section spacing */
section {
    padding: 80px 0;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581092921461-eab62e97a2aa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-section .section-title {
    margin-bottom: 50px;
    color: white;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    background: white;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
} 