@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
html {
    scroll-behavior: smooth; }

 *{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
  font-family: "Bubblegum Sans", sans-serif;
 }
:root{  
   
    --font-size-s:0.9rem;
    --font-size-n:1rem;
     --font-size-m:1.12rem;
     --font-size-1:1.5rem;
     --font-size-xl: 2rem;
     --font-size-xxl:2.3rem;
     --backgroundphoto:#FDF5E6;
      --font-wight-medium:500;
     --font-wight-semibold:600;
      --font-wight-bold:700;
      
      --border-radius-s:8px;
      --border-radius-m:30px;
       --border-radius-circle:50%;

       --site-max-width:1300px;
}
ul{
   display: flex;
    list-style: none; 
    justify-content: space-around;
    flex-grow: 1;
}
   a{
    text-decoration: none;

   }
   .buttons{
    cursor: pointer;
    border: none;
    background: none;

   }
   img{
    width: 100%;
 }
 
.section-content{
    
    margin: 0 auto;
    padding: 0 20px;}

 header{
    position: fixed;
    width: 100%;
    z-index: 5;
   
  
 } header .navbar{
    padding: 10px;
    display: flex;
    align-items:center;
    gap: 40px;
    background-color:#3E0703;
    height: 80px;
   
     
}

    .navbar .nav-logo .logo{
        color:var(--dark-color);
        font-size: var(--font-size-xl);
       
    }
    .navbar .nav-menu{
        display: flex;
      gap: 10px;
    }
 .navbar .nav-menu .nav-link{
    padding: 10px 18px;
     color:#FDF5E6;
     font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
    
 
  
   
 }
.navbar .nav-menu .nav-link:hover{
    color: #3E0703;
    background:#FDF5E6;
    
    
 }
.navbar :where(#menu-close-button, #menu-open-button){
    display: none;
}


 .hero-section{
    min-height: 100vh;
    background: var(--backgroundphoto);
    background-size: cover;
 }
 .hero-section .section-content{
    display: flex;
    align-items: center;
    min-height:100vh;
    color: var(--white-color);
    justify-content: space-between;
    
   
 }
  .title{
   font-family:"Playfair Display", serif;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: -1px;
   line-height: 1.1;
   color: #8C1007;
   margin-bottom: 30px;
  }
.subtitle{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    color: #8C1007;
    margin-bottom: 20px;
}
    
 .description{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-weight: var(--font-wight-bold);
    color: #8C1007;
    margin-bottom: 10px;
   }
 
.hero-section .hero-image-wrapper{
    max-width: 500px;
    margin-right: 30px;

}

 .hero-section .hero-details .buttons{
    display: flex;
    gap: 23px;
 }
   .hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color:#FDF5E6 ;
    border-radius: var(--border-radius-m);
    background: #8C1007;
    font-weight: var(--font-wight-medium);
    transition: 0.3s ease;
   }
   .hero-section .hero-details .button:hover,
   .hero-section .hero-details .Contact-us {
   color:#8C1007;
   border-color:#8C1007;
   background: transparent;

}
.hero-section .hero-details .Contact-us:hover {
color:#FDF5E6;
   border-color:#8C1007 ;
   background: #8C1007;

}
.hero-details .subtitle {
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(60px);
    border: 2px solid #8C1007; 
    color: #8C1007; 
   padding: 10px 20px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(217, 50, 47, 0.4);

}

.about-section{
   background-image:url(../img/5ea35a4bb758ea15932d00e8df116be3.jpg) ;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   height: 590px;;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
}

.header-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20,0,0,0.5); 
    display: flex;
    align-items: center;
    justify-content: center;}
     .header-content{
        text-align: center;
        color:#FDF5E6;
        z-index: 2;
    }
    .header-content h1 {
        font-family: "Playfair Display", serif;
        font-weight: 900;
        margin-bottom: 20px;
        text-decoration: uppercase;
        letter-spacing: 2px;
    }
    .about-details{
    display: flex;
      padding: 80px 10%;
      background-color:#FDF5E6;
    }
    .about-details .about-container{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      padding: 100px 8%;
      flex-wrap: wrap;
    }
    .about-images{
      flex:0 0 40%; ;
      position: relative;
     height: 400px;
    }
    .about-images .img-large {
    width: 280px;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
      left: 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }   
    .about-images .img-small {
      width: 200px;
      height: 280px;
      object-fit: cover;
      border-radius: 20px;
      position: absolute;  
      bottom: 0;
      right: 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      z-index: 2;
    
    }
     .about-text{
      flex:1;
      text-align: left;
     }
       .about-text h2{
         font-family: "Playfair Display", serif;
         font-weight: 900;
         margin-bottom: 20px;
         text-decoration: uppercase;
         letter-spacing: 2px;
         color:#6c0c05;
       }
         .about-text p{
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            line-height: 1.5;
            color: #6c0c05;
         }
         .about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0; 
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    color: #800000; 
    font-weight: 900;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif; /
}

