@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;600;800&family=Outfit:wght@300;400;500;700&display=swap');

@font-face {
  font-family: 'Bethany Elingston';
  src: url('../fonts/BethanyElingston.woff2') format('woff2'),
       url('../fonts/BethanyElingston.woff') format('woff'),
       url('../fonts/BethanyElingston.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-color: #0a0e17;
  --accent-violet: #a14bf0; /* Un tout petit peu plus clair que #8a2be2 */
  --accent-bleu: #3739e0;   /* Nouveau bleu choisi par l'utilisateur */
  --text-main: #ffffff;
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-script: 'Bethany Elingston', serif;
  
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(10px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
}

.script-font {
  font-family: var(--font-script);
  font-weight: normal;
  font-size: 1.4em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-violet);
  display: inline-block;
  padding: 0 5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-violet) 0%, #d1a3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Generic Layout */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-bleu));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
  text-shadow: 0 0 10px var(--accent-bleu);
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-bleu) 100%);
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
}

.contact-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 32px;
    border-radius: 20px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    min-width: 280px;
    justify-content: center;
}

.btn-primary {
    border-color: var(--accent-violet);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.1);
}

.btn-primary:hover {
    background: var(--accent-violet);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
    border-color: transparent;
}

.btn-whatsapp {
    border-color: #25d366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp:hover {
    background: #25d366;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    border-color: transparent;
}

/* Pulse animation for sound button to invite click */
@keyframes pulse-violet {
    0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(138, 43, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}

.sound-btn.pulse {
    animation: pulse-violet 2s infinite;
}

/* Footer Contact */
/* Footer / Contact Section */
.footer-contact {
    padding: 120px 20px;
    background: radial-gradient(circle at bottom, rgba(161, 75, 240, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.footer-contact .container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-violet);
    box-shadow: 0 0 15px rgba(161, 75, 240, 0.2);
}

.form-rgpd {
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

.rgpd-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-align: left;
}

.rgpd-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-violet);
}

.rgpd-label:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Style spécifique pour le select */
.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg-color);
    color: #fff;
}

.form-submit {
    margin-top: 15px;
    width: 100%;
    font-size: 1.2rem !important;
    gap: 12px;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 40px;
}

.contact-buttons-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(161, 75, 240, 0.1);
    border-color: rgba(161, 75, 240, 0.3);
    transform: translateX(10px);
}

.info-icon {
    font-size: 1.6rem;
}

.info-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-legal {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal a {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-violet);
}

.separator {
    margin: 0 10px;
    opacity: 0.2;
}

/* Responsive Mobile Global (main.css) */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
    }
    .btn-primary, .btn-whatsapp {
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .footer-contact {
        padding: 60px 15px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .contact-info-footer {
        gap: 30px;
    }
    .info-item {
        padding: 15px;
    }
    .footer-legal {
        padding-top: 30px;
        text-align: center;
    }
}
