:root {
    --primary-color: #098191;
    --secondary-color: #63b6b8;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.phone-mockup {
    position: relative;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.phone-mockup:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.features {
    background-color: #ffffff;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* How it Works Section */
.how-it-works {
    background-color: var(--light-bg);
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* Transformational Section */
.transformational {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
}

.transformational h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-width: 2px;
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #181818 !important;
    color: #fff !important;
    padding: 80px 0 40px;
}

footer h4,
footer p,
footer a,
footer .list-unstyled li,
footer .social-links a {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

footer a:hover,
footer .social-links a:hover {
    color: #ffd700 !important;
}

footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero {
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .phone-mockup {
        margin-top: 3rem;
    }

    .phone-mockup img {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }

    .feature-card, .step {
        margin-bottom: 2rem;
    }

    .transformational h2 {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

html {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem; /* Taille de police plus petite pour les mobiles */
    }
    .hero p {
        font-size: 0.9rem;
    }
    .btn {
        padding: 10px 20px; /* Plus grand pour les écrans tactiles */
    }
    .container, .row, .col-lg-6 {
        padding: 0 15px; /* Ajuster l'espacement */
    }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.skeleton-container {
    margin: auto;
}
.skeleton {
    background-color: #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite ease-in-out;
}
.skeleton-text {
    height: 20px;
    width: 100%;
}
@keyframes pulse {
    0% {
        background-color: #ddd;
    }
    50% {
        background-color: #ddd;
    }
    100% {
        background-color: #ddd;
    }
}

button {
  background: #098191;
  transition: background ease .25s;
  border-radius: 5px;
  display: inline-block;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
}
button:hover {
  background: #63b6b8
}
button:focus {
  outline: 1px solid #fff;
  outline-offset: -4px;
}
    
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline;
    margin-left: 20px;
}

.hero {
    background-image: url('hero-background.jpg'); /* Remplacez par votre propre image */
    text-align: center;
    padding: 100px 20px;
}

.features, .social-proof, .call-to-action {
    text-align: center;
    padding: 50px 20px;
}

.features ul, footer ul {
    list-style: none;
    padding: 0;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-secondary {
    background-color: #34a853;
}

footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 20px;
}

footer ul {
    padding-top: 10px;
}

footer li {
    display: inline;
    margin: 0 10px;
}

a, a:hover, a:visited, a:active {
    color: black;
    text-decoration: none;
}