:root {
    color-scheme: light;
    --font-body: "Roboto", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Montserrat", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-text: "Roboto", sans-serif;
    --font-heading-alt: "Roboto Slab", serif;
    --color-background: #ffffff;
    --color-sand: #fff3e0;
    --color-primary: #E0B620;
    --color-secondary: #0d6b68;
    --color-text: #090909;
    --color-muted: #666666;
    --color-cream: #fffaf3;
    line-height: 1.6;
    background-color: var(--color-background);
    color: var(--color-text);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-heading);
    background: var(--color-background);
    color: var(--color-text);
    position: relative;
}

/* Yellow triangles background decoration */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, transparent 0%, transparent 48%, var(--color-primary) 48%, var(--color-primary) 52%, transparent 52%),
        linear-gradient(45deg, transparent 0%, transparent 48%, var(--color-primary) 48%, var(--color-primary) 52%, transparent 52%);
    background-size: 200px 200px, 150px 150px;
    background-position: 0 0, 100px 100px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Triangle top right - larger */
body::after {
    content: '';
    position: fixed;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: var(--color-primary);
    opacity: 0.1;
    transform: rotate(45deg);
    z-index: -1;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Triangle bottom left - larger */
html::after {
    content: '';
    position: fixed;
    bottom: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    background: var(--color-primary);
    opacity: 0.08;
    transform: rotate(-45deg);
    z-index: -1;
    pointer-events: none;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.topbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
}

.topbar__branding {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.topbar__logo {
    width: 72px;
    height: auto;
}

.topbar__subtitle {
    display: block;
    color: var(--color-muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.topbar__nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.topbar__nav a {
    color: var(--color-text);
    position: relative;
    padding-bottom: 0.2rem;
}

.topbar__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.topbar__nav a:hover::after {
    transform: scaleX(1);
}

.topbar__nav .nav-site {
    color: var(--color-primary);
}

.topbar__nav .nav-register {
    color: var(--color-primary);
}

.topbar__nav .nav-contact {
    color: var(--color-primary);
}

.hero {
    position: relative;
    min-height: clamp(420px, 70vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.88), rgba(24, 52, 49, 0.9)), url("../images/hero-open-space.jpg") center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 39, 41, 0.35), rgba(13, 34, 32, 0.65));
}

.hero__content {
    position: relative;
    max-width: min(960px, 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 1rem;
}

.hero__eyebrow {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1.15;
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
}

.hero__subtitle {
    margin: 0;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
}

.hero__cta {
    align-self: center;
    padding: 0.85rem 2.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    background: var(--color-primary);
    box-shadow: 0 20px 35px rgba(224, 182, 32, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-heading);
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 42px rgba(224, 182, 32, 0.5);
    background: #c9a01c;
}

main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    font-size: 1.05rem;
}

.intro__container,
.spaces__container,
.qualities__container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.intro__container {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.intro__image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro__image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro__text h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-top: 0;
    color: var(--color-secondary);
}

.intro__text p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: var(--font-text);
}

.intro__panel {
    background: var(--color-cream);
    border: 1px solid rgba(13, 107, 104, 0.12);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 18px 30px rgba(24, 54, 52, 0.08);
}

.intro__panel h3 {
    margin-top: 0;
    font-family: var(--font-heading);
    font-weight: 600;
}

.intro__list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.intro__list li + li {
    margin-top: 0.6rem;
}

.qualities {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 4rem) 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Yellow triangle decoration for qualities section - larger */
.qualities::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    opacity: 0.12;
    transform: rotate(45deg);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
}

.qualities__container {
    position: relative;
    z-index: 1;
}

.qualities__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.quality-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(13, 107, 104, 0.12);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quality-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.quality-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.quality-card h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.quality-card p {
    margin: 0;
    font-family: var(--font-text);
    color: var(--color-muted);
    line-height: 1.6;
}

/* Spaces section with triangle decoration */
section.spaces {
    position: relative;
    overflow: hidden;
}

section.spaces::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    opacity: 0.1;
    transform: rotate(-45deg);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.spaces__container {
    position: relative;
    z-index: 1;
}

.spaces__lead {
    max-width: 720px;
    margin-top: 0.5rem;
    color: var(--color-muted);
    font-family: var(--font-text);
}

.spaces h2 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
}


.spaces__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.space-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(13, 107, 104, 0.12);
    box-shadow: 0 15px 28px rgba(13, 47, 44, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.space-card--horizontal {
    flex-direction: row;
    align-items: stretch;
}

.space-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(13, 47, 44, 0.14);
}

.space-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.1), rgba(224, 182, 32, 0.1));
    position: relative;
}

.space-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.space-card__thumbnail {
    width: 200px;
    min-width: 200px;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.1), rgba(224, 182, 32, 0.1));
    flex-shrink: 0;
}

