/*
Theme Name: Total Child
Theme URI: http://example.com/total-child
Description: Child Theme für Total Theme
Author: Dein Name
Template: Total
Version: 1.0.0
*/

/* Custom Code */

/* TYPOGRAPHY */
@font-face {
  font-family: 'Roboto_Custom';
  src: url('assets/fonts/roboto_custom/Roboto-VariableFont_wdth,wght.woff2') format('woff2-variations'),
       url('assets/fonts/roboto_custom/Roboto-VariableFont_wdth,wght.woff2') format('woff2');
  font-weight: 100 900;  /* gesamte Spannweite der Variable Font */
  font-stretch: 75% 100%; /* Roboto unterstützt wdth */
  font-style: normal;
  font-display: swap;
}

/* Beispielverwendung */
body {
  font-family: 'Roboto_Custom', sans-serif;
  font-weight: 400;
}

h1 {
  font-weight: 700;
}

/* KONTAKTFORMULAR */
/* Container für Vorname + Nachname */
.cf7-two-columns {
  display: flex;
  gap: 2%;
  margin-bottom: 1rem;
}

/* Jede Spalte nimmt 50% */
.cf7-two-columns .cf7-col {
  flex: 1;
}

/* Inputs/Textareas volle Breite innerhalb der Spalte */
.cf7-col .wpcf7-form-control,
label .wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
}

/* Responsive: auf kleinen Bildschirmen untereinander */
@media (max-width: 600px) {
  .cf7-two-columns {
    flex-direction: column;
    gap: 0;
  }
}