.hero {
    position: relative;
    width: 95%;
    padding: 30px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* BACKGROUND LAYER (IMAGE) */
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* MAIN IMAGE */
.hero-image > img {
    width: 65%;
    max-width: 800px;
    padding:0 20px;
}
hr{
    width: 75px;
    border: 1px solid var(--gold);
    margin: 10px 0;
}
/* DARK OVERLAY FOR READABILITY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    
}

/* TEXT LAYER */
.hero-text {
    position: relative;
    z-index: 1;
    
}

/* SUBTITLE */
.hero-subtitle {
    display: flex;
    align-items: center;
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 500;
}
.hero-subtitle hr {
    margin-left: 10px;
}
.svgimg{
    width: 15px;
    height: 15px;
    margin-left: 10px;
}
.newl{
    display: flex;
    align-items: center;
    margin-top: 10px;
}
/* TITLE */
.hero-text h1 {
    font-size: clamp(42px, 5vw, 90px);
    color: var(--white);
    line-height: 1.05;
    margin: 20px 0;
}

.hero-text h1 span {
    color: var(--green_primary);
}

/* PARAGRAPH */
.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



/* LOGO STAMP */
.hero-logo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-logo img {
    width: 150px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-image {
        position: absolute;
        opacity: 0.25; /* soft background image */
        justify-content: center;
    }

    .hero-image > img {
        width: 100%;
        transform: none;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero::before {
        background: rgba(0,0,0,0.75);
    }
}
@media (max-width: 576px) {

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons button {
        width: 90%;
    }
}

/* Features Section */
.features {
  background: color-mix(in srgb, var(--green_secondary) 80%, transparent);
  border: 2px solid var(--gold);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  width: 80%;
  margin: 20px 30px;
}

/* كل العناصر نفس الحجم */
.feature-item {
  flex: 1;                 /* 👈 أهم سطر */
  display: flex;
  ;  /* يخلي الأيقونة فوق النص */
  align-items: center;
  justify-content: center;
  text-align: center;

  color: var(--gold);
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;

  padding: 10px 20px;
  border-right: 3px solid var(--gold);
}

/* آخر عنصر بدون border */
.feature-item:last-child {
  border-right: none;
}

@media (max-width: 958px) {
  .features {
    width: 90%;
  }

  .feature-item {
    flex-direction: column; /* يخلي الأيقونة فوق النص */
    border-right: none; /* إزالة الحدود الجانبية */
    /* إضافة حدود سفلية */
    padding: 15px 0;
  }

  .feature-item:last-child {
    border-bottom: none; /* إزالة الحدود السفلية لآخر عنصر */
  }
}
@media screen and (max-width: 576px) {
    .features {
    width: 100%;
    margin: 20px 0;
    flex-direction: column;
  }
}

/* ABOUT SECTION WRAPPER */
.about-us {
    width: 95%;
    margin: 60px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* =========================
   IMAGE SIDE (STRONG HERO FEEL)
========================= */
.imgaboutus {
    width: 55%;
    padding: 0 20px;
    position: relative;
}

.imgaboutus img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid var(--gold);
    filter: brightness(0.75) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* hover effect (premium feel) */
.imgaboutus:hover img {
    transform: scale(1.02);
    filter: brightness(0.85) contrast(1.1);
}

/* soft overlay for luxury tone */
.imgaboutus::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.05)
    );
    pointer-events: none;
}

/* =========================
   TEXT SIDE
========================= */
.aboutus_div {
    width: 45%;
    padding: 0 20px;
}

.aboutus_div h1 {
    color: var(--white);
    font-size: 2.2rem;
    line-height: 1.2;
}

.aboutus_div h1 span {
    color: var(--green_primary);
}

.aboutus_div p {
    color: var(--white);
    line-height: 1.8;
    margin-top: 20px;
    opacity: 0.9;
}

/* =========================
   CARDS CONTAINER
========================= */
.contain_aboutus {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* CARD STYLE UPGRADE */
.cardaboutus {
    flex: 1;
    padding: 18px;
    border-right: 1px solid var(--gold);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cardaboutus:hover {
    transform: translateY(-5px);
}

/* remove border last */
.cardaboutus:last-child {
    border-right: none;
}

/* ICON CIRCLE */
.cardaboutus .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--green_secondary) 80%, transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--gold);
}

/* TEXT */
.textcard h3 {
    color: var(--gold);
    margin-bottom: 10px;
    min-height: 50px;
}

