@charset "UTF-8";
/* Colors */
:root {
  --light: #ddbfa2;
  --dark: #4d493e;
  --mid-trans: #ad8a6980;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #ddbfa2;
  }
}
/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #ddbfa2; /* Color of the scrollbar handle */
  border-radius: 6px; /* Rounded corners for the handle */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #4d493e; /* Color of the handle on hover */
}

::-webkit-scrollbar-track {
  background-color: #4d493e; /* Color of the track */
  border-radius: 6px; /* Rounded corners for the track */
}

/* For Firefox */
html {
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #ddbfa2 #4d493e; /* Thumb color and track color */
}

body {
  background-color: white;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  margin: 0;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.05em;
  margin-top: 10vh;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.header {
  position: fixed; /* Fixes the header to the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensures it stays above other content */
  background-color: #ddbfa2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #4d493e;
  height: 10vh;
  box-sizing: border-box;
  width: 100%;
}
.header .header-logo {
  margin-left: 8px;
}
.header .header-logo .logo {
  height: 8vh;
}
.header .header-logo .nameplate {
  height: 4vh;
  margin-bottom: -4px;
}

.tabs {
  height: 42px;
  width: 50vw;
  gap: 20px;
  display: flex;
  justify-content: space-around;
  align-self: end;
  background-color: #ddbfa2;
}
.tabs .tab-button {
  display: flex;
  align-items: center;
  flex: 1;
  border: none;
  height: 34px;
  background-color: rgba(173, 138, 105, 0.5019607843);
  justify-content: center;
  font-size: 20px;
  color: #4d493e;
  transition: background-color 0.3s;
}
.tabs .tab-button img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.tabs .tab-button:hover, .tabs .tab-button.active {
  background-color: #4d493e;
  color: #ddbfa2;
}
.tabs .tab-button.active {
  height: 100%;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 10px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto; /* Allow it to adjust based on content */
    width: 100%;
    left: 0;
    right: 0;
    border-bottom: none;
  }
  .header .tabs {
    width: 100%;
    padding: 0;
    border-bottom: 2px solid #4d493e;
    box-sizing: border-box;
    margin: 0;
  }
  .header .header-logo {
    margin-left: 0;
    text-align: center;
    width: 100%;
    padding: 5px 0;
  }
  body {
    margin-top: 0; /* Remove body margin on mobile */
    padding-top: 120px; /* Use padding instead for fixed header */
  }
  .tab-content {
    margin-top: 0;
    padding-top: 0;
  }
  .tab-content > *:first-child {
    margin-top: 0 !important;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-section {
    height: 15vh;
    padding: 10px;
    background: linear-gradient(135deg, #ddbfa2 0%, #ad8a69 100%);
    margin-top: 0 !important;
  }
  .hero-section h1 {
    font-size: 1.5em;
    letter-spacing: 0.06em;
  }
  .about-container {
    margin-top: 0 !important;
    padding-top: 20px;
  }
  .contact-container {
    margin-top: 0 !important;
    padding-top: 20px;
  }
  .brief-intro {
    padding: 30px 15px;
  }
  .values-section {
    padding: 30px 15px;
  }
  .about-section {
    padding: 20px;
  }
  .credentials {
    grid-template-columns: 1fr;
  }
  .about-header h1 {
    font-size: 2em;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-card p {
    line-height: 1.4;
  }
  .contact-header h1 {
    font-size: 2em;
  }
  .map-container {
    height: 300px;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 35vh;
  background: linear-gradient(135deg, #ddbfa2 0%, #ad8a69 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  text-align: center;
  box-shadow: inset 0 -2px 10px rgba(77, 73, 62, 0.15);
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 0;
}
.hero-section h1 {
  color: #4d493e;
  font-size: 3em;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.08em;
  max-width: 90%;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  line-height: 1.3;
  word-wrap: break-word;
}

.brief-intro {
  padding: 50px 15px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.brief-intro h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #4d493e;
}
.brief-intro p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #4d493e;
}

.values-section {
  padding: 50px 15px;
  background-color: #f9f7f4;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.values-section h2 {
  font-size: 1.8em;
  margin-bottom: 40px;
  color: #4d493e;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.value-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(77, 73, 62, 0.1);
  border-top: 4px solid #ddbfa2;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(77, 73, 62, 0.15);
}
.value-card h3 {
  font-size: 1.3em;
  color: #4d493e;
  margin-bottom: 15px;
}
.value-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #4d493e;
}

.call-to-action {
  padding: 30px 15px;
  text-align: center;
  background: #4d493e;
  color: #ddbfa2;
}
.call-to-action h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.call-to-action p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 15px;
}
.call-to-action #cta-button {
  background: #ddbfa2;
  color: #4d493e;
  border: none;
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.call-to-action #cta-button:hover {
  background: rgba(173, 138, 105, 0.5019607843);
  color: #ddbfa2;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-header h1 {
  font-size: 2.5em;
  color: #4d493e;
  margin: 0 0 10px 0;
}
.contact-header p {
  font-size: 1.2em;
  color: #ad8a69;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: #f9f7f4;
  padding: 30px 20px;
  border-radius: 8px;
  border-top: 4px solid #ddbfa2;
  text-align: center;
}
.contact-card h3 {
  font-size: 1.3em;
  color: #4d493e;
  margin: 0 0 20px 0;
}
.contact-card p {
  font-size: 0.95em;
  line-height: 1.8;
  color: #4d493e;
  margin: 10px 0;
}
.contact-card p strong {
  display: block;
  margin-bottom: 5px;
}
.contact-card a {
  color: #4d493e;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card a:hover {
  color: #ad8a69;
}

.map-section {
  text-align: center;
}
.map-section h2 {
  font-size: 1.8em;
  color: #4d493e;
  margin-bottom: 30px;
}

.map-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: 450px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #4d493e;
  border-radius: 8px;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 0;
  border-bottom: 2px solid #ddbfa2;
}
.about-header h1 {
  font-size: 2.5em;
  color: #4d493e;
  margin: 0 0 10px 0;
}

.about-tagline {
  font-size: 1.2em;
  color: #ad8a69;
  font-style: italic;
}

.about-portrait {
  text-align: center;
  margin-bottom: 40px;
}
.about-portrait img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(77, 73, 62, 0.2);
}

.about-content {
  padding: 20px 0;
}

.about-section {
  margin-bottom: 40px;
  padding: 30px;
  background: #f9f7f4;
  border-radius: 8px;
  border-left: 4px solid #ddbfa2;
}
.about-section h2 {
  font-size: 1.6em;
  color: #4d493e;
  margin-top: 0;
  margin-bottom: 15px;
}
.about-section p {
  font-size: 1em;
  line-height: 1.7;
  color: #4d493e;
}

.strengths-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strengths-list li {
  font-size: 1em;
  line-height: 1.8;
  color: #4d493e;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}
.strengths-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ddbfa2;
  font-weight: bold;
  font-size: 1.2em;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.credential-item {
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(77, 73, 62, 0.08);
}
.credential-item h3 {
  color: #4d493e;
  font-size: 1.1em;
  margin: 0 0 8px 0;
}
.credential-item p {
  color: #ad8a69;
  margin: 0;
  font-size: 0.95em;
}/*# sourceMappingURL=styles.css.map */