body {
    background-color: #feeddd;
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.white-line {
   border: 0;
   height: 1px;
   background-color: white;
   margin: 1em 0;
   width: 100%;
}

/* header base */
header {
    background-image: url("../images/header.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    color: #feeddd;
    padding: 1em 0;
    box-sizing: border-box;
  }
  
  header .top-menu {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1em;
    z-index: 1000;
    box-sizing: border-box;
    top: 0;
    right: 0;
  }
  
  .nav-links {
    display: flex;
    gap: 2em;
  }
  
  header .nav-links a {
    text-decoration: none;
    color: #ffff;
    font-weight: bold;
    font-size: 1.4em;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }
  
  header img {
    height: 200px;
    width: 400px;
    margin: 1em auto;
    display: block;
    max-width: 100%;
  }
  
  header h1 {
    text-align: center;
    font-size: 3em;
    margin: 0.5em 0;
    padding: 0 1em;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-right: 1rem;
  }
  
  .hamburger span {
    width: 2rem;
    height: 0.25rem;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
    box-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
      position: fixed;
      top: 1rem;
    }
  
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2em;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    header img {
      height: auto;
      width: 100%;
      max-width: 300px;
    }
  
    header h1 {
      font-size: 2em;
    }

    header .top-menu {
        padding: 0;
    }
  }


/* footer base */
footer {
    background-color: #3d1500;
    width: auto;
    height: auto;
    padding: 1em 0;
    margin-top: 1em;
 }
 
 footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
 }
 
 /* Menú Principal */
 .bottom-menu {
    text-align: center;
 }
 
 .bottom-menu > div {
    display: flex;
    gap: 2em;
 }
 
 .bottom-menu a {
    text-decoration: none;
    color: #feeddd;
    font-weight: bold;
    font-size: 1.4em;
    padding: 0.3em;
 }
 
 /* Email */
 footer h3 a {
    color: #feeddd;
    text-decoration: none;
    font-size: 1.3em;
 }
 
 /* Íconos de redes sociales */
 .contacts > div {
    display: flex;
    gap: 2em;
    justify-content: center;
 }
 
 .img-icon {
    height: 2.5em;
    width: 2.5em;
    transition: transform 0.3s ease;
 }
 
 .contacts a:hover .img-icon {
    transform: translateY(-3px);
 }
 
 /* Logo */
 footer img {
    height: 100px;
    width: 200px;
    display: block;
 }
 
 /* Texto final */
 footer h2, 
 footer h3 {
    color: #feeddd;
    text-align: center;
    margin: 0.5em 0;
 }

 .log{
    font-size: 1.5em;
    font-weight: bold;
    color: #feeddd;
    text-decoration: none;
 }

 .by h3 {
    font-weight: 500;
    font-size: 1.3em;
    color: #feeddd;
 }

 .by > .mail{
    font-size: 1.1em;
    font-weight: 500;
    color: #feeddd; 
 }
 
 /* Responsive */
 @media (max-width: 768px) {
    .bottom-menu > div {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }
 
    footer {
        padding: 2em 1em;
    }
 }

/* divider base */
.divider-1 {
    color: #3d1500;
    text-align: left;
    position: relative;
    display: inline-block;
    padding: 2px;
}

.divider-1::after {
    content: ""; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 100%; 
    height: 4px; 
    background-color: #3d1500; 
    border-radius: 2px;
}

.content-divider-2 {
    display: flex;
}

.divider-2 {
    color: #3d1500;
    text-align: right;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    padding: 2px;
    margin-bottom: 3px;
}

.divider-2::after {
    content: ""; 
    position: absolute;
    bottom: -5px; 
    left: 0; 
    width: 100%; 
    height: 4px; 
    background-color: #3d1500; 
    border-radius: 2px;
}
