/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Body and Fonts */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.8;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

/* Header Styling */
.header {
  background-image: url('https://images.unsplash.com/photo-1527483262650-326a88098b08?auto=format&q=80&fit=crop&w=1500'); /* Placeholder image */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.header .subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Section Styling */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
}

.property-details {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.property-details h2 {
  font-size: 2rem;
}

.property-details ul {
  list-style-type: none;
  margin-top: 20px;
}

.property-details ul li {
  margin: 10px 0;
}

/* VRBO Section */
.vrbo-section {
  text-align: center;
  padding: 40px 20px;
}

.vrbo-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.vrbo-section iframe {
  border-radius: 5px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  color: white;
  background: #007bff;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #0056b3;
}

/* Footer Styling */
.footer {
  background: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer a {
  color: #1e90ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
