/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #990000;
  color: #990000;
  line-height: 1.6;
  font-size: 16px;
  padding-top: 80px;
}

/* === HEADER & NAV === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #990000;
  border-bottom: 1px solid #eaeaea;
  padding: 20px 40px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #a27ef2; /* accent color */
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* === HERO === */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: auto;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
}

.button {
  margin-top: 20px;
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #a27ef2;
}

/* === GRID LAYOUT === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 40px;
}

.card {
  border: 1px solid #eee;
  padding: 20px;
  background: #fdfdfd;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

/* === CONTACT FORM === */
.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 60px 20px;
}

form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-top: 5px;
}

button[type="submit"] {
  margin-top: 20px;
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #a27ef2;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
  font-size: 0.9rem;
  color: #666;
  margin-top: 60px;
}
