:root {
/* Brand Colors */
--tenstreet-red: #c62027;/*rouge*/
--tenstreet-dark-red: #881e1f;/*rouge foncé*/
--text-black: #000000;
--text-white: #FFFFFF;
--bg-gray: #EAEAEA;/*gris clair*/
--green:#0B6623;/*vert-anglais*/
--yellow:#D6E34A;/*jaune-clair*/
--blue:#00AEEF;/*bleu*/
--blue2:#a0d9ee;/*bleu*/
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-tap-highlight-color: transparent;
}


body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-gray);
  color: var(--text-black);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  height: auto;
  padding: 80px 20px 20px; /* Top padding allows headshot to hang */
  position: inherit;
}

/* Background Map Setup */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Le fond de la page sera noir */
    /*background-image: url('https://www.aupied.net/images/ruban3/RX2.webp');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.4; /* Adjusts map visibility so card pops */
}


/* Animation Keyframes */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 40px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}

.container {
  width: 100%;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  margin-top: -5px;
  /* Entrance Animation */
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* HEADSHOT STYLES */
.profile-avatar {
width: 110px;
height: 110px;
border-radius: 50%;
position: absolute;
top: -55px;
left: 50%;
transform: translateX(-50%);
z-index: 20;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
object-fit: cover;
}

.inner-card {
background-color: white;
box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.1);
border-radius: 20px;
overflow: hidden;
display: flex;
flex-direction: column;
position: relative;
}

/* HEADER SECTION */
.header {
background-color: var(--tenstreet-red);
color: white;
padding: 70px 30px 40px;
position: relative;
/* Angular Cut */
clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
z-index: 10;
text-align: center;
}

.name-block {
position: relative;
z-index: 2;
}

.name {
font-size: 32px;
font-weight: 800;
line-height: 1.1;
margin-bottom: 8px;
text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
text-transform: uppercase;
}

.title {
font-size: 14px;
font-weight: 500;
opacity: 0.95;
letter-spacing: 1.5px;
text-transform: uppercase;
}

/* CONTACT LIST */
.content {
padding: 10px 0 20px;
flex: 1;
position: relative;
background-color: white;
}

.contact-item {
display: flex;
align-items: center;
padding: 16px 30px;
text-decoration: none;
color: var(--text-black);
transition: background 0.2s;
border-left: 4px solid transparent;
position: relative;
z-index: 1;
cursor: pointer;
}

.contact-item:hover {
background-color: #f9f9f9;
border-left: 4px solid var(--tenstreet-red);
}

.icon-box {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
border-radius: 50%;
margin-right: 20px;
color: var(--tenstreet-red);
font-size: 16px;
transition: all 0.2s;
}

.contact-item:hover .icon-box {
background-color: var(--tenstreet-red);
color: white;
}

.info-text {
display: flex;
flex-direction: column;
}

.info-label {
font-size: 10px;
text-transform: uppercase;
color: #999;
font-weight: 700;
margin-bottom: 3px;
letter-spacing: 0.5px;
}

.info-value {
font-size: 15px;
font-weight: 600;
color: #333;
}

/* BUTTONS */
.actions {
padding: 0 30px 25px;
background:#fff;
text-align: center;
display: flex;
flex-direction: column;
gap: 15px;
}

.btn-primary {
display: block;
width: 100%;
background-color: var(--text-black);
color: white;
text-align: center;
padding: 16px;
border-radius: 12px;
text-decoration: none;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 14px;
transition: transform 0.1s, box-shadow 0.1s;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
border: none;
cursor: pointer;
}

.btn-primary:active {
transform: scale(0.98);
}

/* Secondary Action Row (Share) */
.secondary-actions {
display: flex;
justify-content: center;
}

.btn-ghost {
background-color: #bbb;
border: none;
color: #444;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 14px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 20px;
transition: background 0.2s;
}

.btn-ghost:hover {
background-color: #4046dd;
color: var(--blue2);
}

/* Footer Logo Link */
.footer-logo {
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--text-black);
text-decoration: none;
font-weight: 800;
font-size: 22px;
opacity: 0.8;
transition: all 0.2s;
padding-top: 10px;
}

.footer-logo:hover {
opacity: 1;
transform: scale(1.02);
color: var(--tenstreet-red);
}

.footer-logo i {
color: var(--tenstreet-red);
margin-right: 8px;
font-size: 24px;
}

/* FOOTER DECORATION */
.footer-decoration {
height: 15px;
background: var(--tenstreet-red);
}

/* Toast Notification for Copying */
.toast {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(100px);
background-color: #333;
color: white;
padding: 12px 24px;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
opacity: 0;
transition: all 0.3s ease;
z-index: 100;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 10px;
}

.toast.show {
transform: translateX(-50%) translateY(0);
opacity: 1;
}
