* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
        }

        .logo span {
            font-size: 24px;
            font-weight: bold;
            margin-left: 10px;
            color: #bc002d;
        }

				#logo{
					text-decoration: none;
				}

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: #bc002d;
            background-color: #f5f5f5;
        }

        nav ul li a.active {
            color: #bc002d;
            font-weight: bold;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-signin {
            background-color: transparent;
            border: 1px solid #bc002d;
            color: #bc002d;
        }

        .btn-signin:hover {
            background-color: #bc002d;
            color: white;
        }

        .btn-register {
            background-color: #bc002d;
            color: white;
        }

        .btn-register:hover {
            background-color: #a00024;
        }


/* ------- Youssef Alaa ----------- */
.filterButtonDiv{
	/* color: rgb(26, 167, 26); */
	text-align:center;
	background-color: #f9f9f9;
	padding-top: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	height: 10vh;
}
.filterButton{
	background-color: transparent;
  border: 1px solid #bc002d;
  color: #bc002d;
	background-size: cover;
	font-size: large;
	border-radius: 10px;
	margin-left: 8px;
	padding: 6px;
	border-color: #bc002d;
}
.filterButtonDiv :hover{
	background-color: #bc002d;
  color: white;
}
.filterButton:visited{
  background-color: #bc002d;
  color: white;
}


/*------------ Abdelrahman Rabeea -------------- */


/* القسم الرئيسي */
/* .about-section {
  position: relative;
  background-image: url('./hedar\ 2.avif');  غيّر الاسم لو الصورة مختلفة 
  background-size: cover;
  background-position: center;
  height: 90vh; ارتفاع كبير 
  display: flex;
  align-items: center;
  padding-left: 80px;
  z-index: 0;
} */

/* الصندوق الأبيض
.about-box {
  background: #fff;
  padding: 40px 50px;
  max-width: 450px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.about-box h1 {
  font-size: 36px;
  color: #222;
}

.line {
  width: 60px;
  height: 4px;
  background: #c00;
  margin: 15px 0 25px 0;
}

.about-box p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-btn {
  text-decoration: none;
  color: #c00;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.about-btn:hover {
  border-bottom: 2px s
} */



.cards{
    display: flex;
    justify-content:center;
    gap: 40px;
}

.card{
    margin: 40px 0 50px 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.3s;
}
.card:hover{
transform: translateY(-10px)
}
.action button{
    margin: 5px 0 10px 0;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1.5px solid rgb(203, 201, 201);
    cursor: pointer;

}
.filled{
    color: rgb(245, 201, 5);
}
.card h2{
    font-size: 16px;
    font-family: "Roboto",sans-serif;
}
.summary{
    color: gray;
    font-size: 0.9rem;
}
.price{
    color: red;
    font-size: 1.3rem;
    font-weight: bold;
}
.card-btn:hover{
background-color: #bc002d;
color: white;


}


.cards{
    animation: cards both;
    animation-timeline: view();
}
/* الأنيميشن بتاعة أول كارد تبدأ لما الكارد يدخل (entry) في الشاشة بنسبة 20%

وتنتهي لما الكارد يغطي الشاشة بنسبة 40%. */
.cards:nth-child(1){
    animation-range: entry 20% cover 40%;
}

.cards:nth-child(2){
    animation-range: entry 40% cover 60%;
}

.cards:nth-child(3){
    animation-range: entry 60% cover 80%;
}

@keyframes cards{
    from{
        opacity: 0.1;
        transform: translateY(10px) scale(0.5);

    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ------- Mario Fouad ---------- */
/* <!--Product Cards--> */

.product-container {
  display: flex;
  gap: 50px;
  padding: 40px;
  justify-content: center;
  margin: 40px 0 50px 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    align-items: center;
    border-radius: 10px;
   
      transform: translateY(-5px);
 transition: transform 0.3 ease;
   
}




.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  width: 250px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  height: 400px;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.product-card1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  width: 250px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}





.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card1 img {
  width: 95%;
  border-radius: 10px;
}



#price {
  color: red;
  font-size: 1.3rem;
  font-weight: bold;

}
#price5{

  color: red;
  font-size: 1.3rem;
  font-weight: bold;
margin-top: 35px;
}

#price4{

  color: red;
  font-size: 1.3rem;
  font-weight: bold;
margin-top: 45px;
}
#price1 {
  color: red;
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 15px;
}



p{
  color: gray;
  margin-bottom: 0px;
}
h3{
  margin-top: 35px;
}


.product-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}
.product-card1:hover {
  transform: translateY(-10px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);} 


.action button{
    margin: 5px 0 10px 0;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1.5px solid rgb(203, 201, 201);
    cursor: pointer;

}
.action{
    display: flex;
    justify-content: center;
}

.card-btn:hover{
background-color: #bc002d;
color: white;


}

/* ----------------------------------------------------  */
    /* Footer */

        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #bc002d;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #bc002d;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #444;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: #bc002d;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #ccc;
            font-size: 14px;
        }


     /* Responsive Design */
/* @media (max-width: 999px){
    .cards{
        flex-wrap: wrap;
    }

    .product-container{
        flex-direction: column;
        flex-wrap: wrap;
    }
}


        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }

            .logo {
                margin-bottom: 15px;
            }

            nav ul {
                margin-bottom: 15px;
            }

            nav ul li {
                margin: 0 10px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }
              .cards{
               flex-direction: column;
                align-items: center;
               
            }

            .product-container{
            flex-direction: column;
            flex-wrap: wrap;
    }
        }

        @media (max-width: 600px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 5px 0;
            }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                margin-bottom: 10px;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }
            .about-section{
                flex-direction: column;
                 padding: 15px 0;
                 flex-wrap: wrap;
            }
            .product-container{
                flex-direction: column;
                flex-wrap: wrap;
    }
        } */

/* ===============================
   RESPONSIVE MEDIA QUERIES
   =============================== */

/* ---------- Tablets & Small Screens ---------- */
@media (max-width: 992px) {

  .header-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cards,
  .product-container {
    flex-wrap: wrap;
    gap: 30px;
  }

}

/* ---------- Tablets & Mobiles ---------- */
@media (max-width: 768px) {

  /* Header */
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .auth-buttons {
    justify-content: center;
  }

  /* Filter Buttons */
  .filterButtonDiv {
    height: auto;
    padding: 15px;
  }

  .filterButton {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  /* Cards */
  .cards,
  .product-container {
    padding: 20px;
    justify-content: center;
  }

  .card,
  .product-card,
  .product-card1 {
    width: 100%;
    max-width: 320px;
  }

}

/* ---------- Small Mobiles ---------- */
@media (max-width: 480px) {

  .logo span {
    font-size: 20px;
  }

  .btn {
    width: 100%;
  }

  .auth-buttons {
    flex-direction: column;
  }

  footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

}