.stat-text {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.about-text{
   flex:1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
}
  .about-stats{
   justify-content: center; 
    width: 100%;
  }
.btn-more{
  display: flex;
    gap: 23px;
    padding: 10px 26px;
    border: 2px solid transparent;
    color:#FDF5E6 ;
    border-radius: var(--border-radius-m);
    background: #8C1007;
    font-weight: var(--font-wight-medium);
    transition: 0.3s ease;
    justify-content: center;
}
.btn-more:hover {
   color:#FDF5E6;
   border-color:#8C1007 ;
   background: #8C1007
}
.btn-more:hover{
    color:#8C1007;
   border-color:#8C1007;
   background: transparent;
}
 .our-menu-section{
background-image:url(../img/d8f187e2222e622645a7e324d45a2b10.jpg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   height: 590px;;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
}
.menu-overlay{
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20,0,0,0.5); 
    display: flex;
    align-items: center;
    justify-content: center

}  
.menu-content{
    text-align: center;
    color: #6c0c05;
    z-index: 2;}
.menu-content h2 {
  font-family: "Playfair Display", serif;
         font-weight: 900;
         margin-bottom: 20px;
         text-decoration: uppercase;
         letter-spacing: 2px;
         color: #FDF5E6;
; 
}
.menu-content h3{
   font-family: "Open Sans", sans-serif;
   font-weight: 900;
   line-height: 1.5;
   color: #FDF5E6;
}
.the-menu{ 
    padding: 100px 8%;
    background-color: #FDF5E6;}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #8C1007; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header .title {
    font-size: 3rem;
    color: #9B0F06;
    margin-top: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: #8C1007;
    margin: 15px auto;
    border-radius: 2px;
}


.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 40px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgb(230, 205, 170);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 16, 7, 0.1);
}

.menu-item-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover;
}

.menu-item-info {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    border-bottom: 1px dashed #ccc;
}

.menu-item-header h4 {
    font-size: 1.2rem;
    color: #8C1007;
}

.menu-item-header .price {
    color: #8C1007;
    font-weight: 700;
}

.menu-item-info p {
    font-size: 0.9rem;
    color: #FDF5E6;
}

.our-gallery-section{
background-image:url(../img/dd15bc239090850aaa82a07eef92d293.jpg)   ;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   height: 590px;;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
}
.Gallery-overlay{
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20,0,0,0.5); 
    display: flex;
    align-items: center;
    justify-content: center

}

.Gallery-content{
    text-align: center;
    color: #6c0c05;
    z-index: 2;}
.Gallery-content h2 {
  font-family: "Playfair Display", serif;
         font-weight: 900;
         margin-bottom: 20px;
         text-decoration: uppercase;
         letter-spacing: 2px;
         color: #FDF5E6;
; 
}

.gallery-section {
    padding: 60px 0;
    background-color: #FDF5E6;
}

.section-title {
    text-align: center;
    font-family: 'Serif', Georgia, serif;
    color: #3D0C02; 
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); 
}

.booking-section {
    padding: 80px 0;
    background-color: #FDF5E6; 
    display: flex;
    justify-content: center;
}

.booking-container {
    width: 90%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(61, 12, 2, 0.1); 
    border: 1px solid #eee;
}

.booking-content {
    text-align: center;
}

.booking-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}


.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    gap: 20px;
}

.input-group input, .input-group select, .booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus, .booking-form textarea:focus {
    border-color: #3D0C02;}

/* زر الحجز */
.book-btn {
    background-color: #3D0C02; 
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-btn:hover {
    background-color: #5a1203; 
}


@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    /* زرار الفتح يظهر في الموبايل */
    .navbar #menu-open-button {
        display: block;
        background: none;
        border: none;
        color: #FDF5E6;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* القائمة نفسها */
    .nav-menu {
        position: fixed;
        left: -100%; /* مستخبية بره الشاشة */
        top: 0;
        flex-direction: column;
        background-color: #3D0C02; 
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s ease; /* حركة ناعمة */
        justify-content: center;
        z-index: 1000;
        gap: 30px;
    }

    /* لما الـ body ياخد الكلاس من الـ JS */
    body.show-mobile-menu .nav-menu {
        left: 0;
    }

    /* زرار القفل جوه المنيو */
    #menu-close-button {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #FDF5E6;
        font-size: 2rem;
    }

    
    .hero-section .section-content {
        flex-direction: column-reverse; 
        text-align: center;
        padding: 40px 20px;
    }

    .hero-details .title {
        font-size: 2rem;
    }

    .hero-details .description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-image-wrapper img {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }


    .menu-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

  
    .booking-container {
        width: 90%;
        padding: 25px 15px;
    }

    .input-group {
        flex-direction: column;
        gap: 15px;
    }
}






        
     
       
 
 
