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

:root {
    --orange-light: #d9a475;
    --orange-mid: #c68450;
    --orange-dark: #b85a27;
    --orange-darker: #a0440e;
    --cream: #f5e6d3;
    --white: #ffffff;
    --text-light: #ffffff;
}

html {
    scroll-behavior: smooth;
    /*background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-mid) 50%, var(--orange-dark) 100%);*/
    background-color: var(--orange-darker);
}

body {
    /*font-family: 'Poppins', sans-serif;*/
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    background-image: url('./images/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    color: var(--text-light);
    min-width: 400px;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}


.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Courbes organiques */
.organic-curves {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 400px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.organic-curves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 350px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    /*width: 800px;*/
    max-width: 920px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out;
}

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

/* LOGO SECTION */
.logo-section {
    /*margin-top: 250px;*/
    margin-top: 10%;
    margin-bottom: 0px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: -10px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon {
    font-family: 'Caveat', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.95;
    font-style: italic;
    animation: slideUp 0.8s ease-out 0.2s both;
}

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

/* QUOTE SECTION */
.quote-section {
    margin-bottom: 50px;
    padding: 30px 20px;
}

.quote {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.quote-mark {
    /*font-size: 48px;*/
    font-size: 24px;
    opacity: 0.6;
    font-family: 'Playfair Display', serif;
}

.quote .highlight {
    font-style: italic;
    font-weight: bold;
    /*text-decoration: underline;*/
    /*text-decoration-color: rgba(255, 255, 255, 0.5);*/
    /*text-underline-offset: 4px;*/
}

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

/* NEWSLETTER SECTION */
.newsletter-section {
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.newsletter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.newsletter-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    gap: 0;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 50px;
    background: var(--cream);
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

input[type="email"] {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--orange-dark);
    font-family: 'Poppins', sans-serif;
    outline: none;
}

input[type="email"]::placeholder {
    color: var(--orange-mid);
    opacity: 0.7;
}

input[type="email"]:focus {
    color: var(--orange-darker);
}

.btn-submit {
    padding: 14px 32px;
    background: transparent;
    border: none;
    color: var(--orange-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    border-radius: 50px;
}

.btn-submit:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-text {
    display: inline-block;
}

/* Form Messages */
.form-message {
    min-height: 24px;
    font-size: 13px;
    margin-top: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #fca5a5;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.footer-text {
    letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    body {
        background-position: left;
    }

    .logo-text {
        font-size: 80px;
    }

    .logo-section img {
        height: 8vh;
    }

    .coming-soon {
        font-size: 36px;
    }

    .quote {
        font-size: 16px;
    }

    .organic-curves {
        width: 300px;
        height: 250px;
    }

    .organic-curves-bottom {
        width: 350px;
        height: 250px;
    }

    .form-group {
        flex-direction: row;
        max-width: 360px;
    }

    input[type="email"] {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        min-height: auto;
        padding: 20px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .logo-text {
        font-size: 60px;
    }

    .coming-soon {
        font-size: 28px;
    }

    .quote {
        font-size: 15px;
        line-height: 1.6;
        padding: 20px 0;
    }

    .quote-mark {
        /*font-size: 36px;*/
        font-size: 18px;
    }

    .newsletter-label {
        font-size: 13px;
    }

    .form-group {
        flex-direction: column;
        border-radius: 12px;
        gap: 8px;
        padding: 12px;
    }

    input[type="email"] {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
    }

    .btn-submit {
        padding: 12px 16px;
        font-size: 13px;
        width: 100%;
    }

    .organic-curves {
        width: 200px;
        height: 200px;
    }

    .organic-curves-bottom {
        width: 250px;
        height: 200px;
    }
}

/* Animations micro-interactions */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

input[type="email"]:focus {
    animation: subtle-glow 0.3s ease-out;
}

@keyframes subtle-glow {
    from {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    to {
        box-shadow: 0 10px 40px rgba(184, 90, 39, 0.2);
    }
}
