/* 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;
  min-height: 100vh;
  padding-top: 90px;
  color: #333;
}

/* Header */
header {
  background: black;
  color: white;
  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);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  transition: all 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;
}

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

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

  .menu-toggle {
    display: block;
  }

  .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;
  }

  .logo {
    font-size: 1.5rem;
  }

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

/* Contact Section */
.contact-container {
  background: white;
  max-width: 900px;
  width: 80%;
  margin: 2rem auto;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: #e464eb;
  color: white;
  padding: 2rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info .info p {
  margin-bottom: 0.5rem;
}

.contact-form {
  flex: 1;
  padding: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: #a10da6;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact-form button {
  padding: 0.75rem;
  background: #a10da6;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e464eb;
}

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

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

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