* {
    margin: 0;
    padding: 0;
    color: white;
}

header {
    background-color: #dbc065;
    padding: 30px 30px;
}

.Navigation {
    /* how to add gaps */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero_section {
    /* Set a height, often 100vh for a full page hero section */
    height: 60vh;
    background-color: #3a3f2d;
    background-image: url("My images for coding/hero jazz img (1).jpg");
    background-size: cover; /* image covers the whole area */
    background-position: top;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}
.hero-content {
    z-index: 1;
}

.contact {
    background-image: url("My images for coding/download.webp");
    background-size: cover; /* image covers the whole area */
    background-position: top;
}
.hero-content h1 {
    font-family: "Limelight", sans-serif;
    font-size: 50px;
}

.hero-content p {
    background-color: #363368;
    border-radius: 20px;
    border: 4px solid #dbc065;
    padding: 20px;
    font-size: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cb6b42;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #ca5d2e;
    transform: scale(1.1);
}

.dish {
    left: 554px;
    top: 1240px;
}

.section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0; /* first number is top and bottom. second is left and right */
    min-width: 60%;
    gap: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    background-color: #363368;
    padding: 40px;
    margin: 40px;
    text-align: center;
    border-radius: 20px;
    border: 7px solid #dbc065;
    min-width: 60%;
    height: auto;
    color: #dbc065;
}

/* Questions:
how to add space between each section?
how to alighn the cards in the middle

.strip{
  position: fixed;   Keeps the image in the same spot even when scrolling
  left: 0;           Sticks it to the exact left edge of the screen 
  top: 50%; 
  width: 300px;
transform: translateY(-50%);
 z-index controls the stack order 
  z-index: -10;
}
.strip2{
     position: fixed;   Keeps the image in the same spot even when scrolling 
  right: 0;            Sticks it to the exact left edge of the screen 
  top: 50%; 
  width: 300px;
  transform: translateY(-50%) scaleX(-1);
  /* z-index controls the stack order 
  z-index: -10;
}

**/

.Jazzmood {
    font-family: "Limelight", sans-serif;
    font-size: 40px;
    padding: 105px 0 0;
}

.Dish {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60%;
    gap: 6%;
}

.food_description {
    align-content: normal;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 60%;
}
.food_description h2 {
    font-size: 40px;
}

body {  /*effects everything on the page*/
   
    background-color: #634d64;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin: 29;
    padding: 0;
    justify-content: center;
}

.contact_info {
    display: flex;
    gap: 20px;
}

/* Ensure images display side-by-side  animation: spin 15s infinite alternate;
   * 
   * 
   * 
.scroll-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
@keyframes spin{
    from {translate: 0;}
    to {translate: -10%;}
}

.scroll-container img {   
    height: 25vh; 
    margin-right: 10px; 
}
   * */

.Menu {
    font-size: 58px;
    background-color: #dbc065;
}


.Dine {
    background-color: #363368;
    display: flex;
    flex-direction: row;
    align-items: center;
    
    
    gap: 30px;
    align-self: stretch;
    border-top: 15px solid #dbc065;
    border-bottom: 15px solid #dbc065;
    margin: 50px 0;

    font-size: 20px;
}




.interior p {
    font-size: 20px;
    font-style: italic;
}

.interior h2 {
    font-size: 75px;
    font-weight: 400;
}

.interior {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.interior img {
    width: 90%;
    align-self: normal;
    border-radius: 18px;
}

.pics {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);

}


footer {
    background-color: #dbc065;
    padding: 50px;
    text-align: center;
}




/* Laptop media screen */

@media screen and (min-width: 1000px) {
    
    .Dine h1 {
        font-size: 50px;
    }
    .Dine p {
        font-size: 30px;
    }

    .pics {
        display: grid;
        gap: 35px;
    }
    
    .Dine{
        width: 100%;
        
    }
    .interior img {
        width: 100%;
        height: 382px;
        border-radius: 18px;
    }
}


/* Phone media screen */

@media (max-width: 800px) {
    
    
    
    
    .Menu{
        font-size: 40px;
    }

    
    .Dine{
        flex-direction: column;
    }
    
    .Dine h1 {
        font-size: 40px;
    }
    .Dine p {
        font-size: 20px;
    }
}
