

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #96C7D9;
  color: #333;
}

header {
  background-color: #B66692;
  color: white;
  padding: .01rem;
  text-align: center;
}

nav {
  background-color: #C6C6E8;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.hero {
  padding: 60px;
  text-align: center;
  background-color: #552;
  color: white;
}

.section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height:100px auto;
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  
  display: inline-block; /* Ensures button is shown */
  pointer-events: auto;  /* Allows button to be clickable */
  padding: 20px 30px;
  font-size: 30px;
  background-color: pink;
  color: blue;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
nav2 {
  background-color: #C6C6E8;
  background: url("teapot.jpg") ;
  background-repeat: repeat;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
}
button1 { padding: 15px 30px;
  font-size: 30px;
  background-color: brown;
  color: white;
  border: none;
  cursor: pointer;
  
}
.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}

