@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
  --bg-dark: #080705;
  --bg-sec3: #3E3828;
  --bg-sec5: #201F1E;
  --text: #EEE;
  --muted: #B9AF93;
  --gold: #9B8E66;
  --spacing: 52px;
  --page-width: 1200px;
}

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body { font-family:'Inter',sans-serif; background:var(--bg-dark); color:var(--text); line-height:1.6; }

a { color:var(--gold); text-decoration:none; font-weight:500; }
.btn { background:var(--gold); color:var(--bg-dark); padding:0 20px; border:none; border-radius:4px; cursor:pointer; font-size:1rem; line-height:1.4; transition:transform .2s; height:40px; }
.btn:hover { transform:scale(1.05); }

.content-width { max-width:var(--page-width); margin:0 auto; padding:0 16px; }
.full-width { width:100%; }

.top-nav {
  position:fixed; top:0; width:100%; padding:var(--spacing);
  display:flex; justify-content:space-between; align-items:center;
  z-index:1000; transition:background .4s,box-shadow .4s;
}
.top-nav.transparent { background:transparent; }
.top-nav.solid { background:var(--bg-dark); box-shadow:0 2px 10px rgba(0,0,0,0.7); }
.logo { height:40px; }
.nav-links { display:flex; gap:var(--spacing); }
.nav-links a { font-size:1rem; }

.hero-section { position:relative; background:var(--bg-dark); }
.carousel {
  width:100%; height:90vh; position:relative; overflow:hidden;
}
.slide {
  position:absolute; top:0; left:100%; width:100%; height:100%;
  opacity:0; transition:left 1.2s ease,opacity 1.2s ease;
}
.slide.active { left:0; opacity:1; }
.slide img {
  width:100%; height:100%; object-fit:cover;
  filter: brightness(0.8) contrast(1.1) sepia(0.05) hue-rotate(-8deg);
}
.controls {
  position:absolute; bottom:var(--spacing); width:100%;
  display:flex; justify-content:center; gap:var(--spacing);
}
.controls button {
  background:rgba(0,0,0,0.5); border:none; color:var(--text);
  font-size:1.5rem; padding:10px 16px; border-radius:4px; cursor:pointer;
}
.controls button:hover { background:rgba(0,0,0,0.8); }

.hero-content {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:100%; max-width:var(--page-width); padding:0 16px;
}
.hero-content h1 { font-size:2.5rem; margin-bottom:16px; }
.hero-content p { font-size:1.2rem; margin-bottom:24px; }

.sec {
  width: 100%;
  padding: calc(var(--spacing) * 1.9) 0; /* More vertical space */
}
.sec-2 { background:var(--bg-dark); }
.sec-3 { background:var(--bg-sec3); }
.sec-4 { background:var(--bg-dark); }
.sec-5 { background:var(--bg-sec5); }
.sec-footer { background:var(--bg-dark); padding:var(--spacing) 0; }
.sec-5 h2 { font-size:2.5rem; margin-bottom:16px; font-weight: 100;}

.row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal width columns */
  align-items: start;
  gap: var(--spacing);
}

.cards { margin-top:var(--spacing); display:grid; gap:var(--spacing); }
.row-2.cards { grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); }

.card { text-align:left; }
.card img { width:48px; margin-bottom:16px; }
.card h3 { font-size:1.25rem; margin-bottom:8px; }
.card p { color:var(--muted); margin-bottom:12px; }
.card svg { height:48px; width:48px; margin-bottom:16px;}

.sec-4 blockquote {
  font-size:1.3rem; font-style:italic; 
  max-width:800px; margin:0 auto; color:var(--text); padding:0 16px;
}

/* Form Styling */
input[type="email"],
textarea {
  padding:12px 16px; border:none; border-radius:4px;
  background:var(--bg-dark); color:var(--text);
  font-size:1rem; line-height:1.4; width:100%; box-sizing:border-box;
}
input:focus, textarea:focus { outline:2px solid var(--gold); }
textarea { resize:vertical; min-height:120px; }

.contact-form label {
  display:flex; flex-direction:column; margin-bottom:var(--spacing);
}
.contact-form button { height:40px; width:max-content; align-self:flex-start; }

.footer-left {
  display:grid; grid-template-columns:1fr auto; align-items:center;
  gap:var(--spacing); padding-bottom:var(--spacing);
}
.footer-left input, .btn.small { height:40px; }
.footer-left form { display:flex; align-items:center; gap:8px; }

.footer-logo { height:36px; }
footer p.content-width { margin:16px auto 0; color:var(--muted); font-size:0.9rem; }

@media(max-width:768px){
  .nav-links { gap:16px; }
  .row-1 { grid-template-columns:1fr; }
  .hero-content { max-width:90%; }
  .footer-left { display:flex; flex-direction:column; align-items:flex-start; }
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--page-width);
  padding: 0 16px;
  text-align: left;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2; /* Tightens line spacing */
}

.hero-content-inner {
  width: 45%;
  max-width: 600px;
}
.contact-form p {
  margin-bottom: 32px; /* or use var(--spacing) */
}
