
@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/jewels.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);
}
.contact-hero h1 {
    font-size: 3.7rem;
    margin-bottom: 10px;
    font-style: italic;
}

.contact-hero p {
    font-size: 1.4rem;
    font-style: italic;
}

/* MAIN WRAPPER */
.contact-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT INFO PANEL */
.contact-info {
    flex: 1;
    background: #F0E4E4;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-info h2 {
    color: #1db3ae;
    margin-bottom: 20px;
}

.info-box, .hours-box {
    margin-bottom: 20px;
}

.info-box h3,
.hours-box h3 {
    color: #1db3ae;
    margin-bottom: 5px;
}

.social-icons img {
    width: 35px;
    margin-right: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.trust {
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

/* RIGHT FORM PANEL */
.contact-form {
    flex: 1;
    background: #F0E4E4;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-form h2 {
    color: #1db3ae;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* CTA BUTTON */
.contact-form .Cta {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    color: #1db3ae;
    font-size: 1.2rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-style: italic;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.699);
    transition: transform 0.5s ease, box-shadow 0.2s ease;
}

.contact-form .Cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* NAV FIX */
.contact-nav {
    background: #111;
    padding: 20px;
    position: static;
}

.Nav ul .active {
    color: #21faf3;
    font-weight: bold;
}