@charset "utf-8";
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;

    /* Sayfayı ortalamak için flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

/* Tüm içeriği saran bir kapsayıcı */
.container {
    width: 100%;
    max-width: 1200px; 
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: #0078d7;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

/* Ana İçerik */
main {
    padding: 20px;
}

/* Tanım Bölümü */
.description {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.description p {
    margin: 10px 0;
}
.contact {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5em;
    color: #d34b6e;
    margin-bottom: 30px;
}


.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    width: 250px;
    margin: 10px auto;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Instagram Butonu */
.instagram-btn {
    background-color: #E4405F; /* Instagram Rengi */
}

.instagram-btn:hover {
    background-color: #C13584;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* WhatsApp Butonu */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Rengi */
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* E-posta Butonu */
.email-btn {
    background-color: #007BFF; /* E-posta Mavi Rengi */
}

.email-btn:hover {
    background-color: #0056b3;
}
.yorum-btn{
	background-color:#FC0
	}
	.yorum-btn:hover
	{
		background-color: #F90}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-item .contact-btn {
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-item .contact-btn:hover {
    background-color: #666;
}


/* Product Card */
.product {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 1 calc(50% - 20px); /* Ekranı 4'e böler ve boşluğu hesaba katar */
    box-sizing: border-box; /* Padding dahil genişliği hesapla */
    max-width: calc(50% - 20px); /* En fazla %25 genişlikte */
}

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

/* Product Image */
.product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Product Name */
.product p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}
/* Hizmetler Bölümü */
.services h2 {
    color: #0078d7;
}

.services ul {
    list-style: square inside;
    padding: 0;
}

.services ul li {
    margin: 10px 0;
}

/* Galeri */
.gallery {
    margin: 30px 0;
}

.gallery h2 {
    color: #0078d7;
    text-align: center;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    width: 300px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
}

.gallery-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* İletişim Bölümü */
.contact h2 {
    color: #0078d7;
}

.contact a {
    color: #0078d7;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */

footer {
    background-color: #343a40;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* CSS Document */

/* CSS Document */

