/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #09090b;
    background-color: #ffffff;
    display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
}

.special {
    font-weight: bold;
}

.header-logo {
    font-size: 24px;
    font-weight: bold;
    color: #09090b;
}
.header-logo {
    font-size: 18px;
    font-weight: bold;
    color: #09090b;
    display: flex;
    align-items: center;
}

.header-logo p {
    font-size: 0.6em; /* Smaller "by MaNote" text */
    color: #6d6d6da9;
    margin: 0;
    margin-left: 5px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(6px); /* Adjust the blur intensity as desired */
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent */
}

.menu-button {
    background: white;
    border-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu {
    width: 30px;
    height: 30px;
}

.header-nav a {
    margin: 0 20px;
    color: #6b6b6d;
    text-decoration: none;
    font-weight: 500;
}
.header-buttons {
    display: flex;
    align-items: center; /* Centre les éléments verticalement */
    gap: 10px; /* Espacement entre les boutons */
    margin-left: 10px;
}

.header-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center; /* Centre les éléments verticalement */
    gap: 10px; /* Espacement entre les boutons */
    margin-left: 10px;
}
.btn-login {
    background-color: #fff;
    color: #18181bb7;
    border: 1px solid #18181b;
    font-weight: bold;
}

.btn-signup {
    background-color: #09090b;
    color: #fff;
}

/* Main Content */
.main-content {
    padding-top: 150px;
    text-align: center;
}

.main-content h1 {
    font-size: 5em;
    font-weight: 700;
    line-height: 1.1; /* Ajuste la hauteur de ligne pour rapprocher les deux lignes */
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.main-description {
    font-size: 1.1em;
    color: #6d6d6d;
    font-weight: bold;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 100px;
    font-weight: bold;
    margin-bottom: 100px;
    margin-top: 20px;
}

.btn-primary {
    background-color: #09090b;
    color: #ffffff;
    border: none;
}

.btn-secondary {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ddd;
}

/* Features Section */
.features-section {
    background-color: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 3.4em;
    font-weight: 700;
    line-height: 1.1; /* Ajuste la hauteur de ligne pour rapprocher les deux lignes */
}

.features-section p {
    font-size: 1.1em;
    color: #6d6d6d;
    margin-bottom: 40px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: auto;
    flex-wrap: wrap;
}

.feature-box {
    width: 280px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px; /* Increased for smoother corners */
    text-align: left; /* Left align text for a more professional look */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow for a cleaner effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}

.feature-icon {
    font-size: 2.2em; /* Larger icon size */
    color: #32a852; /* Matching the green tone */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-box h3 {
    margin: 10px 0;
    font-weight: 600;
    color: #333;
    font-size: 1.2em; /* Adjust font size */
}

/* Pricing Section */

.highlighted-item {
    padding: 3px 10px;
    border: 2px solid #a3d477; /* Green color for border */
    border-radius: 100px; /* Rounded corners */
    font-weight: bold;
    color: #09090b;
}
.title-box {
    font-size: 3.4em;
    font-weight: 700;
    line-height: 1.1; /* Ajuste la hauteur de ligne pour rapprocher les deux lignes */
}
.description-box {
    font-size: 1.1em;
    color: #6d6d6d;
    margin-bottom: 40px;
    margin-top: 10px;
}

.pricing-section {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

.pricing-box {
    max-width: 400px;
    margin: 30px auto;
    padding: 30px;
    border: 1px solid #a1c64b;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.most-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a3d477; /* Light green */
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
}

.pricing-box h2 {
    font-size: 3.4em;
    font-weight: 700;
    line-height: 1.1; /* Ajuste la hauteur de ligne pour rapprocher les deux lignes */
}

.pricing-box p strong {
    font-size: 2.4em;
    color: #09090b;
}

.access-details {
    color: #6d6d6d;
    font-size: 1em;
    margin-top: 10px;
}

.pricing-details {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.pricing-details li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #09090b;
}

.pricing-details li::before {
    content: "✔";
    color: #28a745;
    margin-right: 8px;
}

.btn-price {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: #09090b;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

/* Call-to-Action Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8fafc;
}

.cta-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #09090b;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    color: #6d6d6d;
    margin-bottom: 30px;
}

.btn-cta {
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    background-color: #09090b;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #333333;
}



/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
}

/* Small Footer */
.small-footer {
    background-color: #ffffff;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}

.small-footer p {
    margin: 0;
    font-size: 1em;
    color: #b0b0b0;
}

.small-footer strong {
    color: #ffffff; /* Makes "MaNote" stand out */
}


.gradient-text {
    background: linear-gradient(90deg, #bdd978, #6867e4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.yellowtail-regular {
  font-family: "Yellowtail", serif;
  font-weight: 400;
  font-style: normal;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100; /* Augmentez cette valeur pour assurer que la sidebar est au-dessus */
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.side-menu a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: #000000;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #f1f1f1;
}

.side-menu .close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

/* Open/Close Animation */
.side-menu.open {
    width: 250px;
}
