@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Roboto:wght@300;400;500&display=swap");

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

body {
  background-color: #e6e8e3; 
  color: #2d2d2d; 
  font-family: "Roboto", sans-serif;
  min-width: 100%;
  overflow-x: auto;
}

.container {
  width: 100%;
  margin: 0 auto;
  background-color: #f8f9f5; 
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

header {
  background-color: #1b4332; 
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #d4af37; 
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #f8f9f5; 
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo span {
  color: #d4af37; 
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #f8f9f5;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  padding-bottom: 5px;
}

nav a:hover,
nav a.active {
  color: #d4af37;
  border-bottom: 1px solid #d4af37;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #d4af37; 
  color: #1b4332; 
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #3a5a40; 
  color: #f8f9f5;
}

.btn-outline {
  background: transparent;
  border: 2px solid #d4af37;
  color: #1b4332;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 15px;
  display: inline-block;
  transition: all 0.3s;
}

header .btn-outline {
  color: #d4af37;
  border-color: #d4af37;
}
header .btn-outline:hover {
  background-color: #d4af37;
  color: #1b4332;
}

.btn-outline:hover {
  background: #d4af37;
  color: #1b4332;
}

footer {
  background-color: #1b4332;
  text-align: center;
  padding: 30px;
  border-top: 1px solid #3a5a40;
  margin-top: 50px;
}

footer p {
  color: #f8f9f5;
  font-size: 14px;
  opacity: 0.8;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  color: #1b4332;
}

h1 {
  font-size: 48px;
  color: #f8f9f5;
}
h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.page-section {
  padding: 40px;
}