.textcard p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 1024px) {
    .about-us {
        flex-direction: column;
    }

    .imgaboutus,
    .aboutus_div {
        width: 100%;
    }

    .imgaboutus img {
        max-height: 420px;
    }

    .contain_aboutus {
        flex-wrap: wrap;
    }

    .cardaboutus {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contain_aboutus {
        flex-direction: column;
    }

    .cardaboutus {
        border-right: none;
        border-bottom: 1px solid var(--gold);
    }

    .cardaboutus:last-child {
        border-bottom: none;
    }

    .aboutus_div h1 {
        font-size: 1.7rem;
    }
}

/*Menu */
.menu {
    width: 95%;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* TITLE */
.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.haupttitel {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.haupttitel img {
    width: 50px;
    height: 50px;
}

.haupttitel h2 {
    margin: 0 15px;
}

.title span {
    color: var(--white);
    text-align: center;
    opacity: 0.85;
}

/* =========================
   SLIDER (MAIN PART)
========================= */
.menu-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px;
    width: 100%;
}

/* hide scrollbar */
.menu-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.card_menu {
    flex: 0 0 calc(20% - 20px); /* 5 items desktop */
    scroll-snap-align: start;

    background-color: color-mix(in srgb, var(--green_secondary) 80%, transparent);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 18px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_menu:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.card_menu img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--gold);
}

/* TEXT */
.card_menu h3 {
    color: var(--white);
    margin: 10px 0;
}

.card_menu p {
    color: var(--white);
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
    opacity: 0.9;
}

.price {
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
    .card_menu {
        flex: 0 0 calc(33.333% - 20px); /* 3 items */
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .card_menu {
        flex: 0 0 80%; /* big swipe cards */
    }

    .menu-slider {
        padding-left: 10px;
    }
}

/*Einblick */
.photos{
    width:95%;
    margin:60px auto;
}

.photos-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;

    scrollbar-width:none;
    margin:60px 0;
}

.photos-slider::-webkit-scrollbar{
    display:none;
}

.photo-card{
    flex:0 0 calc(20% - 16px);
    scroll-snap-align:start;
}

.photo-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:12px;
    border:2px solid var(--gold);
    display:block;
}

/* DOTS */

.slider-dots{
    display:flex;
    justify-content:center;
    margin-top:25px;
    gap:10px;
}

.slider-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#777;
    cursor:pointer;
    transition:.3s;
}

.slider-dots span.active{
    background:var(--gold);
    transform:scale(1.2);
}

/* TABLET */

@media (max-width:1024px){
    .photo-card{
        flex:0 0 calc(33.333% - 14px);
    }
}

/* MOBILE */

@media (max-width:768px){
    .photo-card{
        flex:0 0 calc(33.333% - 14px);
    }

    .photo-card img{
        height:180px;
    }
}

/*Reviews*/
.reviews{
    width:95%;
    margin:100px auto;
}

.reviews_grid{
    margin-top:40px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review_card{
    position:relative;

    background-color:
        color-mix(
            in srgb,
            var(--green_secondary) 80%,
            transparent
        );

    border:2px solid var(--gold);

    border-radius:15px;

    padding:30px;

    transition:.35s;
}

.review_card:hover{
    transform:translateY(-8px);
}

.review_card::before{
    content:"❝";

    position:absolute;
    top:15px;
    right:20px;

    font-size:70px;
    line-height:1;

    opacity:.15;
    color:var(--gold);
}

.review_top{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:20px;
}

.review_avatar{
    width:60px;
    height:60px;

    border-radius:50%;

    border:2px solid var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--gold);
    font-weight:bold;
    font-size:24px;
}

.review_top h3{
    color:var(--white);
    margin-bottom:5px;
    font-size:18px;
}

.stars{
    color:var(--gold);
    letter-spacing:3px;
    font-size:18px;
}

.review_text{
    color:var(--white);

    line-height:1.8;

    opacity:.9;

    min-height:140px;
}

/* Tablet */

@media(max-width:1024px){

    .reviews_grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .reviews_grid{
        grid-template-columns:1fr;
    }

    .review_card{
        padding:25px;
    }

}

/*big imge*/
.image-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.image-modal.active{
    display:flex;
}

.image-modal img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
    cursor:grab;
    transition:transform .2s ease;
}

.close-modal{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    z-index:10;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    color:white;
    font-size:50px;
    cursor:pointer;
    padding:20px;
    z-index:10;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}