/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #fff5f7, #ffffff);
  min-height: 100vh;
}

/* Header styles */
header {
  background-color: #735145;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  margin-bottom: 1rem;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.address:hover {
  text-decoration: underline;
}

/* Main content styles */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-family: "Playfair Display", serif;
  color: #735145;
  text-align: center;
  margin-bottom: .5rem;
  padding-bottom: 0.5rem;
  /* border-bottom: 1px solid #735145; */
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

table thead th {
  background-color: #735145 !important;
  color: white !important;
  font-weight: 500;
}

th,
td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #735145;
}

th {
  background-color: #f8e3db;
  font-weight: 500;
  color: #735145;
}

tr:nth-child(even) {
  background-color: #f8e3db;
}

td:nth-child(2),
td:nth-child(3) {
  text-align: center;
}

th:nth-child(2),
th:nth-child(3) {
  text-align: center;
}

/* Footer styles */
footer {
  background-color: #735145;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  transition: transform 0.2s;
}

.footer-links a:hover {
  text-decoration: underline;
  transform: translateY(-2px);
}

.footer-links i {
  font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  .address {
    font-size: 0.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  th,
  td {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .address span {
    font-size: 0.75rem;
  }
}

/* Print styles */
@media print {
  body {
    background: white;
    color: black;
  }

  header,
  footer {
    background: white;
    color: black;
  }

  .table-container {
    box-shadow: none;
  }

  a {
    color: black;
    text-decoration: none;
  }

  th {
    background-color: #f0f0f0;
    color: black;
  }
}

.copyright {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  opacity: 0.8;
}

.mobile-call-button {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-button {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #735145;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-call-button:hover {
    background-color: #735145;
  }

  .mobile-call-button i {
    font-size: 1.2rem;
  }
}
