
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
  --font: 'Inter', sans-serif;
  --primary: #e30613;
  --bg: #ffffff;
  --text: #1c1c1c;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background-size: contain;
  height: 480px;
  text-align: center;
  
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  
  /*
  border: 1px solid #ccc;
  border-radius: 5px;
  */
}
.tdr-logo {
  background: url('assets/LogoTDR.png') no-repeat center center;
  background-size: contain;
  height: 160px;
  text-align: center;
}
.tdr-logo-lucens {
  background: url('assets/Logo_Transp_N.png') no-repeat center center;
  background-size: contain;
  height: 200px;
  text-align: center;
}



.text-banner {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  text-align: center;
  font-size: 1.5em;
  gap: 1px; /* espace entre les lignes */
  transform: rotate(-5deg);
}


.tdr-title-header {
  position: relative;
  width: 100%;
  height: 200px; /* hauteur fixe ou dynamique selon le contenu */
}

.parallelogram-banner {
  position: absolute;
  background-color: black;
  color: white;
  padding: 40px;
  width: 90%;
  height: 100px;
  font-size: 1.5em;
  text-align: center;
  transform: skewY(-5deg); /* inclinaison horizontale */
  margin: 40px 0;
}

.tdr-banner-content {
  position: absolute;
  text-align: center;
  color: white;
  transform: rotate(-5deg);
  
  display: flex;
  justify-content: center;
  
  
}

.tdr-banner h1 {
  font-size: 3rem;
  margin: 0;
  margin-top: 5.0rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.tdr-banner h2 {
  font-size: 1.5rem;
  margin: 0.5rem;
  font-weight: 500;
  color: white;
}

.tdr-banner p {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 0.1rem;
  color: white;
}

.tdr-stripe {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  max-width: 800px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  z-index: 1;
}

.trapeze-banner {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 40px;
  text-align: center;
  font-size: 1.5em;
  clip-path: polygon(6% 0, 94% 0, 100% 100%, 0% 100%);
}

.parallelogram-banner2 {
  position: absolute;
  background-color: black;
  color: white;
  padding: 40px;
  font-size: 1.5em;
  text-align: center;
  transform: skewX(-5deg); /* inclinaison horizontale */
  margin: 40px 0;
}

.DISABLE.tdr-banner {
  position: relative;
  background: linear-gradient(135deg, #E53935 0%, #FFEB3B 50%, #1E88E5 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}


.DISABLE.tdr-banner-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 12px;
  display: inline-block;
}


main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  
  /*
  border: 1px solid #ccc;
  border-radius: 5px;
  */
}

h1, h2 {
  font-weight: 600;
  color: var(--primary);
}

section {
  margin-bottom: 2rem;
}

a.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

form {
  display: grid;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font);
}

input[type="submit"] {
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.footer-container {
    padding: 20px;
}


.social-links {

  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement si hauteur définie */
  gap: 20px;               /* espace entre les éléments */
}

.social-links a {
    text-decoration: none;
    color: white;
    padding: 12px;
    border-radius: 6px;
    width: 64px;
    height: 64px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}
.social-links img {
    text-decoration: none;
    color: white;
    border-radius: 6px;
    width: 64px;
    height: 64px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}
.instagram { background-color: #E1306C; }
.snapchat  { background-color: #FFFC00; color: black; }
.tiktok    { background-color: #010101; }
.facebook  { background-color: #3b5998; }

.social-links a:hover {
    opacity: 0.8;
}

