@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

header {
  background: url('images/broll.jpg') center/cover no-repeat;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  padding: 4rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
}

.fancy {
  font-family: 'Playfair Display', serif;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #1f3d2b;
}

ul {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

a {
  color: #1f3d2b;
  text-decoration: underline;
}

.quote-btn {
  display: inline-block;
  background-color: #1f3d2b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 600;
}

.quote-btn:hover {
  background-color: #295237;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile {
  width: 200px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
  margin-left: 3%;
  float: right;
}

footer {
  text-align: center;
  background: #eaeaea;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}



.action {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  margin-top: 1rem;
  margin-right: 3%;
  float:left;
}
