body{
    background-color: #D2B48C;
}

html {
    scroll-behavior: smooth;
}

.image-container{
    width: 100%;
    overflow: hidden;
}

.text-overlay {
    position: absolute;
    top: 50%; 
    left: 50%;
    text-align: end;
    color: #D2B48C;
    font-size: 80px;
    transition: 0.4s ease;
  }

  .text-overlay:hover{
    transform: translateY(-15px) translateX(10px); /*Move diagonally up-right*/
    cursor: pointer;
    color: #e5e3ab;
  }

.text-overlay::after {
    content: ''; /*empty element*/
    position: absolute;
    bottom: -5px; /*position underline under text*/
    left: 0px;
    width: 0%; /*at first underline is 0% wide*/
    height: 2px; /*thickness underline*/
    background-color: #e5e3ab; 
    transition: 0.3s ease; /* Smooth transition of width */
}

.text-overlay:hover::after {
    width: 150%; /*underline expands to 150%*/
  }

.navbar {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(87, 25, 18);
    position: fixed; /*to make navbar stick while scrolling*/
    top: 0; /*so it sticks to the top*/
    z-index: 1000; /*makes sure it's above the other content*/
    width: 100%;
    box-shadow: 0 4px 6px rgba(28, 25, 25, 0.4);
}

nav ul{
    display: flex;
    gap: 10px;
    list-style-type: none;
    font-size: 1.5rem;
    justify-content: center;
}

nav ul li a{
    text-decoration: none;
    color: #D2B48C;
    text-align: center;
    padding: 10px 15px;
}

nav ul li a:hover{
    color:#e5e3ab;
    text-decoration: underline;
}

h1{
    text-align: center;
    padding: 20px;
    padding-top: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}

h2{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 20px;
}


.container1{
    text-align: center;
    color: #3b3121;
    padding-bottom: 2rem;
}

.info-box{
    font-family: Arial, Helvetica, sans-serif;
    width: 70%;
    margin: 0 auto; /*centers the container*/
    font-size: 1.2rem;
    text-align: justify; /*text in blocksatz*/
    color: #3b3121;
}

.container2{
    padding: 3rem;
    padding-top: 2rem;
}

.container-home{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    text-align: justify;
}

.column{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 15px;
    background-color: #ccaa7d;
    transition: 0.3s ease; /*Smooth transition*/
    overflow: hidden;
}

.column:hover{
    transform: scale(1.05); /*5% bigger*/
    box-shadow: 0px 10px 20px rgba(91, 4, 4, 0.284);
    background-color: rgb(213, 193, 155);
}

.footer{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(87, 25, 18);
    color:#D2B48C;
    text-align: center;
    padding: 20px;
    margin-top: auto; 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* Space between grid items */
  }

.social-links, a{
    text-decoration: none;
    color:#D2B48C;
    padding: 20px;
}

.social-links a:hover {
    color:#e5e3ab;
}

.up-button{
    padding: 20px;
}

/*gallery site*/
.slides {
    display: none;
    width: 100%;
    height: auto;
    padding-bottom: 5rem;
  }

  .slider {
    max-width: 50vw;
    margin: auto;
    overflow: hidden;
    transition: 0.3s ease;
  }

  .slider:hover{
    transform: scale(1.05); /*5% bigger*/
}

/*Contact site*/
 .contact {
    font-family: Arial, Helvetica, sans-serif;
    flex: 2;
    background-color: #ba9360;
    color: white;
    padding: 20px;
    text-align: start;
    font-weight: bold;
}

label {
    color: #3b3121;
    display: block;
    margin-bottom: 20px;
}

input[type="text"] {
    width: 30vw;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 20px;
    margin-bottom: 20px;
}

textarea{
    width: 50vw;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 20px;
}

.btn {
    background-color:rgb(87, 25, 18);
    color: #D2B48C;
    font-size: 0.7rem;
    padding: 0.4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 10vw;
}

.btn:hover{
    color:#e5e3ab;
    background-color: rgb(111, 41, 33);  
}

/*music site*/
.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card{
    background-color: #ba9360;
    border-radius: 5px;
    overflow: hidden;
    max-width: 30vw;
    margin: 20px;
    transition: 0.3s ease;
}

.card:hover{
    background-color:rgb(179, 129, 78);
}

.card img{
    max-width: 100%;
    height: auto;
}

.card-content{
    font-family: Arial, Helvetica, sans-serif;
    margin: 3rem;
}

.card-content h3{
    text-align: center;
}

.muted-text {
    font-size: 14px;
    opacity: 0.5;
  }

.card:hover{
    transform: scale(1.03); /*3% bigger*/
    box-shadow: 0px 10px 20px rgba(91, 4, 4, 0.284);
}

.audiogroesse{
    width: 100%;
}

/* Responsive for Tablets and Smaller Screens */
@media (max-width: 768px) {

    .navbar{
        padding: 5px;
    }

    .navbar ul {
        flex-direction: row;
        align-items: center;
        font-size: 1rem;
      }
    
      .navbar li {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 2px 0px;
      }
    
      .image-container {
        display: none;
      }
    
      .text-overlay {
        display: none;
      }

      .container1 {
        flex-direction: column; 
        padding: 10px;
      }
    
      .info-box {
        padding: 15px; 
      }

      .container-home {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 100%;
        padding: 15px;
    }

    /*music site*/

    .card-container{
        flex-direction: column;
        align-content: center;
    }

    .card-content{
        margin: 2rem;
    }

    .card{
        max-width: 80vw;
    }

    .footer-content{
        grid-template-columns: 1fr;
    }

    }