.space-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nouvelle version compacte et moderne */
.space-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(13, 107, 104, 0.15);
    box-shadow: 0 4px 12px rgba(13, 47, 44, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.space-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 47, 44, 0.12);
    border-color: rgba(13, 107, 104, 0.25);
}

.space-card-v2__image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.1), rgba(224, 182, 32, 0.1));
    position: relative;
}

.space-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.space-card-v2:hover .space-card-v2__image img {
    transform: scale(1.05);
}

.space-card-v2__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.space-card-v2__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 600;
    line-height: 1.3;
}

.space-card-v2__description {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
    font-family: var(--font-text);
    font-size: 0.9rem;
    flex: 1;
}

.space-card-v2__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 107, 104, 0.1);
}

.space-card-v2__prices {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.space-card-v2__price {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1rem;
    line-height: 1.2;
}

.space-card-v2__price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 0.1rem;
}

.space-card-v2__cta {
    padding: 0.65rem 1.5rem;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(13, 107, 104, 0.2);
}

.space-card-v2__cta:hover {
    background: #0a5a57;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 107, 104, 0.3);
}

.space-card__content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.space-card__content h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.space-card__content p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
    font-family: var(--font-text);
}

.space-card__prices {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 107, 104, 0.1);
}

.price-tag {
    display: inline-block;
    background: rgba(13, 107, 104, 0.08);
    color: var(--color-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-text);
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button + .button {
    margin-left: 0.85rem;
}

.button--primary {
    background: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(13, 107, 104, 0.35);
    font-family: var(--font-heading);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(13, 107, 104, 0.45);
}

.button--ghost {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.button--ghost:hover {
    transform: translateY(-2px);
    background: rgba(224, 182, 32, 0.15);
}

.site-footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--font-heading);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-secondary);
    font-family: var(--font-heading);
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s;
    font-family: var(--font-text);
}

.footer-nav a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #ccc;
    transition: color 0.3s;
    font-family: var(--font-text);
}

.footer-contact a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-copyright a {
    color: #ccc;
    font-size: 14px;
    font-family: var(--font-text);
}

.footer-copyright a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.contact-page {
    display: flex;
    flex-direction: column;
}

.contact-hero {
    position: relative;
    padding: 4.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.85), rgba(36, 78, 74, 0.9)), url("../images/hero-open-space.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 38, 38, 0.4);
}

.contact-hero__content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-hero__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin: 0;
}

.contact-hero__content p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 4rem) 1.5rem;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.contact-info {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(13, 107, 104, 0.12);
    box-shadow: 0 16px 32px rgba(13, 47, 44, 0.08);
}

.contact-info h2 {
    margin-top: 0;
    font-family: var(--font-heading);
}

.contact-info ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li strong {
    color: var(--color-primary);
}

.contact-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(13, 107, 104, 0.12);
    box-shadow: 0 16px 32px rgba(13, 47, 44, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem 1.5rem;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-grid input,
.form-grid textarea {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(13, 107, 104, 0.2);
    border-radius: 14px;
    font: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: rgba(13, 107, 104, 0.6);
    box-shadow: 0 0 0 3px rgba(13, 107, 104, 0.15);
}

.register-page {
    display: flex;
    flex-direction: column;
}

.register-hero {
    position: relative;
    padding: 4.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(224, 182, 32, 0.82), rgba(13, 107, 104, 0.88));
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.register-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 12, 6, 0.35);
}

.register-hero__content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-hero__content h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.1rem);
}

.register-hero__content p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
}

.register-content {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 4rem) 1.5rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.register-panel,
.register-aside {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 2.5rem);
    border: 1px solid rgba(13, 107, 104, 0.12);
    box-shadow: 0 16px 32px rgba(13, 47, 44, 0.08);
}

.register-messages {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.register-msg {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.register-msg--success {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.32);
    color: #0f5132;
}

.register-msg--error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #7f1d1d;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-roles {
    margin: 0;
    border: 1px solid rgba(13, 107, 104, 0.2);
    border-radius: 18px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-roles legend {
    padding: 0 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

.role-option {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.9rem 0.75rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.role-option:hover {
    border-color: rgba(13, 107, 104, 0.35);
    background: rgba(13, 107, 104, 0.05);
}

.role-option input {
    accent-color: #0d6b68;
}

.role-option__label {
    font-weight: 600;
}

.role-option__hint {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.register-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.register-aside h3 {
    margin-top: 0;
    font-family: var(--font-heading);
}

.register-aside p {
    margin: 1rem 0;
    color: var(--color-muted);
}

@media (max-width: 768px) {
    .topbar__container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .topbar__nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro__container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.elementor-invisible {
    opacity: 0;
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 1.25rem;
    }

    .button + .button {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .register-hero {
        padding: 3.5rem 1.2rem;
    }
    .register-content {
        grid-template-columns: 1fr;
    }
}
