/* ================== BASE ================== */
body {
  font-family: 'Ruwudu', serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  text-align: center;
  animation: fadeInPage 1s ease;
}

/* دخول الصفحة */
@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================== HERO ================== */
.hero {
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
              url('images/logo.jpg') no-repeat right top;
  background-size: 150px;
  padding: 50px 20px;
}

/* ================== LOGO ================== */
.logo {
  width: 130px;
  margin-bottom: 10px;
  animation: logoGlow 6s linear infinite;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

/* Glow logo */
@keyframes logoGlow {
  0%   { filter: drop-shadow(0 0 6px #00f7ff); }
  25%  { filter: drop-shadow(0 0 6px #ff00ff); }
  50%  { filter: drop-shadow(0 0 6px #00ff88); }
  75%  { filter: drop-shadow(0 0 6px #ffaa00); }
  100% { filter: drop-shadow(0 0 6px #00f7ff); }
}

/* ================== TITLE ================== */
.main-title {
  color: #ff7b00;
  font-size: 2.5em;
  animation: glowText 3s infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 5px #ff7b00; }
  to   { text-shadow: 0 0 20px #ff7b00, 0 0 30px #ffae42; }
}

/* ================== SLIDER ================== */
.slider {
  margin: 30px 0;
}

.slide {
  display: none;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin: auto;
}

/* ================== BACKGROUND ================== */
.background-image {
  width: 100%;
  height: 200px;
  background: url('images/Hassan.png') center/cover no-repeat;
  margin-top: 20px;
  border-radius: 12px;
}

/* ================== FORM ================== */
form input,
form textarea,
form select {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

form button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background-color: #45a049;
}

/* ================== MAP ================== */
.map-button {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #80C3FF;
  text-shadow: 1px 1px 2px #ccc;
}

/* ================== CALL BUTTON ================== */
.call-btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background: #6c757d;
  border: 2px solid #6c757d;
  transition: 0.3s;
  box-shadow: 0 0 10px #6c757d, 0 0 20px #6c757d;
  animation: pulse 2s infinite;
}

.call-btn.green {
  background: #28a745;
  border-color: #28a745;
  box-shadow: 0 0 10px #28a745, 0 0 25px #28a745;
}

.call-btn:hover {
  transform: scale(1.08);
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px #fff, 0 0 40px #fff;
  animation: shake 0.4s;
}

/* نبض */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* اهتزاز */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

/* ================== ORDER BUTTON ================== */
.order-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #00f7ff, #ff00ff, #ffcc00);
  background-size: 300%;
  animation: gradientMove 4s linear infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

.order-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #ff00ff, 0 0 30px #00f7ff;
}

.order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.order-btn:hover::before {
  left: 100%;
}

/* ================== PRODUCT ================== */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.product-card img {
  width: 100%;
  display: block;
}

.product-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

.product-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ================== FOOTER ================== */
.footer-box {
  background: #0f172a;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
}

/* ================== NEON BUTTON ================== */
.neon-btn {
  padding: 14px 30px;
  font-size: 18px;
  color: #fff;
  background: #0c1b2a;
  border: 2px solid #00d4ff;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}

.neon-btn:hover {
  background: #00d4ff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
}