body{
    font-family: 'Padauk';
    /*font-size:x-large;*/
}
header {
    display: flex;
    justify-content: center;
    height: 500px;
    padding: 0;
    margin: 0;
    margin-top: 65px;
   background-image: 
    linear-gradient(to bottom, rgba(243, 239, 232, 0.4) 70%, var(--main-color) 100%), 
    url('../img/header-img-index.jpg');
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.logo {
    margin-right: 30px;
}

.logo img {
    height: 60px;
}

.header-title {
    color: #F9F8FD;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 12px #3a2c1a;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    background-color: transparent;
    border-radius: 15px;
    box-shadow: 0 4px 32px rgba(60, 40, 18, 0.07);
}
h1 {
    font-family: 'TrajanPro', serif;
}

section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}
section#navigation h2 {
    padding-left: 10px;
}
section article {
    display: flex;
    justify-content:center;
    flex-direction: column;    
    gap: 10px;
    width: 300px;
    margin-top: 30px;
    margin-bottom: 40px;
    padding : 0 10 0 10;
    background-color: var(--page-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
}
section article:hover{
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

section article img {
    height: 150px;
    align-items: flex-start;
    border-radius: 20px 20px 0 0;
}
section article a {
    text-decoration: none;
    padding-left: 20px;
    padding-bottom: 10px;
    color :#3a2c1a
}
section article p {
    padding: 10px;
}
section article h2{
    font-weight: 600;
}
hr{
    background-color: #b68a44;
    border: 1px solid #b68a44;
}
section#about {
    display: inherit;
    text-align: center;
    justify-content: center;
    margin: auto;
    padding-bottom: 40px;
}
section#about h1 {
    margin: 30px 0 30px 0;
    font-size: 1.8rem;
}
section#about p {
    width: 60%;
        margin: auto;
}
section#lefansite {
     display: inherit;
    text-align: center;
    justify-content: center;
    margin: auto; 
    padding-bottom: 50px;  
}
section#lefansite h1 {
    margin: 30px 0 30px 0;
    font-size: 1.8rem;
}
div#fansite {
display: flex;
gap: 150px;
justify-content: center;
}

div#fansite article {
display: flex;
flex-direction: column;
background-color: var(--page-bg);
border: 1px solid var(--border);
box-shadow: var(--shadow);
transition: box-shadow .2s ease, transform .2s ease;
padding-bottom: 20px;
}
div#fansite article:hover{
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

div#fansite article img {
justify-content: center;
border-radius: 100px;
}
.lesfans {
    display: flex;
    justify-content: space-evenly;
    margin: 20px;
    align-items: center;
}
.lesfans p {
text-align: center;
font-weight: bold;
font-size: 1.2rem;
}
@font-face {
    font-family: 'Padauk';
    src: url('../font/Padauk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TrajanPro';
    src: url('../font/TrajanPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
#bromance {
    display: flex;
    width: 80%;
}
#bromance img {
    width: 40%;
}
#bromance p {
    margin: 50px;
    font-weight: bold;
    align-items: center;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 90px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
button#myBtn{
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px 10px 10px 10px;
    height: 50px;
    border-radius: 20px;
    font-family: 'TrajanPro';
}
button#myBtn:hover{
background-color: #3a2c1a;
color: #F9F8FD;
}
footer a {
    text-decoration: none;
    color: var(--secondary-color);
}
.flag {
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
}
.burger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #3a2c1a;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
