:root {
  --bg: #111;
  --card: #1c1c1e;
  --accent: #ffffff;
  --text: #eee;
  --soft: #c4c4c4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg);
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
  padding: 1rem;
}

header {

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-left: 20px;
  margin-right: 20px;
}
header h1 {
  color: var(--accent);
  font-size: 2rem;
}
nav a {
  color: var(--text);
  margin-left: 1rem;
  font-weight: 600;
  text-decoration: none;
}
nav a:hover {
  color: var(--accent);
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--accent), #7209b7);
  color: white;
  border-radius: 12px;
}
.hero h2 {
  font-size: 2.5rem;
}
.hero .btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: black;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.hero .btn:hover {
  background: var(--text);
  color: var(--bg);
}

section {
  margin: 3rem 0;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--accent);
}

p {
  max-width: 700px;
  margin: auto;
  color: var(--soft);
  text-align: center;
}

.products {
  margin-top: 2rem;
}

.carousel {
  margin: 3rem auto;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 1rem;
  position: relative;
}

.carousel h4 {
  color: white;
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: center;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-track img {
  scroll-snap-align: center;
  border-radius: 12px;
  width: 320px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #1e1e1e;
}

.carousel-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(68, 50, 58, 0.6);
}

form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form input, form textarea {
  padding: 0.75rem;
  background: var(--card);
  border: 1px solid #333;
  color: white;
  border-radius: 6px;
}
form button {
  background: var(--accent);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background: #d61e70;
}
#formStatus {
  text-align: center;
  color: var(--soft);
  margin-top: 1rem;
}

footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #555;
  padding: 1rem 0;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-track img {
    width: 80vw;
  }
}
#contact {
  margin-top: 4rem;
  padding: 2rem 1rem;
  background: linear-gradient(to right, #1a1a1a, #111);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}

#contact h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--soft);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.email-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #ff4d9d;
}
.btn-inquire {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--card);
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px #7209b7;
}

.btn-inquire:hover {
  background: #7209b7;
  transform: translateY(-2px);
}

.logo-link {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.3s ease;
}

.logo-link:hover {
  color: #7209b7;
}
