/* Shared site CSS - modern, minimal replica look */
:root{
  --cream: #fffaf6;
  --gold: #b89a6f;
  --muted: #777;
  --accent-dark: #12323a;
  --max-width: 1500px;
  --radius: 6px;
  --gap: 20px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;}
.container{max-width:var(--max-width);margin:0 auto;padding:0 20px;}

/* Header */
.site-header{
  background:var(--cream);
  border-bottom:1px solid rgba(0,0,0,0.06);
  position:sticky; top:0; z-index:20;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 0;
}

/* Nav lists */
.nav-list{list-style:none;margin:0;padding:0;display:flex;gap:18px;align-items:center}
.nav-list li{display:inline}
.nav-link{
  text-decoration:none;
  font-family: "Playfair Display", serif;
  font-size:15px;
  letter-spacing:1px;
  color:var(--muted);
  padding:12px 10px;
  border-bottom:3px solid transparent;
}
.nav-link:hover{color:var(--accent-dark)}
.nav-link.active{color:var(--gold); border-bottom-color:var(--gold)}

/* Logo */
.logo-area{display:flex;align-items:center;justify-content:center;flex:0 0 220px}
.logo{height:42px; width:auto; object-fit:contain}
/*
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f4f4f4;
}

.social-container {
  display: flex;
  gap: 15px;
}

.social-container a {
  text-decoration: none;
  color: white;
  background: #333;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.social-container a:hover {
  transform: scale(1.1);
}

/* Individual colors */
.facebook { background: #f4f4f5; }
.twitter { background: #f7f9fa; }
.instagram { background: #f8f7f7; }
.linkedin { background: #f9f9f9; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

header.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 8%;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 3rem;
  color: #b79b5b;
  font-weight: 600;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
}

.hero-details {
  border-left: 1px solid #c9a44b;
  padding-left: 2rem;
}

.detail {
  margin-bottom: 1.5rem;
}

.detail h4 {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.detail p {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}

.image-section {
  padding: 2rem 8%;
}

.image-section img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}


*/

/* Hero */
.hero{position:relative; height:115vh; min-height:420px; overflow:hidden}
.hero-image{width:100%; height:100%; object-fit:cover; display:block; filter:contrast(0.98) saturate(0.95)}
.hero-overlay{position:absolute; inset:0; pointer-events:none}

/* Intro */
.intro{padding:48px 0; text-align:center}
.intro h1{font-family:"Playfair Display", serif; margin:0;font-size:36px}
.intro p{color:var(--muted);max-width:820px;margin:12px auto 0;line-height:1.6}

/* Content layout */
.content{padding:48px 0}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
.project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.project-card{background:#fff;border-radius:8px;padding:12px;box-shadow:0 6px 18px rgba(0,0,0,0.05)}
.project-card img{width:100%;border-radius:6px;display:block}


:root{
  --gold:#b89a6f;
  --text:#222;
  --muted:#777;
  --bg:#fff;
  --max:1200px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Inter, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  max-width:var(--max);
  margin:auto;
  padding:60px 20px;
}

/* HEADER */
.site-header{
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  background:#fff;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.header-inner nav a{
  margin:0 12px;
  font-family:"Playfair Display", serif;
  color:var(--muted);
  font-size:14px;
}

.header-inner nav a:hover{
  color:var(--gold);
}

.logo{
  height:42px;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

.hero h1{
  font-family:"Playfair Display", serif;
  font-size:42px;
  color:var(--gold);
}

.subtitle{
  color:var(--muted);
  max-width:520px;
  margin-top:10px;
}

.meta{
  border-left:2px solid var(--gold);
  padding-left:20px;
  font-size:14px;
}

.hero-img{
  width:100%;
  border-radius:16px;
  margin-top:20px;
}

/* SECTIONS */
.section{
  margin-top:80px;
}

.section h2{
  font-family:"Playfair Display", serif;
  font-size:28px;
  margin-bottom:20px;
}

.grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
}

.grid img{
  width:100%;
  border-radius:14px;
}

/* JOURNEY */
.journey{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.journey div{
  background:#f4f4f4;
  padding:40px;
  border-radius:12px;
  text-align:center;
  font-size:14px;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.gallery img{
  width:100%;
  border-radius:14px;
}

/* CTA */
.cta{
  margin-top:100px;
  padding:40px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.btn{
  border:1px solid var(--gold);
  padding:12px 26px;
  color:var(--gold);
  font-size:14px;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:40px 20px;
  color:var(--muted);
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero,
  .grid{
    grid-template-columns:1fr;
  }

  .journey{
    grid-template-columns:repeat(2,1fr);
  }

  .cta{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }
}

/* ======= Footer Styles ======= */
.footer {
  background: #fff;
  color: #9c8351;
  font-family: 'Times New Roman', serif;
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid #d1c2a4;
}

.footer-top h2 {
  font-size: 24px;
  font-weight: normal;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #9c8351;
  padding: 10px 25px;
  text-decoration: none;
  color: #9c8351;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #9c8351;
  color: #fff;
}

.footer-divider {
  border-top: 1px solid #d1c2a4;
  margin: 40px 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 30px;
}

.footer-contact h2 {
  font-size: 22px;
  font-weight: normal;
}

.footer-contact p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 40px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.footer-left p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.social-links a {
  color: #9c8351;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #000;
}

.footer-right h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #9c8351;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin: 5px 0;
}

.footer-right ul li a {
  color: #555;
  text-decoration: none;
}

.footer-right ul li a:hover {
  color: #9c8351;
}

.footer-credits {
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}

.footer-credits span {
  color: #9c8351;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contact, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* Footer */
.site-footer{background:#fff;padding:18px 0;border-top:1px solid rgba(0,0,0,0.06)}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.social a{margin-left:10px;text-decoration:none;color:var(--muted)}

/* Contact form */
.contact-form{max-width:680px;margin:0 auto;display:flex;flex-direction:column;gap:14px}
.contact-form label{display:flex;flex-direction:column;font-size:14px;color:var(--muted)}
.contact-form input, .contact-form textarea{padding:10px;border:1px solid #e6e6e6;border-radius:6px;font-size:14px}
.btn{background:var(--accent-dark);color:#fff;padding:10px 14px;border:none;border-radius:6px;font-weight:600;cursor:pointer;}

/* Mobile */
#mobile-toggle, #mobile-toggle-2, #mobile-toggle-3, #mobile-toggle-4{
  display:none; background:none;border:none;font-size:20px;margin-right:8px;cursor:pointer;
}
@media (max-width:900px){
  .logo-area{flex:1; text-align:center}
  .nav-left .nav-list, .nav-right .nav-list{display:none}
  #mobile-toggle, #mobile-toggle-2, #mobile-toggle-3, #mobile-toggle-4{display:inline-block}
  .header-inner{gap:8px}
  .project-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .hero{height:52vh}
}

/* Small refinements */
a{color:inherit}
h2{font-family:"Playfair Display",serif;margin-bottom:8px}
