:root {
  --bg: #071A2B;
  --gold: #D6B76A;
  --light: #E1C892;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial;
  background: var(--bg);
  color: var(--gold);
}

.container {
  max-width: 980px;
  margin: 24px auto;
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
    height: 80px; /* Increase from 56px to 80px */
}


.logo-text strong {
  font-size: 20px;
}

.logo-text .subtext {
  font-size: 12px;
  color: var(--light);
}

/* Navigation */
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav a {
  color: var(--gold);
  text-decoration: none;
}

/* Headings */
h1 {
  margin-top: 24px;
  font-size: 36px;
}

/* Paragraphs */
p {
  max-width: 780px;
  color: #AFA07B;
}

.hero-subtext {
  color: var(--light);
}

/* Boxes */
.box {
  background: #082733;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.box h3 {
  margin-top: 0;
}

.box p {
  color: #AFA07B;
}

/* Gallery thumbnails */
.thumb {
  background: #082733;
  border-radius: 8px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AFA07B;
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
}

/* Forms */
form {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

input, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #081b25;
  color: var(--gold);
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button {
  background: var(--gold);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  border: none;
  width: fit-content;
}

button:hover {
  opacity: 0.9;
}

.required { border:1px solid red }

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 28px;
  padding: 18px 0;
  color: #AFA07B;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 28px; }
  .header { flex-direction: column; align-items: flex-start; }
  .nav { flex-direction: column; gap: 6px; margin-top: 8px; }
  .footer { flex-direction: column; gap: 6px; }
  button { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  .logo-text strong { font-size: 18px; }
  .logo-text .subtext { font-size: 11px; }
}
