
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Changa", sans-serif;
    scroll-behavior: smooth;
}
html{
     overflow-x: hidden; /* يمنع الاسكرول الأفقي */
}
body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header{
    top: 0;
    background: transparent;
    transition: all 0.5s ease;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 150px;
    background-color: #ffffff;
    border-bottom: solid 1px #be9954;
}

.header-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* الحجم الطبيعي */
.logo-img {
    height: 120px;
    width: 200px;
    transition: all 0.3s ease;
}

.navigation a{
    text-decoration: none;
    color:#001842;
    font-size: 1.2em;
    font-weight:500;
    padding-left:30px;
}

.navigation a:hover{
    color:#be9954;
}





/* ---------------- m-cards section ---------------- */
.m-cards{
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.m-cards h1{
    padding: 50px;
    color: #be9954;
}

.m-cards .row img{
    height: 400px;
}
.m-cards .row a{
    text-decoration: none;
    padding: 20px;
    color: #be9954;
    width: 30%;
}

.m-cards .row a:hover{
    color: #e6c588;
}

.m-cards .row .card{
    color: #ffffff9b;
    background-color: #001842;
}
.m-cards .row .card:hover{
scale: 1.05;
transition: 0.7s;
}
.m-cards .row h5{
    color: #e6c588;
}

.m-cards .row .card-footer{
    background-color: #be9954;
}











/* ---------------- watts btn ---------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 9999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  z-index: 9999;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
  z-index: 9999;
}

.whatsapp-text {
  margin-right: 10px;
  background: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------- footer ---------------- */

.footer {
    background-color: #e8eaed;
    color: #012e41;
    padding: 50px 0 20px;
    font-family: 'Arial', sans-serif;
    text-align: right;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
    padding: 10px;
}

.footer-logo img {
    height: 250px;
    width: 250px;
}

.footer-about, .footer-form {
  flex: 1;
  min-width: 250px;
}

.footer-about h3, .footer-form h3 {
  margin-bottom: 15px;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  background-color:#be9954;
  color: white;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
    justify-content: center;
  gap: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card i {
  font-size: 20px;
  color: #012e41;
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: #012e41;
}

.contact-card:hover i {
  color: #ffcc00;
}

.footer-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-form input, .footer-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
      text-align: right;
}

.footer-form textarea {
  min-height: 100px;
  resize: vertical;
}

.footer-form button {
  padding: 12px;
  background-color: #be9954;
  color: #222;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.footer-form button:hover {
  background-color: #efcc8a;
}

.footer-social {
  margin-top: 40px;
  text-align: center;
}

.social-links a {
  color: #012e41;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f4b400;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #ffffff33;
    font-size: 0.9em;
    color: #ccc;
}

.footer-bottom a{
    text-decoration: none;
    color: #cccccc;
}



/* ---------------- Responsive Design ---------------- */

/* الأجهزة التابلت (شاشة أقل من 992px) */
@media (max-width: 992px) {
  header {
    padding: 10px 40px;
    flex-direction: column;
    gap: 10px;
  }

  .content-box .text h1 {
    font-size: 1rem;
  }
  .content-box .text p{
    font-size: .8rem;
  }

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

  .content-box,
  .content-box.two {
    text-align: center;
  }

  .content-box img {
    width: 90%;
    height: auto;
  }

  .text-side,
  .cards-grid {
    min-width: 100%;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    padding-left: 0;
  }

  .logo-group img {
    height: 120px;
    margin: 0 20px;
  }
}

/* الهواتف المحمولة (شاشة أقل من 768px) */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    width: 100%;
    height: auto;
  }

  .logo-img {
    height: 50px;
  }

  .arrow {
    font-size: 1.5rem;
    padding: 0.6rem;
  }

  .caption {
    font-size: 1.2rem;
    bottom: 10%;
  }

  .overlay-content img {
    max-width: 90%;
    max-height: 200px;
  }

  .split-bg-section {
    height: 400px;
  }

  .split-bg-section .content-box img{
    height: 200px;
    width: 200px;
  }

  .collection-section {
    flex-direction: column;
    padding: 50px 1rem;
  }
}







