:root {
    --primary-color: #D64268; /* Vibrant Rose Pink from logo image */
    --primary-bg-light: #FCEEF2; /* Light pink background tint */
    --text-color: #5D4037; /* Brownish text */
    --text-secondary: #8D6E63;
    --bg-color: #FFFDF9; /* Warm white/cream */
    --font-script: 'Pinyon Script', cursive; /* Elegant script */
    --font-monogram: 'Cinzel', serif; /* Sharp serif for logo */
    --font-body: 'Montserrat', sans-serif; /* Clean modern for auxiliary text */
    --font-serif: 'Lora', serif; /* Classic for quotes/months */
}
body{
    background-color: var(--bg-color);
    padding-bottom: 40px;
    
}
.coracao{
    color: var(--primary-color);
}
.fleur-de-leah-regular {
  font-family: "Fleur De Leah", cursive !important;
  font-weight: 400;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body) !important;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Subtle paper texture effect */
    background-image: url('assets/images/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 600px; /* Mobile/Card width */
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 8px; /* Slight softening if card-like */
    backdrop-filter: blur(2px);
}

/* Typography & Sections */

.intro-quote {
    font-family: var(--font-body) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* --- MONOGRAM SECTION --- */
.monogram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    flex-wrap: wrap; /* Wraps on very small screens */
}

.side-name {
    font-family: var(--font-script) !important;
    font-size: 3rem;
    color: var(--text-color);
    white-space: nowrap;
}

.monogram-logo {
    font-family: "Fleur De Leah", cursive !important;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    line-height: 1;
}


.letter-a {
    color: var(--primary-color);
    text-align: left;
    padding-bottom: 1rem;
}

.heart{
 margin-top: 5rem;   
 margin-left: -10rem;
}


.letter-j {
    color: var(--primary-color);
    text-align: right;
    margin-left: -10rem;
    margin-top: 10rem;
    padding-top: 1;   
}
/* ------------------------ */


.logo {
    width: 100%;
    max-width: 500px; /* Adjusts properly on desktop without being too huge */
    margin: 0 auto 10px auto;
}

.logo img {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block;
}

.invite-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6D4C41;
    margin-bottom: 30px;
}

/* Date Section */
.date-section {
    border-top: 1px solid rgba(214, 66, 104, 0.2);
    border-bottom: 1px solid rgba(214, 66, 104, 0.2);
    padding: 20px 0;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.month {
    font-family: var(--font-body) !important;
    font-weight: 400;
    font-size: 1.8rem;
    color: #6d3947; 
    letter-spacing: 2px;
    margin-bottom: 5px;
    margin-left: -10px;
}

.date-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-color);
    margin: 5px 0;
}

.weekday, .time {
    font-size: 1.1rem;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 2px 10px;
    font-family: var(--font-body) !important;
}

.day-number {
    font-family: var(--font-serif) !important;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
    color: #6d3947; 
}

.year {
    font-family: var(--font-serif) !important;
    font-size: 2rem;
    font-weight: 400;
    color: #6d3947; 
    margin-top: 5px;
    margin-left: -10px;
}

/* Location */
.location-section {
    margin-top: 10px;
}

.venue-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.venue-address {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #795548;
}

/* Actions */
.actions-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
}

.circle-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(214, 66, 104, 0.3);
}

.circle-icon:hover {
    transform: translateY(-3px);
    background-color: #b73a55;
}

.action-label {
    font-size: 0.75rem;
    line-height: 1.2;
    color: #4e342e;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Responsive Adjustments */
@media (max-width: 600px) {
    .monogram-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .monogram-logo {
        order: 2; 
        margin: 10px 0;
    }
    
    .side-name.left {
        order: 1;
    }
    
    .side-name.right {
        order: 3;
    }
    
    .floral-corner {
        width: 200px;
        height: 200px;
    }

    body {
        background-image: url('assets/images/fundo1.png');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better support on mobile */
    }

    .actions-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 20px;
    }

    .action-item {
        width: auto;
    }
}

/* Music Control Button */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s;
    animation: pulse 2s infinite;
}

.music-control:hover {
    transform: scale(1.1);
    background-color: #b73a55;
}

.music-control i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 66, 104, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(214, 66, 104, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 66, 104, 0);
    }
}
