/* Genel Stil */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background: #1a1a1a;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    color: #ffd700 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    margin-right: 10px;
}

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

.navbar-brand span {
    color: #ffd700 !important; /* Metnin rengini logo ile uyumlu hale getiriyoruz */
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.badge {
    font-size: 0.7rem;
}

/* Hero Bölümü (Slider) */
.hero {
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin: 20px 0;
}

.hero .btn-primary {
    background: #ffd700;
    color: #1a1a1a;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.hero .btn-primary:hover {
    transform: scale(1.05);
    background: #e6c200;
}

/* Kartlar (Hizmetler) */
.card {
    background: #2c3e50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
}

.card-text {
    color: #ddd;
}

.card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ff88;
}

.card .btn-primary {
    background: linear-gradient(45deg, #ff4b2b, #ff6f47);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.card .btn-primary:hover {
    background: linear-gradient(45deg, #e43a1a, #e55a36);
}

/* Popüler Etiketi */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Yorumlar */
.comment {
    background: #34495e;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #ddd;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #ffd700;
}

footer h5 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

footer p {
    color: #ddd;
}

footer a {
    color: #ffd700;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e6c200;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

footer .social-icons a:hover {
    transform: scale(1.2);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffd700;
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    transition: background 0.3s ease;
}

.back-to-top:hover {
    background: #e6c200;
}

/* Formlar */
.form-control {
    background: #34495e;
    border: none;
    color: #fff;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.form-control:focus {
    background: #34495e;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    color: #fff;
}

.alert {
    border-radius: 10px;
}

/* Tablo */
.table {
    background: #2c3e50;
    color: #ddd;
    border-radius: 10px;
}

.table th, .table td {
    border: 1px solid #34495e;
}

.table th {
    background: #1a1a1a;
    color: #ffd700;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Slider için Ek Stiller */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

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

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #ffd700;
    border-radius: 50%;
    padding: 20px;
}

/* Login Sayfası için Özel Stiller */
.login-card {
    background: linear-gradient(145deg, #2c3e50, #1a1a1a);
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-card .card-body {
    padding: 40px;
}

.login-card .card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.login-card .form-label {
    color: #ddd;
    font-weight: 500;
}

.login-card .btn-primary {
    background: linear-gradient(45deg, #ffd700, #e6c200);
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    padding: 12px 0;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.login-card .btn-primary:hover {
    background: linear-gradient(45deg, #e6c200, #ffd700);
    transform: scale(1.05);
}