* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #eae6e2;
  font-family: 'Montserrat', sans-serif;
  color: #2b2b2b;
}

/* ================= HEADER ================= */

header {
  position: relative; /* NOT fixed */
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eae6e2;
}

.logo {
  letter-spacing: 4px;
  font-weight: 300;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
}

nav a.active {
  color: #c47a4a;
}

/* ================= HERO SPLIT ================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.hero {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* darkness level */
  z-index: 2;
}

.hero h1 {
  z-index: 3;
}
/* LEFT IMAGE */
.left-image {
  width: 50%;
  height: 100%;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SLIDESHOW */
.slideshow {
  position: relative;
  width: 50%;
  height: 100%;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 18s infinite;
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 6s; }
.slideshow img:nth-child(3) { animation-delay: 12s; }

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* CENTER TEXT */
.hero h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  letter-spacing: 10px;
  font-weight: 500;
  color: #ffffff;
  z-index: 5;

  text-shadow:
    0 2px 8px rgba(0,0,0,0.9),
    0 4px 20px rgba(0,0,0,0.8),
    0 8px 40px rgba(0,0,0,0.7);
}

/* ================= PORTFOLIO ================= */

.portfolio {
  padding: 120px 10%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.card img {
  width: 100%;
  display: block;
}

.card h2 {
  margin-top: 25px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
}

.card p {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  color: #c47a4a;
  cursor: pointer;
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

.site-footer {
  background: #d8cec6;
  padding: 50px 10%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
}

.footer-credit {
  margin-top: 6px;
  font-size: 11px;
  color: #888;
  letter-spacing: 2px;
}

.footer-right {
  display: flex;
  gap: 30px;
}

.footer-right a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
  transition: 0.3s ease;
}

.footer-right a:hover {
  color: #c47a4a;
}

/* MOBILE */

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-right {
    gap: 20px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  header {
    padding: 15px 15px;
  }

  .logo {
    font-size: 12px;
    letter-spacing: 2px;
  }

  nav {
    gap: 10px;
  }

  nav a {
    font-size: 10px;
    letter-spacing: 1px;
  }

 .hero {
  height: 100vh;
}

  .hero h1 {
    font-size: 32px;
    letter-spacing: 5px;
  }
.portfolio {
  grid-template-columns: 1fr !important;
}
/* ================= PORTFOLIO ================= */

.portfolio {
  padding: 120px 10%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.card h2 {
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 24px;
}

.card p {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  color: #c47a4a;
  cursor: pointer;
}

}


/* ================= CONTACT PAGE ================= */

.contact-section {
  padding: 120px 10%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-subtitle {
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-size: 13px;
  color: #777;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c47a4a;
}

.contact-form button {
  padding: 14px;
  border: none;
  background: #c47a4a;
  color: white;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #a96336;
}

/* ================= CLIENT GALLERY ================= */

.photo-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

/* ================= HERO TEXT ================= */

.hero-text {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  letter-spacing: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 14px;
  letter-spacing: 4px;
  color: #777;
  margin-bottom: 40px;
}

.hero-button {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #c47a4a;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 12px;
  color: #c47a4a;
  transition: 0.3s ease;
}

.hero-button:hover {
  background: #c47a4a;
  color: white;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
    letter-spacing: 6px;
  }

  .hero-tagline {
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-button {
    width: 260px;
    margin-bottom: 30px;  /* spacing only on mobile */
  }

  .hero-button:last-child {
    margin-bottom: 0;
  }

}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-buttons {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;
  gap: 20px;                /* space between buttons */
}

.hero-button {
  width: 260px;             /* fixed same width */
  text-align: center;
  display: inline-block;
  padding: 14px 0;
  border: 1px solid #c47a4a;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 12px;
  color: #c47a4a;
  transition: 0.3s ease;
}
.footer-main {
  font-size: 14px;
  letter-spacing: 1px;
  color: #444;
}

.footer-small {
  margin-top: 6px;
  font-size: 10px;        /* smaller */
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase; /* makes it official */
}
.footer-main {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #666;
  line-height: 1.6;
}

.site-footer {
  background: #d8cec6;
  padding: 50px 10%;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-social a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #c47a4a;
}

.footer-bottom {
  font-size: 10px;        /* small */
  letter-spacing: 1px;
  color: #777;
}

.hero-text {
  position: relative;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #eae6e2; /* default white */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}