/* Base styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #f4f3ef;
  background-color: #0b0e11;
  line-height: 1.6;
}

a {
  color: #c5a253;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  color: #f4f3ef;
}

ul {
  list-style: none;
  padding: 0;
}

/* Section base and reveal */
section.section {
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

nav .logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f4f3ef;
}

nav ul.menu {
  display: flex;
  gap: 1rem;
    flex-wrap: wrap;
}

nav ul.menu li a 
  color: #f4f3ef;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

nav ul.menu li a:hover {
  color: #c5a253;
}

/* Hero */
#hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 2rem;
  background-color: #0b0e11;
  background-image: url('art_deco_pattern.jpg');
  background-size: 300px;
  background-repeat: repeat;
  background-position: center top;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 14, 17, 0.8), rgba(11, 14, 17, 1));
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

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

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #dcdcdc;
}

    /* Current projects blurb */
    .hero-content .current-projects {
      font-size: 1.1rem;
      margin-top: 1rem;
      color: #dcdcdc;
    }

    .hero-content .current-projects a {
      color: #c5a253;
      text-decoration: underline;
    }


.hero-buttons {
  display: flex;
  gap: 1rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button.primary {
  background-color: #c5a253;
  color: #0b0e11;
}

.button.primary:hover {
  background-color: #b49144;
}

.button.secondary {
  background-color: transparent;
  border: 1px solid #c5a253;
  color: #c5a253;
}

.button.secondary:hover {
  background-color: #c5a253;
  color: #0b0e11;
}

.button.tertiary {
  background-color: transparent;
  border: 1px solid #f4f3ef;
  color: #f4f3ef;
}

.button.tertiary:hover {
  background-color: #f4f3ef;
  color: #0b0e11;
}

/* Projects section */
.projects h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  background-color: #16191d;
  border-radius: 5px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  background-image: url("ChatGPT Image Aug 18, 2025, 05_11_06 PM.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
  flex-shrink: 0;
}

.project-info {
  padding: 2rem;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-status {
  font-style: italic;
  color: #c5a253;
  margin-bottom: 1rem;
}

.sell h2,
.about h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.sell p,
.about p,
.contact p,
.sell ul {
  max-width: 700px;
  margin: 0 auto 1rem auto;
  font-size: 1rem;
}

.sell ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.sell ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #c5a253;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #0b0e11;
  color: #5c5e63;
}

@media (min-width: 768px) {
  nav ul.menu {
    gap: 2rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .project-card {
    flex-direction: row;
  }
  .project-image {
    width: 40%;
    height: auto;
  }
}
