/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: url('color-year-purple-tones-abstract-landscape-with-fantasy-aesthetic.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  padding-top: 80px;
}

/* Header */
header {
  background: black;
  color: #a10da6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(8px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  gap: 0.6rem;
  color: white;
}

.logo img {
  height: 45px;
  width: 45px;
  object-fit: contain;
}

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

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background: linear-gradient(to right, #a10da6, #e464eb);
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Mobile View */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: relative;
    width: 100%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo img {
    height: 60px;
    width: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    display: inline-block;
    margin-top: 1rem;
  }
}

/* Hero Section */
.hero {
  color: black;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.8rem;
  font-style: oblique;
}

/* Services Section */
.services {
  padding: 3rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e7aaf1, #a10da6);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #710775;
  z-index: 2;
  position: relative;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: white;
  margin-top: 2rem;
}

/* Order Section */
.order {
  padding: 3rem 2rem;
  background: #e7aaf1;
}

.order h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.order-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-form label {
  font-weight: 600;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.order-form button {
  align-self: flex-start;
  background: #a10da6;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-form button:hover {
  background: #c52ddd;
}
