* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%; /* Sayfa yüksekliği */
}

.navbaravs {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

.heroavs h1 {
    text-align: center;
    margin: 20px 0;
}

.contentavs {
    text-align: center;
    margin: 20px 0;
}

.containeravs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.photo-galleryavs {
    display: flex;
    gap: 20px;
}

/* Fotoğraf ve yazının bulunduğu kapsayıcı */
.itemavs {
    text-align: center;
}

.circle-photoavs {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.circle-photoavs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover efekti */
.circle-photoavs:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Yazıların stili */
.itemavs p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Footer Stili */
.footeravs {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between; /* Logo ve iletişim bilgilerini sağa sola yay */
    align-items: center; /* Yatayda ortala */
    background-color: white; /* Header arka plan rengi */
    color: green; /* Yazı rengi */
    padding: 10px 20px; /* Padding ayarla */
    
}

.logo {
    display: flex;
    align-items: center; /* Logo ve başlık yatayda ortala */
}

.logo-image {
    width: 50px; /* Logo genişliği */
    height: auto; /* Orantılı yükseklik */
    margin-right: 10px; /* Logo ile başlık arasında boşluk */
}

.contact-info p {
    margin: 0; /* İletişim bilgileri için üst alt boşlukları kaldır */
}

.container {
    display: flex;
    flex-wrap: wrap; /* Kutucukların birden fazla satıra yayılmasına izin ver */
    justify-content: center; /* Ortaya hizalama */
}

.fiyat{
    color: green;
}

.card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Her kart arasında boşluk */
    width: 220px; /* Kart genişliği */
    overflow: hidden; /* Taşmayı önler */
}

.card-image {
    width: 100%; /* Görsel genişliği */
    height: 150px; /* Görsel yüksekliği */
    object-fit: cover; /* Görseli kapsayacak şekilde ayarla */
}

.card-content {
    padding: 15px;
}

.card-content h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
}

.card-content p {
    margin: 0 0 10px;
}

.category {
    display: inline-block;
    background-color: #f8f8f8;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.9em;
}

.price {
    margin-top: 10px;
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
}

.navbaravs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: green;
    color: white;
}

.navbaravs .logoavs {
    font-size: 24px;
    font-weight: bold;
}

.nav-linksavs {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-linksavs a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.heroavs {
    text-align: center;
    padding: 50px 20px;
}

.heroavs h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.heroavs p {
    font-size: 18px;
    margin-bottom: 20px;
}

.buttonsavs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primaryavs {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.secondaryavs {
    background-color: white;
    color: green;
    border: 2px solid green;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.contentavs {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.image-containeravs {
    position: relative;
    width: 80%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-containeravs img {
    width: 100%;
    height: auto;
}

.badgeavs {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.footeravs {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 20px;
}


.photo-galleryavs {
    display: flex;
    gap: 20px;
}

.circle-photoavs {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.circle-photoavs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover efekti */
.circle-photoavs:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.containeravs {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh; /* Tam ekran yüksekliği */
    background-color: #f5f5f5;
}

/* Global Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%; 
    background-color: #f9f9f9;
}

/* Navbar */
.navbaravs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: green;
    color: white;
}

.navbaravs .logoavs {
    font-size: 24px;
    font-weight: bold;
}

/* Hero Bölümü */
.heroavs {
    text-align: center;
    padding: 20px 20px;
    margin-bottom: 10px; /* Fotoğraflardan uzaklaştırmak için eklenen boşluk */
}

.heroavs h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Fotoğraf Galerisi */
.containeravs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px; /* Yukarıdaki içerikten boşluk bırak */
    padding: 10px;
}

.photo-galleryavs {
    display: flex;
    flex-wrap: wrap; /* Satır kırılması için */
    justify-content: center;
    gap: 60px; /* Kartlar arasında daha geniş boşluk */
}

.itemavs {
    text-align: center;
    flex: 1 1 calc(25% - 20px); /* Ekran genişliğine göre 4 sütuna yayılır */
    max-width: 150px;
}

.circle-photoavs {
    width: 100%;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.circle-photoavs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover efekti */
.circle-photoavs:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Altındaki metin */
.itemavs p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Footer */
.footeravs {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 10px; /* İçerikle footer arasında boşluk */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .photo-galleryavs {
        gap: 20px;
    }

    .itemavs {
        flex: 1 1 calc(50% - 10px); /* Orta boy ekranlarda 2 sütun */
    }
}

@media (max-width: 480px) {
    .itemavs {
        flex: 1 1 100%; /* Küçük ekranlarda her fotoğraf tek satırda */
    }

    .circle-photoavs {
        height: 120px; /* Mobilde daha küçük fotoğraflar */
    }

    .heroavs h1 {
        font-size: 28px; /* Mobil için daha küçük yazı */
    }
}

