/*Classes*/
body {
      font-family: Helvetica, Sans-Serif;
      color: #444444;
      font-size: 9pt;
      background-color: #FAFAFA;
}

.heading{
  color: #647AA3;
  font-size: 25px;
  padding-top: 25px;
  padding-bottom: 70px;
  text-align: center;
}

.main-text{
    font-family: Helvetica, Sans-Serif;
    font-size: 22px;
    text-align:center;
    max-width: 800px;
    margin: 0 auto;
}

.button {
  display: inline-block;
  background-color:#eaa339;
  border: 1px solid transparent;
  color: #292424;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  max-height: 30px;
  transition: border-color 0.3s ease;
}

.button:hover {
    border-color: #07004D ;
}


.top-bar {
  background-color: #07004D;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.navigation ul {                      /*targets ul element inside an element with the class .logo */
  list-style: none;                   /* removes teh default bullet points */
  display: flex;                      /*makes the <ul> a flex container, which aligns its child items (the <li> elements) in a row by default*/
  gap: 20px;
}

.navigation ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.navigation ul li a:hover {
  color: #EAB464;
}


.hyperlink{
    font-size: 15px
    padding-bottom: 30px;
}


.shoe-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}


.shoe {
    width: 350px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.shoe-image img{            /*selector targets <img> elements that are children of any element with the class images. lets use div on all*/
    width: 400px;          /* Sets a fixed width */
    height: 270px;      /* Sets fixed height */
    max-width: 100%;    /* Ensures the image doesn't exceed the container width */
    object-fit: cover;  /* Crops image to fit, if needed */
    border-radius: 4px;
 }

.shoe-name {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 5px;

}

.shoe-price {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.shoe-size{
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.request-container{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.request-shoe-styling{
    text-align: center;
    width: 500px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);


}


/*Identifiers*/
#callout{
  background-color: #07004D;
  color: white  ;
  padding: 40px;
  text-align: center;

}

#request-spiel{
    font-size:20px
}


/*Media queries for adaptability to different screen sizes*/
@media (min-width: 768px) {
    .main-content {
        flex-direction: row;
    }

    .section {
        flex: 1 1 45%;
    }

@media (min-width: 768px) {
    /* On larger screens, display images side by side */
    .section .responsive-image {
        flex: 1 1 45%; /* Take up 45% of the container width */
    }








