section[id], div[id], [id] {
  scroll-margin-top: 100px !important;
}

#hakkimizda, #faaliyetler, #iletisim {
  scroll-margin-top: 100px;
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navbar Stilleri */
.navbar {
    background-color: #2c1810 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: #f9dc5c !important;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #f9dc5c !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar-toggler {
    border-color: #f9dc5c;
}

.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(249, 220, 92, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Logo Stilleri */
.logo {
    height: 40px;
    width: auto;
}

/* Carousel Stilleri */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

/* Section Stilleri */
.section-accent {
    background-color: #f9dc5c;
}

/* Card Stilleri */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card {
    border-radius: 15px;
    overflow: hidden;
}

.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Button Stilleri */
.btn-primary {
    background-color: #2c1810;
    border-color: #2c1810;
}

.btn-primary:hover {
    background-color: #1a0f09;
    border-color: #1a0f09;
}

.btn-outline-primary {
    color: #2c1810;
    border-color: #2c1810;
}

.btn-outline-primary:hover {
    background-color: #2c1810;
    border-color: #2c1810;
}

/* Form Stilleri */
.form-control:focus {
    border-color: #f9dc5c;
    box-shadow: 0 0 0 0.2rem rgba(249, 220, 92, 0.25);
}

/* Footer Stilleri */
footer {
    background-color: #2c1810;
    color: #f9dc5c;
}

/* Scroll Margin for Fixed Navbar */
#hakkimizda, #faaliyetler, #madenler, #iletisim {
    scroll-margin-top: 80px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Tam genişlikte arka plan için yardımcı sınıf */
.full-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
} 