/* Genel Sayfa Stil */
body {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Geçişli arka plan */
    color: #fdfdfd;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Başlık */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 34px;
    color: #ffd700; /* Altın rengi */
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
}

/* Navigasyon */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fdfdfd;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    background: #ffd700;
    color: #2c3e50;
}

/* SLIDER Genel Alan */
.slider {
    position: relative;
    width: 85%;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

/* SLIDE Her biri */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* SLIDE içindeki görsel */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* SLIDE yazı kısmı */
.slide-yazi {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffd700;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.slide-yazi h2 {
    margin: 0;
    font-size: 28px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.slide-yazi p {
    margin-top: 8px;
    font-size: 16px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}


/* Hizmet Kartları */
.hizmet-kutulari {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.hizmet {
    background: linear-gradient(to right, #37474f, #607d8b);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.hizmet:hover {
    transform: scale(1.07);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.5);
}

.hizmet img {
    width: 100%;
    border-radius: 15px;
}

.hizmet p {
    margin-top: 10px;
    font-size: 18px;
    color: #ffd700;
    text-shadow: 1px 1px 5px rgba(255, 215, 0, 0.5);
}

/* Mağaza Kutusu */
.magaza-kutusu {
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    background: #fdfdfd;
    border: 2px solid #ccc;
    border-radius: 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.magaza-kutusu img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Ürün Kartları */
.urun {
    border: 2px solid #ccc;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.urun:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.urun img {
    max-width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.urun h3 {
    font-size: 16px;
    margin: 12px 0 6px;
}

.urun p {
    margin: 6px 0;
    font-size: 14px;
    color: #37474f;
}

/* Sepet Butonu */
.sepet-btn {
    display: block;
    margin: 30px auto;
    padding: 12px 25px;
    background: #ffd700;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    width: 240px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.sepet-btn:hover {
    background: #ffb300;
}

/* Danışman Kartları */
.danisman-kart {
    border: 1px solid #ccc;
    padding: 18px;
    margin: 20px;
    border-radius: 12px;
    background: #ffffff;
    display: inline-block;
    width: 260px;
    vertical-align: top;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.danisman-kart:hover {
    transform: scale(1.05);
}
