
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #AD6178;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  color: #2c3e50;
  margin: 20px 0 30px;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 10px;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #3498db;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #444;
  transition: all 0.3s;
}

.back-link:hover {
  background-color: #e0e0e0;
  transform: translateX(-3px);
}

#field-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.field {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.field:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.field h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.field p {
  margin: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.field a {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background-color: #3498db;
  color: white;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.field a:hover {
  background-color: #2980b9;
}

.field p:nth-of-type(2) {
  font-weight: bold;
  color: #e74c3c;
}

@media (max-width: 768px) {
  #field-list {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 1.8rem;
  }
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}

.field-card {
background: white;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
margin-bottom: 30px;
display: flex;
flex-direction: column;
}

.field-image {
height: 300px;
background-size: cover;
background-position: center;
}

.field-content {
padding: 25px;
}

.field-content h2 {
color: #2c3e50;
margin-bottom: 15px;
font-size: 1.8rem;
}

.field-meta {
margin-bottom: 15px;
}

.field-meta p {
margin: 8px 0;
display: flex;
align-items: center;
gap: 8px;
}

.price {
color: #e74c3c;
font-weight: bold;
font-size: 1.1rem;
}

.amenities {
margin-top: 20px;
}

.amenities h4 {
margin-bottom: 10px;
color: #2c3e50;
display: flex;
align-items: center;
gap: 8px;
}

.amenities ul {
list-style: none;
padding-left: 5px;
}

.amenities li {
margin: 8px 0;
display: flex;
align-items: center;
gap: 8px;
}

.booking-section {
background: white;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 25px;
}

.booking-form h3 {
color: #2c3e50;
text-align: center;
margin-bottom: 20px;
font-size: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
color: #555;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
}

.form-group input {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 1rem;
transition: all 0.3s;
}

.form-group input:focus {
border-color: #3498db;
outline: none;
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.submit-btn {
width: 100%;
padding: 14px;
background: linear-gradient(135deg, #3498db, #2980b9);
color: white;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
margin-top: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.submit-btn:hover {
background: linear-gradient(135deg, #2980b9, #3498db);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.result-message {
margin-top: 25px;
}

.success-message {
background: #e8f7ee;
border-left: 4px solid #2ecc71;
border-radius: 4px;
padding: 15px;
color: #27ae60;
display: flex;
gap: 15px;
}

.success-message i {
font-size: 1.5rem;
margin-top: 3px;
}

.success-message h4 {
margin-bottom: 8px;
}

.error {
color: #e74c3c;
text-align: center;
padding: 20px;
}
@media (max-width: 768px) {
.field-card {
  flex-direction: column;
}

.field-image {
  height: 200px;
}
}