/* =====================================================
   Aleya Corporation — CSS Base
   Foundation only (no design)
===================================================== */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root */
:root {
    --font-main: 'Montserrat', sans-serif;
}

/* Document */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Body */
body {
    font-family: var(--font-main);
    line-height: 1.5;
    min-height: 100vh;
    background-color: #F5F5F7;
}

/* Text elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
}

p {
    max-width: 75ch;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Media */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Forms */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Buttons */
button {
    cursor: pointer;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Accessibility */
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
                                                /* NAVBAR CONTAINER */
.navbar {
    position: fixed;
    height: 5rem;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

/* BLUR + TRANSPARENCE */
.navbar-blur {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(18px);
}

/* CONTENT */
.navbar-content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* LOGO */
.navbar-logo img {
    height: 3rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover img {
    opacity: 1;
}

/* LINKS */
.navbar-links {
    display: flex;
    justify-content: center;
    gap: 6rem;
    list-style: none;
}

.navbar-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s ease;
}

.navbar-links a:hover {
    color: white;
}

/* ACCOUNT ICON */
.navbar-account img {
    height: 3rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.navbar-account:hover img {
    opacity: 1;
}
                            /* IMAGE DE FOND FIXE */
.background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("media/Aleya\,\ where\ the\ future\ begins.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* CONTENU QUI SCROLL */
.content {
    position: relative;
    z-index: 1;
    min-height: 200vh; /* juste pour tester le scroll */
}
#section-text1 {
    color: black;
    text-align: center;
    font-weight: bold;
    margin-top: 7%;
    font-size: 20px;
}
#section-text1-1 {
    color: black;
    text-align: center;
    align-items: center;
    margin-top: 1%;
    font-size: 10px;
    display: flex;
    justify-content: center;
}
