/* Genel ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero alanı */
header.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    background: #fff;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: #622466;
}

.hero-text p {
    margin-top: 1rem;
    color: #888;
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    padding-left: 2rem;
}

/* About alanı */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 3rem;
    flex-wrap: nowrap;
}

.about-image,
.about-text {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #622466;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #622466;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #4b1d4d;
}

/* Kategoriler */
.categories {
    text-align: center;
    padding: 4rem 3rem;
    background-color: #f7f7f7;
}

.categories h2 {
    font-size: 2rem;
    color: #622466;
}

.categories p {
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.category-box {
    flex: 1 1 30%;
    max-width: 30%;
    min-width: 280px;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin: 1rem;
    box-sizing: border-box;
}

.category-box:hover {
    transform: translateY(-5px);
}

/* ✅ Mobil görünüm */
@media screen and (max-width: 768px) {
    .category-box {
        flex: 1 1 100%;
        max-width: 95%;
        margin: 1rem auto;
    }
}

    .category-list div {
        width: 100% !important;
    }
}

.category-box img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.category-box h3 {
    color: #622466;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Yorumlar */
.reviews {
    background: #fdfdfd;
    padding: 4rem 3rem;
}

.reviews h2 {
    color: #622466;
    margin-bottom: 2rem;
    text-align: center;
}

.review-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.review-image {
    flex: 1;
}

.review-image img {
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-text {
    flex: 1;
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #622466;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.review-text p {
    margin-bottom: 1.2rem;
    color: #444;
}

.review-text strong {
    color: #622466;
}

/* İletişim */
.contact {
    display: flex;
    gap: 3rem;
    background: #fafafa;
    padding: 4rem 3rem 6rem;
    flex-wrap: wrap;
    border-top: 3px solid #622466;
}

.contact-info h2 {
    color: #622466;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #444;
}

/* Bağlantılar */
a {
    color: #622466;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive yapı */
@media screen and (max-width: 992px) {

    .about,
    .hero,
    .review-content,
    .contact {
        flex-direction: column;
        text-align: center;
    }

        .category-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            padding: 2rem 1rem;
        }

    .hero-image,
    .about-image,
    .contact-image,
    .review-image {
        padding: 0;
    }

    .review-text {
        border-left: none;
        border-top: 4px solid #622466;
        margin-top: 2rem;
    }
}
.stars {
    color: #f5a623;
    /* Altın rengi yıldız */
    font-size: 1.1rem;
    margin-left: 0.5rem;
}
.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.category-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background-color: #622466;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.category-button:hover {
    background-color: #4b1d4d;
}
.contact-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 3rem;
    background-color: #fdfdfd;
    flex-wrap: wrap;
    border-top: 3px solid #622466;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    color: #622466;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #622466;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.contact-list li strong {
    color: #622466;
}

.contact-list a {
    color: #333;
    text-decoration: none;
}

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

.whatsapp-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #25D366;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1eb453;
}

.map-frame {
    margin-top: 2rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}
/* Zaten mevcut stillere ek olarak */

@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        padding-top: 2rem;
    }

    .whatsapp-button {
        display: block;
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
        margin-top: 1.5rem;
        border-radius: 8px;
    }

    .map-frame {
        margin-top: 2rem;
        border-radius: 10px;
        overflow: hidden;
    }

    .contact-details h2 {
        font-size: 1.6rem;
    }

    .contact-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-image img {
        border-radius: 10px;
        margin-bottom: 1rem;
    }
}
.map-title {
    font-size: 1.1rem;
    color: #622466;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 3rem;
    background: linear-gradient(to right, #fff, #f7f2f8);
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #622466;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero .button {
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.4rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.hero .button:hover {
    background-color: #1ebd58;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}