/*
Theme Name: Chérierobe
Theme URI: https://example.com/cherierobe
Author: Antigravity
Author URI: https://example.com
Description: WordPress Theme for Chérierobe
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cherierobe
*/

/* Basic Styles */
body {
    background-color: #fdfbfd;
    color: #4a524a;
    font-family: "Noto Serif JP", serif;
    line-height: 2.0;
}

.cinzel {
    font-family: "Cinzel", serif;
}

/* Animation Utility Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form 7 Submit Button Style */
/* Contact Form 7 Submit Button Style */
.wpcf7 input[type="submit"] {
    display: block;
    /* Changed for centering */
    margin: 40px auto 0;
    /* Centering with top margin */
    background-color: transparent;
    border: 1px solid #9ca3af;
    color: #4b5563;
    padding: 12px 48px;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.5s;
    border-color: #6e7f70;
    color: #6e7f70;
    width: fit-content;
    /* Ensure it doesn't stretch */
}

.wpcf7 input[type="submit"]:hover {
    background-color: #6e7f70;
    color: #ffffff;
}