body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url(https://themewagon.github.io/delfood/images/body-bg.jpg);
    color: black;
    font-family: Arial, sans-serif;
}

.hero{
    padding-top: 10% !important;

    color: black;
}

h1, h2, h3, h4, h5, h6,
p, a, li, span, div {
    font-family: inherit; 
}


.icon-square {
    background-color: white;
}

.icon-link{
    color: black;
    text-decoration: none;
}

.bolder-outline {
    border-width: 2px; 
}


header {
    position: fixed; 
    width: 100%; 
    z-index: 1000; 
    margin-bottom: 25px;
    background-color: white; 
    
}

.nav-link span.animated-text {
    font-size: 18px;
}


.nav-link {
    font-size: 18px;
    color: white;
    position: relative;
    text-decoration: none;
}
.nav-link:hover {
    color: #ffc107; 
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; 
    width: 0%;
    height: 2px;
    background-color: #ffc107; 
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}


.container {
    padding: 0;
}

.animated-text {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    transition: color 0.3s ease;
    text-align: center;
}

.nav-link {
    color: black !important;
}

.hero-image img {
    max-width: 500px; 
    width: 100%; 
    height: auto; 
    border-radius: 50% / 50%; 
}

.features .feature h3 {
    position: relative;
    text-decoration: none;
  }
  
  .features .feature h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; 
    width: 0%;
    height: 2px;
    background-color: #ffc107; 
    transition: width 0.3s ease; 
  }
  
  .features .feature h3:hover::after {
    width: 100%; 
  }

.feature {
    padding: 20px;
    text-align: center;
    color: black; 
    font-weight: bold;
}

.feature-icon {
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    overflow: hidden; 
  }

  .feature-icon img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
  }
  
  .download-box {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
  }
  
  .download-image {
    margin-bottom: 20px;
  }
  
  .download-image img {
    max-width: 100%;
  }
  
  .download-box h2 {
    color: black;
    margin-bottom: 20px;
  }
  
  .download-box .download-animated-text {
    margin-bottom: 20px;
  }
  
  .download-box a img {
    max-width: 200px;
    margin-bottom: 10px;
  }
  

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-animation {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;

}

.card {
    width: 80px;
    border-radius: .75rem;
    background-size:cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28, -0.03, 0, .99);
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}

.card > .row{
    color: white;
    display: flex;
    flex-wrap: nowrap;
}

.card > .row > .icon {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.description p {
    color: #ffc107;
    padding-top: 5px;
}

.description h4 {
    text-transform: uppercase;
}

input{
    display: none;
}

input:checked + label {
    width: 600px;
}

input:check + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"] {
    background-image: url("images/burger.jpeg");
}
.card[for="c2"] {
    background-image: url("images/supremepizza.jpeg");
}
.card[for="c3"] {
    background-image: url("images/summersalad.jpeg");
}
.card[for="c4"] {
    background-image: url("images/shrimp-soup.jpeg");
}

.centered-button {
    text-align: center;
    margin-top: 50px;
}

