/*
Theme Name: Roomi Fields Landing
Theme URI: https://roomi-fields.com
Author: Romain Peyrichou
Description: A minimal landing page theme for Roomi Fields
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: roomi-fields
*/

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #F2EBE3;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c3e50;
}

.landing-container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.logo {
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
    animation: fadeIn 1.5s ease-in;
}

h1 {
    font-size: 3.5em;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: lowercase;
    margin-bottom: 20px;
    color: #2c3e50;
    animation: slideUp 1s ease-out 0.3s both;
}

.subtitle {
    font-size: 1.3em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #546e7a;
    animation: slideUp 1s ease-out 0.5s both;
}

.construction {
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: #78909c;
    animation: slideUp 1s ease-out 0.7s both;
}

.author {
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 2px;
    color: #90a4ae;
    animation: slideUp 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (max-width: 768px) {
    .logo {
        width: 200px;
        height: 200px;
    }

    h1 {
        font-size: 2.5em;
        letter-spacing: 5px;
    }

    .subtitle {
        font-size: 1em;
        letter-spacing: 2px;
    }

    .construction {
        font-size: 0.9em;
    }
}
