/* ========= GLOBAL BASE ========= */
:root {
  --primary-dark: #1A1A1A;
  --gold-main: #C6A75E;
  --gold-light: #E2C27A;
  --gold-dark: #A88C42;
  --bg-main: #F5F5F5;
  --bg-alt: #EAEAEA;
  --text-primary: #1A1A1A;
  --text-secondary: #777777;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #F5F5F5;
  color: #1A1A1A;
  line-height: 1.6;
}

img { max-width: 100%; border-radius: 6px; }

.hidden { display: none !important; }

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========= HEADER ========= */
.header {
  background: #C6A75E;
  color: #FFFFFF;
  padding: 26px 0;
  text-align: center;
}

.logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.brand { 
  margin: 0; 
  font-size: 24px; 
}

.tag { 
  margin: 6px 0 0; 
  color: #777777;
  font-size: 14px; 
}

/* ========= NAVIGATION ========= */
.nav { background: #1A1A1A; }

.navrow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.nav a:not(.btn),
.dropbtn {
  color: #C6A75E;
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}

.nav a:not(.btn):hover {
  color: #C6A75E;
}

.nav a.active {
  color: #C6A75E;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  background: #1A1A1A;
  min-width: 200px;
  border: 1px solid #777777;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px 12px;
  color: #777777;
  text-decoration: none;
}

.dropdown-content a:hover { 
  background: #EAEAEA;
  color: #C6A75E;
}

.dropdown:hover .dropdown-content { display: block; }

.dropdown-content a strong,
.dropdown-content a.limited-heading {
  color: #C6A75E !important;
  font-weight: 700;
}

.spacer { flex: 1; }

/* ========= BUTTONS ========= */
.btn {
  background: #FFFFFF;
  color: #1A1A1A !important;
  padding: 8px 14px;          
  border-radius: 6px;
  border: 1px solid #EAEAEA;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
}

.btn:hover { background: #EAEAEA; }

.btn-primary {
  background-color: #C6A75E;
  color: #FFFFFF !important;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #E2C27A;
}

.btn-ghost {
  background: transparent;
  color: #C6A75E !important;
  border: 1px solid #C6A75E;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.btn-ghost:hover {
  background: rgba(198, 167, 94, 0.1);
}

/* ========= GLOBAL LAYOUT / CARDS ========= */
main { padding: 28px 0; }

.card {
  background: #FFFFFF;
  padding: 26px 20px;
  margin: 18px auto;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
}

h2 {
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EAEAEA;
  font-size: 18px;
}

.muted { 
  color: #777777; 
  font-size: 14px; 
}

.card a {
  color: #1A1A1A;
  text-decoration: none;
  border-bottom: 1px dotted #777777;
}

.card a:hover {
  color: #C6A75E;
  border-bottom-color: #C6A75E;
}

/* ========= FOOTER ========= */
.footer {
  background: #1A1A1A;
  color: #777777;
  text-align: center;
  padding: 18px 0;
  font-size: 13px;
}

.footer-image {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  width: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ========= IMAGE CLASSES ========= */
.centered-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.home-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ========= FORM ELEMENTS ========= */
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ========= UTILITY CLASSES ========= */
.text-gold { color: #C6A75E; }
.bg-gold { background-color: #C6A75E; }
.border-gold { border-color: #C6A75E; }

/* ========= SERVICE PAGE IMAGES ========= */
.service-media img {
  width: 100%;
  max-width: 400px;  /* Limits how wide they can get */
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 15px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* For the lock image at the bottom */
#limited img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 20px auto;
}

.about-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px;    /* Adjust this number */
  object-fit: contain;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

.contact-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
 

.contact-card {
  text-align: left;
}

.contact-card ul {
  display: table;  /* Makes the list shrink to fit content */
  margin: 0 auto;  /* Centers the whole list block */
  padding-left: 0;
  text-align: left;  /* Keeps text left-aligned within */
}

.contact-card ul li {
  text-align: left;  /* Each item left-aligned */
  list-style-position: outside;  /* Bullets outside */
  margin-left: 20px;  /* Space for bullets */
}

.contact-image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}

.contact-card p.muted:last-of-type {
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #C6A75E;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #A88C42;
  transform: scale(1.05);
}