* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: normal;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fafafa;
  color: #333;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff9800;
}

/* Sections */
.section {
  padding: 100px 50px;
  text-align: center;
}

.home {
  background: url('/shop.png') center center / cover no-repeat;
  /* FULL EXACT FIT */
  /* background-size: 100% 100%;    */
  background-size: contain;
  background-color: #c3609c;
  color: #fff;
  min-height: 100vh;   /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center; /* so content does not hide under header */
}

.home .content {
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.btn {
  background-color: #ff9800;
  color: #fff;
  padding: 10px 20px;
  border: none;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
}

.btn:hover {
  background-color: #e68900;
}

/* Services */
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service {
  background: #fff;
  padding: 25px;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }
}
