html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
}

header img {
    width: 100%;      
    height: auto;     
    display: block;   
}

@media (max-width: 768px) {
    header img {
        height: 150px;
    }
}

nav ul {
    list-style-type: none;   
    margin: 0;
    padding: 0;
    background-color: #a59aa7;  
    display: flex;           
}

nav ul li {
    flex: 1;                 
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;   
}

nav ul li a:hover {
    background-color: #d4c5d5;  
}

body {
  font-family: Arial;
  background: #f4f6f8;
  margin: 0;
  padding-left: 15;
}


.form-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(152, 32, 148, 0.1);
}


form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}


.form-left,
.form-right {
  flex: 1;
  min-width: 150px;
}


label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: hsl(305, 64%, 35%);
}


input,
textarea {
  width: 100%;
  padding: 3px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #b162ab;
  box-shadow: 0 0 5px rgba(196, 143, 201, 0.3);
  outline: none;
}


textarea {
  resize: none;
}


.form-submit {
  width: 100%;
  text-align: center;
}

button {
  background: #653474;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #8a6a93;
}


@media (max-width: 600px) {
  form {
    flex-direction: column;
  }
}

.form-right textarea {
  padding: 3px;
  min-height:200px
}

.site-footer {
    text-align: center;
    padding: 20px 0;
}

.site-footer {
    background-color: #b2a0bc;   
    color: #ffffff;             
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
}

.footer-container p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

body {
  font-family: Arial;
  margin: 0;
  background-color: #f5f5f5;
}

p{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 40px;
}

h1 {
  text-align: center;
}

h1 {
  color: #502466;
}

h3{
  text-align: center;
}

h2{
  text-align: center;
}

h2 {
  color: #61446f;
}

h4 {
  text-align: center;
}

.container {
  display: flex;
  align-items: center; 
  gap: 60px; 
}

img {
  width: 200px;
  height: auto;
}

.img-shift {
  display: block;
  margin-left: 11%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
}

.about-text {
  flex: 1;
  padding: 40px;
}

h2 {
  text-decoration: underline;
}

p {
  text-align: center;
}

.about-image {
  width: 400px;
  height: auto;
}

.profile {
  background-color: #7a4c8f;
  color: white;
}

.profile:hover {
  background-color: #9b6bb0;
}

.profile-section {
  padding: 60px 20px;
  text-align: center;
}

.profile-box {
  max-width: 500px;
  margin: 20px auto;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(152, 32, 148, 0.1);
}

.account {
  background-color: #7a4c8f;
  color: white;
}

.account:hover {
  background-color: #9b6bb0;
}

.product-card {
  background: white;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.product-card img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}
.btn {
  background: #7a4c8f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
}
.btn:hover {
  background: #9b6bb0;
}