/* ========== GLOBAL RESET ========== */
body {
  font-family: 'Inter', sans-serif, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0d1321;
  line-height: 1.6;
}
/* Headings */
    h1, h2, h3, h4, h5, h6, .subheading {
      font-family: 'EB Garamond', serif; /* Changed from Times New Roman */
    }


/* ========== NAVIGATION BAR ========== */
.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  max-width: 250px;
  height: auto;
}

.logo img {
  max-width: 300px;
  height: 200px;
}

/* ========== MENU LINKS ========== */
.menu-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-links a {
  text-decoration: none;
  color: #090909;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.menu-links a:hover,
.menu-links a.active {
  color: #fca311;
}

/* ========== MAIN CONTENT WRAPPER ========== */
main {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 24px 64px 24px;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0d1321;
  margin: 0;
  padding: 0;
}

/* ========== CONTACT INFO SECTION ========== */
.contact-info {
  text-align: center;
  margin: 80px 24px 40px;
}

.contact-info h1 {
  font-size: 3rem;
  color: #fca311;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info .intro-text {
  color: #0d1321;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Info Grid Layout */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Each Info Box */
.info-block {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(20, 33, 61, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
}

/* Heading with Icon */
.info-block h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fca311;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.info-block h2 i {
  margin-right: 10px;
  font-size: 1.1rem;
  color: #fca311;
}

/* Content Paragraph & Link */
.info-block p,
.info-block a {
  font-size: 1rem;
  color: #0d1321;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}

.info-block a:hover {
  color: #fca311;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info h1 {
    font-size: 2.2rem;
  }

  .contact-info .intro-text {
    font-size: 1rem;
  }
}


/* ========== INFO BLOCKS GRID ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.info-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(20, 33, 61, 0.08);
  text-align: left;
}

.info-block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d2d44;
  margin-bottom: 12px;
}

.info-block p,
.info-block a {
  font-size: 1.1rem;
  color: #070707;
  text-decoration: none;
  line-height: 1.6;
}

.info-block a:hover {
  text-decoration: underline;
  color: #fca311;
}

/* ========== MAP SECTION ========== */
/* ========== MAP SECTION ========== */
.map-section {
  text-align: center;
  margin-top: 64px;
}

.map-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fca311;
  margin-bottom: 24px;
}

.map-section iframe {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(20, 33, 61, 0.15);
}


/* ========== CONTACT FORM ========== */
.contact-form-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 6px 24px rgba(20, 33, 61, 0.1);
  max-width: 720px;
  margin: 56px auto 0 auto;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fca311;
  margin-bottom: 32px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #1d2d44;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #748cab;
  font-size: 1rem;
  color: #0d1321;
  background-color: #f0ebd8;
  font-family: 'Inter', sans-serif;
  transition: border 0.3s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3e5c76;
  outline: none;
}

.contact-form button {
  background-color: #fca311;
  padding: 16px 38px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none;
  color: #0d1321;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0d1321;
  color: #fca311;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto;
  width: 50%;
}

.separator hr {
  flex: 1;
  border: none;
  border-top: 2px solid #fca311;
}

.separator img {
  width: 40px;
  height: 30px;
}

/* ========== FOOTER ========== */
.custom-footer {
  background-color: #f4f4f4;
  color: #0d1321;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 220px;
  text-align: left;
}

.footer-logo {
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0;
}

.footer-block {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-block h4 {
  color: #0d1321;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-block p,
.footer-block li {
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block i {
  margin-right: 8px;
  color: #fca311;
}

/* Links */
.footer-block a {
  color: #fca311;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-block a:hover {
  color: #0d1321;
  text-shadow: 0 0 3px rgba(252, 163, 17, 0.6);
  text-decoration: underline;
}

/* Hover effects on list items */
.footer-block ul li {
  position: relative;
  transition: transform 0.2s ease, color 0.3s ease;
}

.footer-block ul li:hover {
  color: #fca311;
  transform: translateX(5px);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-bottom: 10px;
}

/* Social icons */
.footer-socials {
  margin-top: 12px;
}

.footer-socials a {
  color: #0d1321;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #fca311;
  transform: scale(1.2);
}

/* ========== RESPONSIVE FIXES ========== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

@media (max-width: 768px) {
  .menu-links {
    flex-direction: column;
    gap: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-block,
  .footer-logo {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-form-section {
    margin: 32px 16px;
    padding: 24px;
  }
}
