* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
  
html, body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth; 
    margin: auto;
    padding: auto;
    height: 100%; /* Sayfa yüksekliği %100 olmalı */
    display: flex;
    flex-direction: column; /* İçerikleri sütun halinde düzenle */   
}

.maincontainer{
    flex: 1;
}

/* index.html - Başlangıç */

/* Carousel */

.carousel-container {
    max-width: 85%;
    margin: auto;
    padding-top: 2%;
    overflow: hidden;
}
  
.ph1 {
    width: 66%;
    height: 333px;
    margin-right: 10px;
    background-image: url(assets/accpt.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.ph2 {
    width: 66%;
    height: 333px;
    margin-right: 10px;
    background-image: url(assets/amon.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.ph3 {
    width: 66%;
    height: 333px;
    margin-right: 10px;
    background-image: url(assets/apocalyptica.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.ph4 {
    width: 66%;
    height: 333px;
    margin-right: 10px;
    background-image: url(assets/sodombsph.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.ph5 {
    width: 66%;
    height: 333px;
    margin-right: 10px;
    background-image: url(assets/malmsteen.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.ph6 {
    width: 66%;
    height: 333px;
    margin-right: 10px;
    background-image: url(assets/opeth.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
  
/* Çizgiler */

.section-title {
    display: flex; /* Çizgileri ve metni yatayda hizalar */
    align-items: center; /* Çizgileri ve metni dikeyde ortalar */
    justify-content: center; /* İçeriği yatayda ortalar */
    gap: 10px; /* Çizgi ve metin arasındaki boşluk */
    margin: 20px 0; /* Üst ve alt boşluk */
}
  
.section-title .line-left,
.section-title .line-right {
    width: 380px; /* Çizgi uzunluğu */
    height: 2px; /* Çizginin yüksekliği */
    background: linear-gradient(to right, #000, rgba(0, 0, 0, 0)); /* Fade efekti */
}
  
.section-title .line-right {
    background: linear-gradient(to left, #000, rgba(0, 0, 0, 0)); /* Sağdaki çizgi için ters fade */
}
  
.section-title span {
    font-size: 24px; /* Metnin boyutu */
    font-weight: bold; /* Kalın yazı stili */
    color: #000; /* Metnin rengi */
    text-transform: uppercase; /* Tüm harfleri büyük yapar */
    text-align: center;
}
  
.duz-cizgi {
    border-top: 1px solid #ccc;
    width: 85%;
    margin: 20px auto;
}

/* Kartlar */

.cards-container {
    display: flex;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    gap: 20px;
    padding: 0 10px;
}
  
.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 40%;
    border-radius: 10px;
}
  
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
  
.card-iceri {
    padding: 2px 16px;
}

.card-fotolar {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}

.card-fotolar img {
    display: block;
    width: 384px;
    height: 512px;
    object-fit: cover;
}

/* Item Kartları */

.item-card {
    display: flex;
    background-color: #fff;
    max-width: 45%;
    border: 1px solid #ddd; /* Outline */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.item-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.item-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.item-card-content h2 {
    margin: 10px 10px 10px;
    font-size: 24px;
    font-weight: bold;
}

.item-card-content p {
    margin: 0 10px 10px;
    width: 96%;
    color: #333;
    line-height: 1.6;   
}

/* İletişim Kutusu */

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}
  
.contact-form-container h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.form-group {
    margin-bottom: 15px;
}
  
label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}
  
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
  
button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
  
button:hover {
    background-color: #0056b3;
}
  
#responseMessage {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

/* Footer */

footer {
    font-family: "Helvetica Neue", Arial, sans-serif;    
    background-color: #e2e3e5;
    color: #000000;
    text-align: center;
    padding: 20px 0;
    margin-top: 2%;
}
  
.footer-container nav {
    margin-bottom: 10px;
}
  
.footer-container nav a {
    font-family: "Helvetica Neue", Arial, sans-serif;    
    color: #4f4f50;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}
  
.footer-container nav a:hover {
    color: #2d2d2e;
}
  
footer hr {
    border: none;
    border-top: 1px solid #333;
    margin: 10px 0;
}
  
footer p {
    font-size: 14px;
    margin: 0;
}

/* index.html - Bitiş */

/* hakkimizda.html - Başlangıç */

.h-prg{
    max-width: 85%;
    margin: auto;
    overflow: hidden;
}

.h-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 85%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.h-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.h-icon {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 10px;
}
  

/* hakkimizda.html - Bitiş */

/* isler.html ve hizmetler.html - Başlangıç */

.foto-container {
    display: flex;
    max-width: 85%;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
    gap: 40px;
}

.foto-kare img {
    display: block;
    width: 352px;
    height: 352px;
    object-fit: cover;
}

.foto-yazi h3{
    margin-bottom: 10px;
    font-weight: bold;
}

.foto-yazi p {
    width: 100%;
}

.must-prgb {
    font-weight: bolder;
    text-align: center;
    max-width: 85%;
    margin: auto;
    overflow: hidden;
}

.must-prg {
    text-align: center;
    max-width: 85%;
    margin: auto;
    overflow: hidden;
}

/* isler.html ve hizmetler.html - Bitiş */

/* Telefonlar İçin Responsive Yapı */

@media screen and (max-width:700px){
    .cards-container{
        display: flex;
        flex-direction: column;
    }
    .card{
        margin: auto;
        overflow: hidden;
        max-width: 100%;
        width: auto;
    }
    .foto-container{
        display: flex;
        flex-direction: column;
    }
    .h-container{
        display: flex;
        flex-direction: column;
    }
    .item-card{
        display: flex;
        flex-direction: column;
        margin: auto;
        overflow: hidden;
        max-width: 85%;
        width: auto;
    }
}