/* main.css */

/* Reset & Base */
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: #f15a24;
}
.navbar-brand img {
  height: 60px;
}
.nav-link, .dropdown-item {
  color: black !important;
}
.dropdown-menu {
  background-color: #f9f9f9;
}
.dropdown-item:hover {
  background-color: #eaeaea;
}
.language-switcher {
  margin-left: auto;
  margin-right: 1rem;
}

/* Hero sections */
.hero-section {
  background: url('assets/images/newbanner.PNG') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.hero-section h1 {
  font-size: 3rem;
}
.hero {
  background:#222; 
  color:#fff; 
  text-align:center; 
  padding:4em 2em;
}
.btn-primary {
  background-color: #000;
  border: none;
}

/* About & Contact content */
.container h2 {
  margin-top: 1em;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  margin-bottom: 1em;
}

/* Team Section */
.team img {
  max-width: 200px;
}

/* Product grid (from styles.css) */
.product-grid {
  padding: 2em 1em;
}
.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2em;
}
.product-card {
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  width: 200px;
  padding: 1em;
  text-align: center;
  border-radius: 8px;
  margin: 0.5em;
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Footer */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2em;
  padding: 2em;
  background-color: #cccccc;
  text-align: center;
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-column h4 {
  margin-bottom: 0.5em;
}
.footer-column a {
  color: #000;
  text-decoration: none;
}
.footer-column form input,
.footer-column form button {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.5em;
  font-size: 1em;
}
.footer-column form button {
  background-color: #f15a24;
  color: #fff;
  border: none;
  cursor: pointer;
}
.footer-social {
  margin-top: 1em;
  font-size: 0.9em;
}
.footer-social a {
  color: #000;
  text-decoration: none;
  margin: 0 0.5em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .contact-form {
    padding: 0 1em;
  }
  .footer-columns {
    flex-direction: column;
    gap: 1em;
  }
  .product-row {
    flex-direction: column;
    align-items: center;
  }
}
.btn-deposit {
  background-color: #1A1A1A;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-deposit:hover {
  background-color: #333333;
  color: #fff;
}
