:root {
  --bg-page: #fefcf7;
  --text-default: #1a1a1a;
  --accent: #c8a165;
  --accent-hover: #d4af37;
  --border: #e0d8c5;
  --block-bg: #fffdf5;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fefcf7;
  color: #1a1a1a;
  scroll-behavior: smooth;
  padding-top: 60px; 
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fefcf7;
  padding: 0.6rem 3rem; 
  border-bottom: 1px solid #e0d8c5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand, .nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
}

.navbar-brand:hover, .nav-link:hover {
  color: #c8a165 !important;
}

#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  color: #fff;
  overflow: hidden;
}

#hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 2rem;
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
}

#hero .subtitle {
  font-size: 1.8rem;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

.box {
  background: var(--block-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 60px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center; 
}
.box h3 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.box p, .box li {
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact {
  text-align: center;
  background: var(--block-bg);
  padding: 60px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.btn-cta {
  background: var(--accent);
  color: var(--text-default);
  padding: 1rem 2.6rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.small-divider {
  width: 120px;
  height: 5px;
  background: var(--accent);
  margin: 12px auto 24px;
  border-radius: 3px;
}

.site-footer {
  margin-top: 50px;
  padding: 25px 3rem;
  text-align: center;
  color: var(--text-default);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.hidden { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .row .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
  #hero h1 { font-size: 3rem; }
  #hero .subtitle { font-size: 1.3rem; }
  .navbar { padding: 0.8rem 1.5rem; }
  .site-footer { padding: 20px 1.5rem; }
}
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  color: #c8a165 !important; 
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c8a165;
  border-radius: 2px;
}
.active-glow {
  box-shadow: 0 0 25px 5px gold;
  border-color: gold;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}
.arguments {
  background-color: #C7A17A; 
  color: #111; 
  padding: 80px 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.arguments h3 {
  color: #111; 
  font-size: 2rem;
  margin-bottom: 1rem;
}

.arguments ul li {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #111; 
}
.arguments ul {
  list-style: none; 
  padding: 0;       
  margin: 0;        
}

