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

body {
  font-family: 'Karla', sans-serif;
  background: #fff8f1;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Layout Container */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  max-height: 50px;
}

nav {
  float: right;
}

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

nav a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d67b4e;
}

/* Hero */
.hero {
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 140px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background: #d67b4e;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b05f3d;
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* Subscribe */
.subscribe input[type="email"] {
  padding: 10px;
  width: 300px;
  max-width: 80%;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.subscribe button {
  padding: 10px 20px;
  background-color: #d67b4e;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe button:hover {
  background-color: #b05f3d;
}

/* Footer */
footer {
  text-align: center;
  background: #fff3e5;
  padding: 40px 0;
  font-size: 14px;
  color: #666;
}
