
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav:not('.admin'), output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav:not('.admin'), section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    background-color: whitesmoke;
    margin: 0!important;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {text-decoration: none;}

li {list-style: none; }


ul {padding: 0; margin: 0;}
ul li {padding: 0; margin: 0;}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.legal-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 60px;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.legal-title {
  text-align: center;
  font-size: 2rem;
  color: #2c2c2c;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
  position: relative;
}

.legal-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #c5a46d;
  margin: 15px auto 0;
  border-radius: 2px;
}

.legal-block {
  margin-bottom: 40px;
  border-left: 4px solid #c5a46d;
  padding-left: 20px;
}

.legal-block h2 {
  font-size: 1.2rem;
  color: #b68b40;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-block p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-block a {
  color: #c5a46d;
  text-decoration: none;
  font-weight: 600;
}

.legal-block a:hover {
  text-decoration: underline;
}

.page-mentions #mainNav {
  background-color: rgba(0, 0, 0, 0.5);
}

.footer-minimal {
  background: #f9f9f9;
  text-align: center;
  padding: 40px 20px 20px;
  font-size: 13px;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid rgba(197, 164, 109, 0.3);
  letter-spacing: 0.3px;
}

.footer-minimal a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-minimal a:hover {
  color: #c5a46d;
}

.footer-minimal .dot {
  margin: 0 8px;
  color: #bbb;
}

.footer-minimal::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #c5a46d;
  margin: 0 auto 20px;
  border-radius: 2px;
  opacity: 0.8;
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .modal-content {
    margin: 20% 15px;
    padding: 20px;
    font-size: 0.95rem;
  }
}
