@charset "UTF-8";
/*
Theme Name: DR DREIER
Theme URI: 
Author: Dennis Helbig
Author URI: https://dennishelbig.dev/
Description: Personal Theme for DR DREIER
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom theme by Dennis Helbig
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  outline: none;
}

/* Remove excess padding and border in Firefox 4+ */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f9f2ec;
  padding: 0;
  transition: all 0.3s ease;
}
body.scrolled .site-header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 20px;
  line-height: 1.3;
}

.site-header .logo {
  text-decoration: none;
  display: block;
}

.site-header .logo h1 {
  font-family: "Times", sans-serif;
  margin: 0;
  font-size: 1.8rem;
  color: #9b4d3a;
  font-weight: normal;
}

.main-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: none;
  padding-top: 10px;
  margin-top: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 1rem;
  color: #333;
}

.menu-toggle span:nth-child(2) {
  display: none;
}

body.menu-open .menu-toggle span:first-child {
  display: none;
}

body.menu-open .menu-toggle span:nth-child(2) {
  display: inline;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin-right: 20px;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 15px 0;
  display: inline-block;
  position: relative;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: #9b4d3a;
}

.home-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.home-link:hover {
  color: #9b4d3a;
}

/* Responsive styles */
@media (max-width: 768px) {
  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .site-header .logo h1 {
    font-size: 1.4rem;
  }
  .menu-toggle {
    display: block;
    order: 2;
  }
  .main-navigation {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .home-link {
    order: 1;
  }
  .main-navigation ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f9f2ec;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100%;
  }
  body.menu-open .main-navigation ul {
    display: flex;
  }
  .main-navigation li {
    margin: 10px 0;
  }
}
/* Allgemeine Stile */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f2ec;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1em;
}

.site-content {
  padding-top: 1em;
}

section {
  margin: 3em 0;
}

h2 {
  font-family: "Times", sans-serif;
  color: #9b4d3a;
  font-size: 1.75rem;
  font-weight: normal;
  margin-bottom: 1em;
  line-height: 1.3;
}
p + h2 {
  margin-top: 2em;
  margin-bottom: 0.75em;
}

h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 25px 0 15px;
}

a {
  color: #9b4d3a;
  text-decoration: none;
}

.submit-button,
.btn {
  display: inline-block;
  background-color: #9b4d3a;
  color: #fff;
  padding: 1em 2em;
  border-radius: 0.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.submit-button:hover,
.btn:hover {
  background-color: #884432;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

/* Adressbereich */
.address-section h2 {
  margin-bottom: 2em;
  font-size: 1.75rem;
}

.info-box {
  background-color: #fff;
  padding: 2.5em 1.5em;
  border-radius: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  margin-top: 1em;
}
.info-box ul {
  list-style-type: disc;
  padding-left: 1em;
  margin: 1em 0;
}
.info-box ul li {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.info-box h3 {
  margin-top: 0;
  font-weight: 600;
  font-size: 1.15rem;
}

/* Terminvereinbarung */
.insurance-info {
  margin-bottom: 1.5em;
  color: #555;
}

.appointment-section p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}

.appointment-button {
  display: inline-block;
  background-color: #9b4d3a;
  color: #fff;
  padding: 1em 2em;
  border-radius: 0;
  margin: 1.5em 0 2.5em;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.appointment-button:hover {
  background-color: #884432;
  text-decoration: none;
}

.opening-hours {
  margin-bottom: 2em;
}

.opening-hours h3 {
  margin-top: 2em;
  margin-bottom: 1em;
}

.opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  padding: 1em 0;
  border-bottom: 1px solid #e9e2dc;
  line-height: 1.4;
}

/* Leistungen */
.services-section h2 {
  margin-top: 2em;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e9e2dc;
  position: relative;
}

.services-list li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2em;
  height: 1px;
  background-color: #9b4d3a;
}

/* Kontakt */
.contact-section h2 {
  margin-top: 2em;
}

.contact-section address {
  font-style: normal;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}

.contact-info {
  display: flex;
  gap: 2em;
  width: 100%;
}

address {
  width: 50%;
}
address p:not(:last-child) {
  margin-bottom: 1em;
}

.map-container {
  width: 50%;
}

#map {
  width: 100%;
  height: auto;
  border-radius: 0.5em;
  margin-bottom: 2em;
}

/* Alternative, falls du spezifisch auf eine Impressum-Klasse abzielst */
.impressum p {
  margin-bottom: 1.5em;
}

/* Erhöhte Basis-Schriftgröße für größere Bildschirme */
html {
  font-size: 19px; /* Aktuelle Basisgröße - wird für Mobile beibehalten */
}

/* Erhöhte Schriftgröße nur für größere Bildschirme */
@media (max-width: 1200px) {
  html {
    font-size: 18px; /* Größere Basis-Schriftgröße für Desktop */
  }
}
/* Für noch größere Bildschirme optional noch etwas erhöhen */
@media (max-width: 992px) {
  html {
    font-size: 16px;
  }
}
/* Responsive Anpassungen */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  .map-container {
    width: 100%;
    max-width: 480px;
  }
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .name-fields {
    flex-direction: column;
    gap: 15px;
  }
  .prescription-form {
    padding: 1em;
  }
  h2 {
    font-size: 1.5rem;
  }
  .address-section h2 {
    font-size: 1.5rem;
  }
  .info-box,
  .prescription-form {
    padding: 1em;
  }
  .appointment-button {
    display: block;
    text-align: center;
  }
  address {
    width: 100%;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.35rem;
  }
  .address-section h2 {
    font-size: 1.35rem;
  }
  section {
    margin: 2em 0;
  }
  .services-list li,
  .opening-hours li {
    padding: 0.5em 0;
  }
}
/* Footer Styles */
.site-footer {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #e9e2dc;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-link {
  color: #333;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: #9b4d3a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 40px;
    padding: 15px 0;
  }
}
.site-footer {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #9b4d3a;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-link {
  color: #333;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: #9b4d3a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 40px;
    padding: 15px 0;
  }
}
/* Rezeptbestellung */
.prescription-section h2 {
  margin-top: -2em;
  padding-top: 3em;
}

.prescription-section > p {
  margin-bottom: 1em;
}

.prescription-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  margin: 25px 0;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.name-fields {
  display: flex;
  gap: 20px;
}

.name-fields > div {
  flex: 1;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0d8d0;
  border-radius: 0;
  box-sizing: border-box;
  background-color: #fcfcfc;
  font-size: 0.95rem;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-button {
  background-color: #9b4d3a;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 0.95rem;
}

.submit-button:hover {
  background-color: #884432;
}

.thank-you-message {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 0;
  border-left: 3px solid #9b4d3a;
}

.thank-you-message h3 {
  margin-top: 0;
  color: #9b4d3a;
}

/* Styling für die Datenschutz-Checkbox */
.privacy-consent {
  margin-top: 30px;
  padding: 15px;
  background-color: #f5f2ee;
  border-left: 3px solid #9b4d3a;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
}

.checkbox-wrapper input[type=checkbox] {
  margin-top: 4px;
  margin-right: 10px;
}

.checkbox-wrapper label {
  font-weight: normal;
  font-size: 0.95rem;
  flex: 1;
}

.checkbox-wrapper a {
  font-weight: 600;
  text-decoration: underline;
}

.consent-info {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
  margin-left: 24px;
}

/*# sourceMappingURL=style.css.map */
