@import url('https://fonts.googleapis.com/css2?family=Miniver&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

/* ========== NAVBAR ========== */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: #3b141c;
}

html{
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-menu .logo-link {
    padding: 10px 18px;
    color: #fff;
    background: #ccb16c;
    border-radius: 30px;
    transition: 1s;
}

.nav-menu .logo-link:hover {
    color: #fff;
    background: #ccb16c;
}

.nav-link {
    padding: 10px 18px;
    color: #ccb16c;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #111;
    background: #ccb16c;
    border-radius: 30px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
}
.hero-section {
  position: relative;
  background: url("backg2.jpg") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  padding: 60px 0;
  z-index: 1;
  overflow: hidden; /* مهم لمنع الفوضى */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* غيمة سوداء شفافة خفيفة */
  z-index: 0;
  pointer-events: none; /* حتى لا تعيق التفاعل مع العناصر */
}
  
.section-content {
  position: relative;
  z-index: 1;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    color: #fff;
}

.title {
    font-size: 60px;
    color: #ccb16c;
    font-family: "Miniver", sans-serif;
}

.subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: 40px;
    font-weight: 600;
}

.description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: 20px;
}

.hero-image {
    width: 350px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-right: 30px;
}

/* ========== BUTTONS ========== */
.buttons {
    display: flex;
    gap: 20px;
}

.button-order-now {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: #3b141c;
    border-radius: 20px;
    background: #ccb16c;
    font-weight: 300;
    transition: 1s;
}

.button-order-now:hover {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.button-Contact-Us {
    padding: 10px 26px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 20px;
    background: transparent;
    font-weight: 300;
    transition: 1s;
}

.button-Contact-Us:hover {
    color: #3b141c;
    background: #ccb16c;
}

/* ========== TOGGLE BUTTONS ========== */
#menu-open-button,
#menu-close-button {
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* يبدأان مخفيين */
}

#menu-open-button {
    color: #ccb16c;
}

#menu-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ccb16c;
}

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 900px) {
    .navbar {
        position: relative;
    }

    #menu-open-button {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        background: #ccb16c;
        width: 250px;
        height: 100vh;
        z-index: 1000;
        display: none;
        gap: 20px;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
        transition: left 0.2s ease;
    }

    #menu-close-button {
        display: block;
    }

    .nav-link {
        color: black;
        font-size: 22px;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        background-color: #ccb16c;
    }

    .logo-text {
        color: #4b2c20;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1px; /* مسافة بين الصورة والنص */
}

.nav-logo img {
    width: 150px; /* حجم الصورة حسب رغبتك */
    height: auto;
    transform: translatey(10px);
}

