/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Color Palette */
:root {
  --accent: #896C6C;         /* deep taupe (headings, primary accent) */
  --accent-dark: #6f5555;    /* hover/darker accent */
  --soft-rose: #E5BEB5;      /* rose beige */
  --parchment: #EEE6CA;      /* pale sand (cards) */
  --ivory: #F5FAE1;          /* soft cream (bg) */
  --charcoal: #333333;       /* body text */
  --muted: #6b6b6b;
  --paper: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.06);
}

body {
  background: var(--ivory) !important;
}
 
h1,h2,h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent);
}

p {
  color: var(--charcoal);
}

/* Top nav */
.top-nav {
  background-color: var(--paper);
  z-index: 2;   
  border-bottom: 2px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.nameplate{
  width: 90vw;
  margin: auto;
  height: 12vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 20%;
  background: linear-gradient(135deg,var(--accent),var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: bold;
  box-shadow: var(--shadow-soft);
}

.brand a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: bold;
  transition: all 0.3s ease;
}

.brand a:hover {
  transform: translateY(-4px) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  padding: 2rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  transform: translateY(-4px) scale(1.05);
}


/* Contact Section */
.contact-section {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 50%;
  padding: 3rem;
  animation: fadeInUp 1s ease-out forwards;
  transition: all 0.98s ease;
}

.contact-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(137, 108, 108, 0.5);
}

.contact-card p {
font-size: 1.3rem;
color: var(--muted);
margin-bottom: 1rem;
}

.email-link {
  text-decoration: none;
  color: var(--accent);
}

.email-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.contact-card hr {
  margin: 2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-links a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  transform: translateY(-4px) scale(1.05);
}

/* Footer */
.footer{
  height: 20vh;
  padding: 2rem;
  color: var(--paper); 
  background: var(--accent);
  text-align: center;
}

/* MOBILE */

/* Tablets and smaller screens */
@media (max-width: 992px) {
  .nameplate {
    width: 95vw;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .nav-links a {
    padding: 1rem;
  }

  .contact-section {
    height: auto;
    padding: 4rem 2rem;
  }

  .contact-card {
    max-width: 80%;
    padding: 2.5rem;
  }

  .contact-card p {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }

  .footer {
    height: auto;
    padding: 2rem;
    font-size: 1rem;
  }
}

/* Phones and small devices */
@media (max-width: 600px) {
  .nameplate {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand a {
    font-size: 1.1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .nav-links a {
    padding: 0.8rem;
  }

  .contact-section {
    padding: 3rem 1rem;
    height: auto;
  }

  .contact-card {
    width: 100%;
    max-width: 95%;
    padding: 2rem 1.5rem;
  }

  .contact-card h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-card p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-links span {
    display: none;
  }

  .footer {
    font-size: 0.9rem;
    padding: 1.5rem;
  }
}