/* style.css | Rafa & JP Wedding RSVP App */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
    /* Define the aesthetic variables based on your requests */
    --text-color: #5c5043; /* Rich, dark sepia (letterpress style) */
    --bg-color: #f6f3eb;   /* Warm cream tone */
    --accent-light: rgba(131, 117, 104, 0.15); /* Soft border accent */
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    
    /* Apply the textured botanical wallpaper from image_13.png */
    background-image: url('bg_wallpaper.png'); 
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
}

/* Base styling for all panels (the multi-panel stepper) */
.panel {
    display: none; /* Hide all panels by default */
    width: 100%;
    max-width: 600px; /* Optional: Constrain width for a high-end feel */
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: center;
    transition: opacity 0.8s ease;
    opacity: 0;
}

.panel.active {
    display: block;
    opacity: 1;
}

/* Subtle glassmorphism/blur effect (from your language selector) */
#lookup-panel, .form-container, #summary-panel {
    background: rgba(252, 251, 247, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--accent-light);
}

/* Typography and Button Styling (Cormorant Garamond) */
h2 {
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
}

.rsvp-input, select {
    width: 100%;
    max-width: 310px;
    padding: 18px 20px;
    margin-bottom: 25px;
    border: 1.5px solid var(--text-color);
    background: rgba(252, 251, 247, 0.95);
    color: var(--text-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-sizing: border-box;
}

.open-btn {
    width: 100%;
    max-width: 310px;
    padding: 18px 0;
    margin-top: 15px;
    border: 1.5px solid var(--text-color);
    background: rgba(252, 251, 247, 0.95);
    color: var(--text-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
}

.open-btn:hover {
    background: var(--text-color);
    color: #ffffff;
    letter-spacing: 6px;
}

/* RSVP deadline note (style: cta-text) */
.deadline-note {
    position: fixed;
    bottom: 20px;
    width: 100%;
    left: 0;
    text-align: center;
    font-style: italic;
    font-size: 1.0rem;
    color: var(--text-light);
    letter-spacing: 1px;
}