.logo-text {
    font-size: 24px;
    color: #333; /* أو اللون اللي تحب */
}
.hero-image {
  transform: translateY(-100px);
  width: 500px;
  height: auto;
  border-radius: 8px;
  transition: 1s;

  /* ظل دقيق مع احترام شفافية الصورة */
  filter: drop-shadow(0 0 9px #7c7c7c) brightness(1.3) saturate(1.4);
  
  /* زيادة السطوع قليلاً */
  
}
.hero-image:hover {
  transform: scale(12px);
}

.hero-details{
    text-align: left;
    transform: translateX(50px);
}
.navbar {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 100px;
  height: auto;
}

.logo-text {
  font-size: 20px;
  margin-left: 10px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-size: 16px;
  padding: 8px 10px;
}
.logo-text{
    color: #ccb16c;
    font-family: 'Courier New', Courier, monospace;
}
.title{
    color: #ccb16c;
    font-family: 'Courier New', Courier, monospace;
}

.about-section{
    padding: 120px 0;
    background: #faf4f5;
}
.section-content{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.about-image{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 100%;
}
.section-title{
    color: #fff;
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: 50px;
}
.section-title::after{
    
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: 20px;
    background: #ccb16c;
}
.text{
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}
.about-section{
    background-color: #111;
}
.section-title{
    padding: 0;
}
.social-link-list{
    display: flex;
    gap: 25px;
    justify-content: center;

}
.social-link{
    color: #fff;
    font-size: 25px;
    transition: 1s;

}
.social-link:hover{
    color: #ccb16c;

}
.menu-section{
    color: #fff;
    background: #111;
    padding: 50px 0 100px;
}

.menu-list{
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}
.menu-image{
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;

}
.menu-item{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}
.name{
    margin: 12px 0;
    font-size: 30px;
    font-weight: 600;
}
.text{
    font-size: 15px;
}
.menu-image{
    border-radius: 20%;
    transition: 1s;

}


.testimonials-section{
    padding: 50px 0 100px;
    background: #faf4f5;
}
.user-image{
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 100%;

}
.testimonial{
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.name{
    margin-bottom: 16px;
    font-size: 30px;

}


.testimonial-section{
    background: #111;
}
.gallery-section{
    padding: 50px 0 100px;
    background: #111
}
.gallery-list{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.gallery-item{
    overflow: hidden;
    border-radius: 30px;
    width: calc(100% / 3 - 60px);
}
.gallery-image{
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0,3s;

}

.gallery-section {
  padding: 50px 0 100px;
  background: #111;
  text-align: center;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* أربع صور في صف */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* يجعل الصور مربعة */
  cursor: zoom-in;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-image:hover {
  transform: scale(1.05);
}


.contact-section{
    padding: 50px 0 100px;
    background: #111;
}
.section-contenttt{
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;

}
.contact-info{
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}
.contact-info i {
    font-size: 20px;

}
.form-input{
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid gray;

}
.form-input textarea{
    height: 100px;
    padding: 12px;
    resize: vertical;
}
.form-input:focus{
    border-color: #ccb16c;
}
.submit-button{
    padding: 10px 26px;
    margin-top: 10px;
    color: white;
    font-size: 20px;
    font-weight: 300;
    background: #ccb16c;
    border-radius: 20px;
    border: 1px solid #ccb16c;
    transition: 0,8s ease;
}
.submit-button:hover{
    color: #ccb16c;
    background: transparent;
}
.contact-form{
    max-width: 50%;
}
.contact-info{
    color: #111;
}
.contact-section{
    background: #fff;
}

#contact-title{
    color: #111;
}

.footer-section {
  background-color: #111;
  color: #fff;
  padding: 5px 10px;      /* تقليل الـ padding قدر الإمكان */
  font-size: 0.75rem;     /* تصغير حجم الخط */
  line-height: 1.1;       /* تقليل ارتفاع الأسطر */
  text-align: center;
}

.footer-section .section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-section p,
.footer-section a {
  margin: 0 10px;
}

.footer-section .social-link-list {
  display: flex;
  gap: 5px;
}

.footer-section .social-link-list ,.social-link {
  font-size: 18px;         /* تصغير أيقونات السوشيال */
  color: #fff;
  transition: color 0.3s ease;
}

.footer-section .social-link-list, .social-link:hover {
  color: #ccb16c;
}

.footer-section .policy-text {
  margin-top: 5px;
  font-size: 0.7rem;
  color: #ccc;
}

.footer-section .policy-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section .policy-link:hover {
  color: #ccb16c;
}

.footer-section .policy-text ,.separator {
  color: #555;
}

.menu-item .name{
    font-family: cursive;
    color: #ccb16c;
}
.menu-image:hover{
    transform: scale(1,5px);
    box-shadow:1px 2px 2px #ccb16c;
    
}
.btn {
 --color: #ccb16c;
 --color2: #ccb16c;
 padding: 0.8em 1.75em;
 background-color: transparent;
 border-radius: 6px;
 border: .3px solid var(--color);
 transition: .5s;
 position: relative;
 overflow: hidden;
 cursor: pointer;
 z-index: 1;
 font-weight: 300;
 font-size: 17px;
 font-family: 'Roboto', 'Segoe UI', sans-serif;
 text-transform: uppercase;
 color: #ccb16c;
}

.btn::after, .btn::before {
 content: '';
 display: block;
 height: 100%;
 width: 100%;
 transform: skew(90deg) translate(-50%, -50%);
 position: absolute;
 inset: 50%;
 left: 25%;
 z-index: -1;
 transition: .5s ease-out;
 background-color: #ccb16c;
}

.btn::before {
 top: -50%;
 left: -25%;
 transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::before {
 transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::after {
 transform: skew(45deg) translate(-50%, -50%);
}

.btn:hover {
 color: #fff;
}

.btn:active {
 filter: brightness(.7);
 transform: scale(.98);
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeIn 0.4s;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.payment-form .form-input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.payment-form .submit-button {
  width: 100%;
  padding: 12px;
  background-color: #c49a6c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.payment-form .submit-button:hover {
  background-color: #a67c52;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
.logo-footer{
  gap: 50px;
  height: auto;
  width: 150px;
}w
.messageBox {
  width: fit-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid rgb(63, 63, 63);
}
.messageBox:focus-within {
  border: 1px solid rgb(110, 110, 110);
}
.fileUploadWrapper {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

#file {
  display: none;
}
.fileUploadWrapper label {
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fileUploadWrapper label svg {
  height: 18px;
}
.fileUploadWrapper label svg path {
  transition: all 0.3s;
}
.fileUploadWrapper label svg circle {
  transition: all 0.3s;
}
.fileUploadWrapper label:hover svg path {
  stroke: #fff;
}
.fileUploadWrapper label:hover svg circle {
  stroke: #fff;
  fill: #3c3c3c;
}
.fileUploadWrapper label:hover .tooltip {
  display: block;
  opacity: 1;
}
.tooltip {
  position: absolute;
  top: -40px;
  display: none;
  opacity: 0;
  color: white;
  font-size: 10px;
  text-wrap: nowrap;
  background-color: #000;
  padding: 6px 10px;
  border: 1px solid #3c3c3c;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.596);
  transition: all 0.3s;
}
#messageInput {
  width: 200px;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  padding-left: 10px;
  color: white;
}
#messageInput:focus ~ #sendButton svg path,
#messageInput:valid ~ #sendButton svg path {
  fill: #3c3c3c;
  stroke: white;
}

#sendButton {
  width: fit-content;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
#sendButton svg {
  height: 18px;
  transition: all 0.3s;
}
#sendButton svg path {
  transition: all 0.3s;
}
#sendButton:hover svg path {
  fill: #3c3c3c;
  stroke: white;
} 
.radio {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: row-reverse;
}

.radio > input {
  position: absolute;
  appearance: none;
}

.radio > label {
  cursor: pointer;
  font-size: 30px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.radio > label > svg {
  fill: #666;
  transition: fill 0.3s ease;
}

.radio > label::before,
.radio > label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ff9e0b;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  animation: particle-explosion 1s ease-out;
}

.radio > label::before {
  top: -15px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.radio > label::after {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.radio > label:hover::before,
.radio > label:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.5);
}

.radio > label:hover {
  transform: scale(1.2);
  animation: pulse 0.6s infinite alternate;
}

.radio > label:hover > svg,
.radio > label:hover ~ label > svg {
  fill: #ff9e0b;
  filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
  animation: shimmer 1s ease infinite alternate;
}

.radio > input:checked + label > svg,
.radio > input:checked + label ~ label > svg {
  fill: #ff9e0b;
  filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
  animation: pulse 0.8s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes particle-explosion {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes shimmer {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 158, 11, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 158, 11, 1));
  }
}

.radio > input:checked + label:hover > svg,
.radio > input:checked + label:hover ~ label > svg {
  fill: #e58e09;
}

.radio > label:hover > svg,
.radio > label:hover ~ label > svg {
  fill: #ff9e0b;
}

.radio input:checked ~ label svg {
  fill: #c49a6c;
}

.hero-details .title ,.subtitle,.description{
  text-shadow: 3px 3px 3px #111;
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}


.nav-logo .logo-text{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
  transform: translateY(3px);
  font-size: 25px;
  color: #ccb16c;
}

.about-details .section-title,.text{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}
.menu-section .section-title,.section-content,.menu-list,.menu-item,.name{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}
.testimonial-section .section-title,.testimonials-list,.testimonial,.name,.feedback{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}
.gallery-section .section-title{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}
.contact-section .section-title,.section-contenttt,.contact-info-list,.contact-info p{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}
.footer-section .copyright-text ,.policy-text{
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 40px;
  flex-direction: row; /* بشكل أفقي */
}

.about-image-wrapper {
  flex: 1;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

.about-details {
  flex: 1;
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.text {
  line-height: 1.6;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.social-link-list {
  margin-top: 20px;
}

.social-link {
  font-size: 24px;
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
}

.social-link:hover {
  color: #ccb16c;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 0.9em 1.6em;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.c-button--gooey {
  color: #ccb16c;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 4px solid #ccb16c;
  border-radius: 0;
  position: relative;
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs {
  height: 100%;
  filter: url(#goo);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3px;
  right: -1px;
  z-index: -1;
}

.c-button--gooey .c-button__blobs div {
  background-color: #ccb16c;
  width: 34%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  transform: scale(1.4) translateY(125%) translateZ(0);
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs div:nth-child(1) {
  left: -5%;
}

.c-button--gooey .c-button__blobs div:nth-child(2) {
  left: 30%;
  transition-delay: 60ms;
}

.c-button--gooey .c-button__blobs div:nth-child(3) {
  left: 66%;
  transition-delay: 25ms;
}

.c-button--gooey:hover {
  color: #fff;
}

.c-button--gooey:hover .c-button__blobs div {
  transform: scale(1.4) translateY(0) translateZ(0);
}

.c-button{
  transform: translateX(640px);
}






@media (max-width: 1024px) {
  .hero-details .title {
    font-size: 2.2rem;
  }

  .hero-details .subtitle {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }
  .section-content{
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;

  }
  .hero-image{
    max-width: 270px;
    margin-right: 0;
  }
  .hero-details :is(.subtitle,.description){
    max-width: 100%;
  }
  .buttons{
    justify-content: center;
  }
  .about-section{
    gap: 70px;
    flex-direction: column-reverse;
}
.about-image{
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
}
.menu-section{
    gap: 60px;
}
.menu-section{
    width: calc(100% / 3 - 110px);
}
}

@media (max-width: 992px) {
  .hero-details .title {
    font-size: 2.2rem;
  }

  .hero-details .subtitle {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }
  .section-content{
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;

  }
  .hero-image{
    max-width: 270px;
    margin-right: 0;
  }
  .hero-details :is(.subtitle,.description){
    max-width: 100%;
  }
  .buttons{
    justify-content: center;
  }
  .about-section{
    gap: 70px;
    flex-direction: column-reverse;
}
.about-image{
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
}
.menu-section{
    gap: 60px;
}
.menu-section{
    width: calc(100% / 3 - 30px);
}
.menu-section{
    max-width: 200px;
}
.gallery-item{
    width: calc(100% / 2 - 30px);
}
.section-content{
    align-items: center;
    flex-direction: column;

}
.gallery-list {
    grid-template-columns: repeat(2, 1fr); /* 2 صور في كل صف */
  }
}


/* Phones */
@media (max-width: 768px) {
  #menu-open-button {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c2c2c;
    width: 100%;
    display: none;
    padding: 1rem 0;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
  }

  #menu-close-button {
    display: block;
    align-self: flex-end;
    margin: 0 1.5rem 1rem 0;
    font-size: 1.5rem;
  }

  .section-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-details {
    text-align: center;
    transform: translateX(-4px);
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  /*meeee*/
  .section-content .gallery-item .contact-section .contact-form{
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;

  }
  .hero-image{
    max-width: 270px;
    margin-right: 0;
  }
  .hero-details :is(.subtitle,.description){
    max-width: 100%;
  }
  .buttons{
    justify-content: center;
  }
  .about-section{
    gap: 70px;
    flex-direction: column-reverse;
}
.about-image{
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
}
.menu-section{
    gap: 60px;
    transform: translateX(15px);
}
.menu-section{
    width: calc(100% / 3 - 110px);
}
.menu-section{
    max-width: 100%;
}
.section-content{
    align-items: center;
    flex-direction: column;

}
.footer-section{
    flex-direction: column;
    gap: 20px;
}
 .menu-list {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 90%;
        max-width: 300px;
    }

    .menu-section {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    transform: none; /* احذف التحويل الجانبي */
    gap: 30px;
}
 .gallery-list {
    display: flex;
    align-items: center;
    grid-template-columns: 1fr; /* صورة واحدة في كل صف */
  }
  .section-content {
    flex-direction: column-reverse; /* الصورة تظهر أولاً */
    text-align: center;
  }

  .hero-image {
    width: 100%; /* حتى لا تخرج عن الشاشة */
    max-width: 300px;
  }
  .navbar {
    justify-content: center; /* توسيط الشعار */
  }

  .nav-menu {
    display: none; /* إخفاء القائمة */
  }

  .logo-text {
    display: none; /* إخفاء النص */
  }
  .hero-details .title{
    font-size: 60px;
    transform: translateY(-20px);
  }
  .hero-details .subtitle,.description{
    font-size: 16px;
  }
  .hero-details{
    transform: translatey(-60px);
  }
  .section-contenttt {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info-list {
    align-items: center;
    padding: 0;
  }

  .contact-form {
    width: 90%; /* لجعل الفورم لا يتجاوز العرض */
    max-width: 500px;
  }
  .c-button{
    transform: translateX(-3px);
  }

}
