html, body {
    padding: 0;
    margin: 0;
    font-family: sans-serif, 'Bruno Ace SC', 'Uncial Antiqua', 'Fugaz One', 'Alkatra';
    background-color: #2b2b2b;
    color: #EFEFEF;
}

header {
  background: rgba(43,43,43,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

header.shrink {
  padding: 8px 50px;
  background: rgba(30,30,30,0.98);
}

header img {
  height: 64px;   
  width: 208px;   
  overflow: hidden;
  object-fit: cover;
  transition: all 0.3s ease;
}

header.shrink img {
  height: 50px;   
  width: 160px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-btn {
  display: none; 
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #efefef;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #a0765b;
  opacity: 0.05; 
  transition: width 0.6s ease, opacity 0.3s ease 0.05s; 
}

nav a:hover::after {
  width: 100%;
  opacity: 1; 
}

nav a.active.animate::after {
  width: 100%;
  opacity: 1; 
}

.contact {
   background-color: #2b2b2b;
   padding: 60px 20px;
   text-align: center;
	padding-bottom: 30px;
}

.contact h2 {
   text-align: center;
  font-family: 'Fugaz One', sans-serif;
  font-size: 42px;
  margin-bottom: 30px;
}

.quote-text {
  font-family: 'Alkatra', sans-serif;
  color: #EFEFEF; 
	text-align: center;
	padding: 0px;
	margin: 0px;
	transform: translateY(-25px);
}

.quote-link {
  color: #a0765b; /* 5c brown */
  text-decoration: underline;
}

.services-link {
color: #F2E9E4;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #2b2b2b; 
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);  
}


.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}


.form-group label {
  font-size: 16px;
  color: #F2E9E4;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.form-group label:hover {
  color: #E0CBA0; 
}


.form-group input,
.form-group textarea {
  background: transparent;
  border: 2px solid #7a5e47;
  color: #F2E9E4;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Alkatra';
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); 
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #E0CBA0;
  box-shadow: 0 0 8px rgba(224,203,160,0.5), inset 0 1px 3px rgba(0,0,0,0.3);
  outline: none;
  transform: scale(1.02);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C7A582;
  transition: color 0.25s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: #E0CBA0;
}


.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  border: 2px solid #7a5e47;
  padding: 10px;
  border-radius: 8px;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.radio-group:hover {
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.3), 0 0 8px rgba(224,203,160,0.3);
}

.radio-group label {
  cursor: pointer;
  color: #C7A582;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
 font-family: 'Alkatra';
}

.radio-group label:hover,
.radio-group input:focus + label,
.radio-group input:checked + label {
  transform: translateX(4px);
  color: #E0CBA0;
}


.radio-group input[type="radio"] {
  accent-color: #C7A582;
  transform: scale(0.85);
  margin-left: 0;
  transition: transform 0.2s ease;
}

.radio-group input[type="radio"]:hover {
  transform: scale(0.95);
}

.terms-accept {
  margin: 0px;
  padding: 0px;
  font-size: 0.95rem;
  color: #f0f0f0; 
}

.terms-accept a {
  color: #7a5e47;       
  text-decoration: underline;
  font-weight: 500;
  
}

.terms-accept input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1); 
  accent-color: #7a5e47; 
}

button[type="submit"] {
  background: transparent;
  color: #C7A582;
  font-weight: 700;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
font-family: 'Alkatra';
border: 2px solid #7a5e47;
}

button[type="submit"]:hover {
  color: #F2E9E4;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}


button[type="submit"] {
  transform: translateY(0);
  animation: btnFloat 2s ease-in-out infinite;
}

@keyframes btnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.site-footer {
  background-color: #5C4438;
  color: #F5F5F5;
  font-family: sans-serif;
  padding: 40px 20px 5px;
  max-width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #313131;
}

.footer-section a {
  display: block;
  color: #F5F5F5;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
}

.footer-section a:hover {
  color: #2b2b2b;
}

.footer-logo img {
  width: 160px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-social a img {
  width: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #CCCCCC;
}


@media (max-width: 768px) {
   
   nav a {
	  font-size: 16px;
	}
	
	nav {
    position: relative; 
  }

  .nav-links {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
    background-color: #222;
    padding: 0 10px; 
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
	min-width: 150px;
    z-index: 1000;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-links.open {
    max-height: 500px; 
    padding: 10px;     
  }

  .nav-btn {
    display: block;
    background: none;
    border: 2px solid #efefef;
    color: #efefef;
    font-size: 18px;
    padding: 6px 12px;
    cursor: pointer;
	}


}

@media (max-width: 480px) {
  header img {
   width: 50%;
  }
}

