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 {
  display: flex;
  gap: 20px;
}

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

.nav-btn {
  display: none; 
}

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; 
}

.terms-section {
    max-width: 900px;    
    margin: 0 auto;        
    padding: 40px 20px;     
    background-color: #313131; 
    color: #EFEFEF;       
    font-family: 'Alkatra', sans-serif;
    line-height: 1.7;       
}

.terms-section h2 {
    font-family: 'Fugaz One', sans-serif;
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.terms-section h3 {
    font-family: 'Bruno Ace SC', sans-serif;
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #B18568;  
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.terms-section li {
    margin-bottom: 12px;
    font-size: 16px;
}

.terms-section p {
    margin-bottom: 20px;
    font-size: 16px;
}

.terms-section hr {
    border: none;
    border-top: 1px solid #5c4438;
    margin: 35px 0;
    opacity: 0.5;
}

.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%;
  }
}