/* Basic reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: calibri, sans-serif;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 20px;
  font-weight: bold;
  background: white;
  color: #d4aa00;
}

.site-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.site-header a {
  color: #d4aa00;
  margin-left: 1rem;
  text-decoration: line;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
}

.site-header a:hover {
  background-color: #d4aa00;
  color: white;
  transform: scale(1.05);
}

/* Hero section */
.hero {
  padding: 4rem 2rem;
  background: #f4f4f4;
}

/* Content */
.content {
  padding: 2rem;
}

.content-with-image {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.text-content {
  flex: 1;
}

.content-image {
  width: 250px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .content-with-image {
    flex-direction: column;
  }
  
  .content-image {
    width: 200px;
    margin: 0 auto;
  }
}

/* Contact Button */
.contact-button {
  display: inline-block;
  border: none;
  background: none;
  text-decoration: none;
  cursor: pointer;
}

.contact-button img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.contact-button:hover img {
  transform: scale(1.1);
  filter: brightness(1.15);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: calibri, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4aa00;
  background-color: #fffef0;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  padding: 0.75rem 2rem;
  background-color: #d4aa00;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #c29a00;
}

/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  background: #eee;
}
