/* styles.css */

:root {
  --color-accent: #2e3b55;
  --color-secondary: #333;
  --color-gold: #d4af37;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0; /* Bigger header */
  background-color: var(--color-accent);
  color: #fff;
  width: 100%;
}

nav {
  flex-grow: 1;
}

nav ul.menu {
  display: flex;
  justify-content: center; /* Center nav links */
  gap: 25px;
  font-size: 1.25rem; /* Larger nav links */
}

nav ul.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul.menu li a.active {
  border-bottom: 2px solid #fff;
}

.contact-info {
  color: #fff;
  padding-left: 25px; /* More padding from left */
  padding-right: 25px; /* Some right padding too */
  white-space: nowrap;
  font-weight: bold;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  nav ul.menu {
    display: none;
    flex-direction: column;
    background-color: var(--color-accent);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border: 1px solid #444;
  }

  nav ul.menu li {
    border-bottom: 1px solid #444;
  }

  #menu-toggle:checked + .menu-icon + ul.menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

.hero-panel {
  background-image: url('/images/bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f5f5dc; /* Cream color */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: 3.5rem;  /* Increased from 3rem */
  margin: 0;
}

.hero-text p {
  font-size: 1.75rem;  /* Increased from 1.5rem */
  margin: 10px 0 0 0;
}


.gold-strip {
  height: 4px;
  background-color: var(--color-gold);
}

main {
  padding: 40px 0;
}

.mt-20 {
  margin-top: 40px;
}

footer {
  background-color: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

/* Contact page layout */
.contact-page {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.office-boxes, .contact-form {
  flex: 1 1 25%;
}

.office {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.office img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}

.office h3 {
  margin: 0;
  font-size: 1.2em;
}

.office p {
  margin: 4px 0;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .contact-page {
    flex-direction: column;
  }
}

