@charset "UTF-8";
/* CSS Document */

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar – Minimal with Umphff */
.navbar.minimal-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: default;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #111;
  transform: scale(1.05);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  font-family: 'Playfair Display', serif;
  animation: fadeSlideUp 1s ease forwards;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease 0.3s forwards;
}
.hero p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #222;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease 0.6s forwards;
}
.hero-image-placeholder {
  margin-top: 2rem;
}

/* Sections */
section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}
.about-preview { animation-delay: 0.9s; }
.services-preview { animation-delay: 1.2s; }

/* Buttons */
.button {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 3px;
  cursor: pointer;
}
.button:hover {
  transform: scale(1.05);
  background: #000;
  color: #fff;
}

/* Services list */
.services-list {
  list-style: none;
  padding-left: 0;
  display: inline-block;
  text-align: left;
  line-height: 2rem;
  font-weight: 500;
  margin: 0 auto 1.5rem; /* bottom space pushes button down */
}
.services-list li {
  margin-bottom: 0.6rem;
}

/* Ensure button centers under list */
.services-preview .button {
  display: block;       /* forces new line */
  margin: 1.5rem auto 0; /* center horizontally, add top space */
}

/* Page layout */
.about-page,
.services-page,
.contact-page {
  max-width: 700px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}
.about-page { animation-delay: 0.9s; }
.services-page { animation-delay: 1.2s; }
.contact-page { animation-delay: 0.9s; }

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
label {
  font-weight: 600;
}
input[type="text"],
input[type="email"],
textarea {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1.5px solid #000;
  border-radius: 5px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #555;
}
button[type="submit"] {
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button[type="submit"]:hover {
  background: #444;
}
.form-message {
  font-size: 0.9rem;
  font-weight: 600;
  color: green;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Fade-up animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    background: #fff;
    height: 100vh;
    width: 200px;
    flex-direction: column;
    padding-top: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .menu-toggle {
    display: flex;
  }
}
