/* ===========================
   GENEL AYARLAR
=========================== */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f8f8f8; /* Açık ve ferah */
    color: #222;
    margin: 0;
    padding: 0;
}

a {
    color: #bfa34a; /* Altın ton vurgular */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===========================
   HEADER
=========================== */
.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header .logo img {
    height: 150px;
}

.header .menu a {
    margin-left: 20px;
    font-weight: bold;
    color: #333;
}

/* ===========================
   HERO SLIDER
=========================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slide-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-slider .slide-text h2 {
    font-size: 48px;
    margin: 0;
}

.hero-slider .slide-text p {
    font-size: 20px;
    margin: 5px 0 0 0;
}

/* ===========================
   ÖNE ÇIKAN PORTFÖYLER
=========================== */
.featured-grid-title {
    text-align: center;
    color: #bfa34a;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto 50px auto;
    max-width: 1200px;
}

.featured-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.featured-card img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 8px;
}

.featured-card .content {
    padding: 15px;
}

.featured-card .content h3 {
    margin: 10px 0 5px 0;
    color: #222;
}

.featured-card .content .price {
    color: #bfa34a;
    font-weight: bold;
}

.featured-card .content a.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #bfa34a;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.featured-card .content a.btn:hover {
    background: #a88c3f;
}

/* ===========================
   PORTFÖY DETAY SAYFASI
=========================== */
.portfolio-image-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px auto;
    background: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ddd;
}

.portfolio-image-wrapper a {
    display: block;
    cursor: pointer;
}

.portfolio-image-wrapper img.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Kırpma yok */
    display: block;
    transition: transform 0.3s;
}

.portfolio-image-wrapper img.portfolio-image:hover {
    transform: scale(1.05);
}

.portfolio-content {
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #222;
    line-height: 1.7;
    padding: 0 20px;
}

/* ===========================
   ADMIN PANEL
=========================== */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

h2 {
    color: #bfa34a;
    margin-bottom: 20px;
}

input, textarea, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background: #bfa34a;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #a88c3f;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #f8f8f8;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    color: #333;
}
.page-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.about-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 1.7;
    color: #222;
}

.about-card h1 {
    font-size: 42px;
    color: #bfa34a; /* Altın ton başlık */
    margin-bottom: 20px;
}

.about-card p {
    font-size: 18px;
    margin-bottom: 15px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.gallery img {
    width: 250px;
    height: 250px;
    object-fit: cover; /* Görseli kırpar, boyutu doldurur */
    border-radius: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

