/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
/*.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none;  Prevent inheritance from `body`
  background-color: #fff;
  border: .05rem solid #fff;
} */

.btn-secondary{
  color: #fff;
  text-shadow: none;
  background-color: #1f70a6;
  border: .05rem solid #1f70a6;
}

.btn-secondary:hover, .btn-secondary:focus {
  color: #fff;
  text-shadow: none;
  background-color: #3a597a;
  border: .05rem solid #3a597a;
}

.lead {
  font-weight: normal;
}

/*
 * Base structure
 */
 @font-face {
    font-family: 'GoudyTrajan';
    src: url('../../../assets/font/GoudyTrajan-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


body, html{
  height: 100%;
  color:#fff;
  margin: 0;
  padding: 0;
}
body {
  background-size: auto; /* Ensures the image covers the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image */
  background-image: url('../../../assets/images/terme.jpg')
}


body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); 
  z-index: -1; 
}


/*.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}*/


.cover-container {
  max-width: 42em;
}


/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  /*font-weight: 700;*/
  color: rgba(255, 255, 255, 1);
  background-color: transparent;
  border-bottom: .15rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}

/* Usa il font nel tuo CSS */
.cover-heading {
    font-family: 'GoudyTrajan', sans-serif;
}

@media screen and (max-width: 992px) {
	.cover-heading {
		font-size: 2.2rem;
	}
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, 0.9);
}