body{
    background-color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    width: 100%;
    height: 100px;
    background-color: black;
}

.logo img{
    width: 95px;
}

main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.mainl{
    width: 50%;
    height: 100%;
    position: relative;
}

.mainl::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: -1;
}

.mainl a{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    
}
.mainr a{
    display: block;
    width: 100%;
    height: 100%;
}



.mainl a{
    text-decoration: none;
    color: black;
    margin-top: 50px;
}

.mainr{
    width: 50%;
    height: 100%;
    position: relative;
}

.mainr::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/background1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: -1;
}

footer{
    width: 100%;
    height: 200px;
    background-color: rgb(0, 0, 0);
    opacity: 80%;
}

.xett {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
}

footer{
    max-width: 560px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 24px 16px 24px 16px;
    color: white;
}

.insta{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.insta a{
    color: #fff;
    background: #312f2f;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    border-radius: 30px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.insta .instagram:hover{
    background: #8a13b9;
    color: rgb(0, 0, 0);
}

.insta .whatsapp:hover{
    background: #13b913;
    color: rgb(0, 0, 0);
}

.insta .telefon:hover{
    background: #218cca;
    color: rgb(0, 0, 0);
}

.elaqe{
    display: flex;
    flex-direction: column;
    padding-right: 12px;
    overflow-x: hidden;
    font-size: 16px;
    text-align: end;
}

.elaqe a{
    text-decoration: none;
    color: white;
    margin: 5px !important;
}

.unvan{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
}

.unvan a{
    color: #fff;
    background: #312f2f;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    border-radius: 30px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.unvan a:hover{
    background-color:rgba(33, 75, 190, 0.726);
    cursor: pointer;
    color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
    main {
        height: 50vh;
        position: relative;
    }
    main::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(images/background1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        opacity: 0.3;
        z-index: -1;
    }
    .mainl{
        display: none;
    }
    .mainr{
        display: none;
    }
}

body {
  background-color: #000;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px 10px;
}

header h1 {
  font-size: 22px;
  margin: 0;
}

header p {
  font-size: 14px;
  color: #ccc;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
}

.nav-buttons button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ff9c8c;
  background-color: #ff9c8c;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.section-title {
    color: #c95d35;
    display: flex;
    justify-content: center;
    align-items: center;
  font-size: 20px;
  padding: 0 20px;
  margin: 30px 0 20px;
  text-transform: uppercase;
}

.pizza-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  margin-top: 20px;
}

.pizza-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  text-align: center;
}

.pizza-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.pizza-title {
  font-size: 18px;
  margin-top: 15px;
  font-weight: bold;
}

.pizza-desc {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

select {
  padding: 8px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.price {
  color: orange;
  font-size: 20px;
  margin-top: 10px;
}

.pizza-card img {
  width: 100%;
  aspect-ratio: 1 / 1;         /* Həmişə kvadrat (en = hündürlük) */
  object-fit: cover;           /* Şəklin mərkəzini göstərir, kənarları kəsir */
  border-radius: 12px;
}

.kategori {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin: 10px 0;
}

.menyu-link {
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #c95d35;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #c95d35;
  font-size: 14px;
}

.halal-link img {
  height: 35px;
  border-radius: 8px;
}