/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top bar for contact info */
.top-bar {
  background: #a80000;
  color: #fff;
  padding: 0.5rem 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.top-bar .left,
.top-bar .right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar i {
  font-style: normal;
  margin-right: 0.3rem;
}

/* Header with logo and nav */
header {
  background: #d4af37;
  color: #222;
  padding: 1rem 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.logo span {
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #222;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a:focus {
  background: #a80000;
  color: #fff;
}

.header-btn {
  background: #a80000;
  color: #fff;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 2rem;
}

.header-btn:hover {
  background: #7a0000;
}

/* Hero section */
.hero {
  width: 100%;
  height: 350px;
  background: url("../images/background.jpg") center center no-repeat;
  background-size: cover; /* Changed from contain to cover */
  background-color: #222; /* fallback color */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Main content section */
main {
  flex: 1;
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #a80000;
  font-weight: bold;
  letter-spacing: 1px;
}

section p,
section ul,
section form {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

form input,
form textarea,
form select,
form button {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form button {
  background: #a80000;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: #7a0000;
}

/* Footer */
footer {
  background: #2d3e50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.95rem;
  margin-top: auto;
  letter-spacing: 0.5px;
  border-top: 3px solid #d4af37;
}

/* Responsive styles */
@media (max-width: 900px) {
  main {
    max-width: 98vw;
    padding: 1.2rem 1vw;
  }
  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    font-size: 0.95rem;
    gap: 0.3rem;
    padding: 0.5rem 1vw;
  }
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1vw;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .header-btn {
    margin-left: 0;
    margin-top: 0.7rem;
    width: 100%;
  }
  .hero {
    height: 180px;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  main {
    padding: 1rem 0.5vw;
  }
  section h2 {
    font-size: 1.3rem;
  }
}
/* ...existing code... */
/* ...existing code... */
.contact-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.contact-card {
  background: #f6f8fb;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 2rem 1.5rem;
  min-width: 320px;
  max-width: 370px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2d3e50;
  font-weight: 700;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-icon {
  font-size: 1.3rem;
  color: #3a5a40;
  margin-top: 2px;
}
.contact-card a {
  color: #3a5a40;
  text-decoration: none;
  font-weight: 500;
}
.contact-card strong {
  color: #222;
  font-weight: 600;
}
.contact-card p {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row input {
  flex: 1;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 5px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: #fff;
}
.contact-card textarea {
  resize: vertical;
}
.submit-btn {
  background: #3a5a40;
  color: #fff;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  width: 100%;
  letter-spacing: 1px;
}
.submit-btn:hover {
  background: #a80000;
}
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact-card {
    max-width: 100%;
  }
}
