@import url(reset.css);
*{box-sizing: border-box;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif}

.body{
    width: 100%;
    background-color: #F0E4E4;
}
.hero {
   width: 100%;
    height: 400px; 
     background-image: url("../Images/shop.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center; 

}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    align-items: center;
    font-style: italic;
    color:#1db3ae;
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom:50px ;
    font-style: italic;
    color: #1db3ae;
}
.Nav {
    width: 100%;
    padding: 20px 40px;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}
.Nav ul {
    display: flex;
    gap: 25px;
}
.Nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}
.Cta {
    display: block;
    margin: 20px auto 0 auto; /* centers it */
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
      background-color: #F0E4E4;
    border-radius: 25px;
    font-style: italic;
     color: #1db3ae;
      box-shadow: 0 8px 10px rgba(0, 0, 0, 0.699);
       transition: transform 0.5s ease, box-shadow 0.2s ease;
}
.hero-content {
    text-align: center;
}
.Nav ul button {
     display: block;
    padding: 4px 10px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
      background-color: #F0E4E4;
    border-radius: 25px;
    font-style: italic;
     color: #1db3ae;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.63);
     transition: transform 0.5s ease, box-shadow 0.2s ease;

}
.Nav ul button:hover {
     transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}
a {
    text-decoration: none;
    color: inherit; 
}
.hero-content {
    color:#1db3ae;
    text-shadow: 0 3px 8px rgba(0,0,0,0.5);}

.Cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.shop-container {
    width: 80%;
    max-width: 700px;
    margin: 60px auto;
    background: #F0E4E4;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.shop-container h1 {
    color: #1db3ae;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.shop-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

/* Form Styling */
.shop-form {
    text-align: left;
}

.shop-form h2 {
    color: #1db3ae;
    margin: 20px 0 10px;
}

.shop-form input,
.shop-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Place Order Button */
.place-order {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    background: #ffffff;
    border: none;
    color: #1db3ae;
    font-size: 1.2rem;
    font-style: italic;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.place-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.35);
}

/* Nav fix */
.shop-nav {
    background: #111;
    padding: 20px;
    position: static;
}