body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #334155; }
        .section-heading { font-family: 'Pinyon Script', cursive; font-weight: 400; font-size: 3.5rem; color: #06b6d4; margin-bottom: 1.5rem; }
        h1 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    /* We let Tailwind handle the size in HTML, or set it here */
}

/* Optional: If you want the subheadings (How We Met) to be handwritten too */
h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem; /* Make them bigger if you use script */
}
        #message-box{
        z-index: 999;
        }
        .card { background-color: white; border-radius: 0.75rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); padding: 2rem; }
        .nav-link:hover {color: #06b6d4; }
        .nav-link.active { color: #06b6d4; border-bottom: 2px solid #06b6d4; }
        .page-content { display: none; }
        .page-content.active { display: block; }
        .gallery-grid img, .gallery-grid video { width: 100%; height: 300px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
        .gallery-grid img:hover, .gallery-grid video:hover { transform: scale(1.5); }
        /* target the main content sections to make them champagne */
        #our-story, #event-details, #rsvp, #travel-search, #media-share {
        background-color: #F7E7CE;
        
        }
        #our-story .card p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; /* Handwritten fonts need to be larger to be readable */
    line-height: 1.8;  /* Gives it a bit more breathing room */
    color: #334155;    /* Keeps it a readable dark gray */
    font-weight: 400;
}
.drop-cap::first-letter {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    padding-right: 0.5rem;
    margin-top: -0.1rem; /* Tweak this to align perfectly with the top */
    color: #06b6d4;
}
/* Drop Cap for Right-Aligned Text */
.drop-cap-right::first-letter {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    line-height: 1;
    vertical-align: -10px;
    padding-left: 0.5rem;  /* Adds space between the letter and text */
    color: #06b6d4;
}

/* Optional: Make the bold text (dates/locations) pop */
#our-story .card strong {
    font-weight: 700;
    color: #06b6d4; /* Cyan to match theme */
}
        /* This new rule fixes the translator to the top right */
/* Google Translate Positioning & Sizing */
#google_translate_element {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    
    /* --- THIS MAKES IT SMALLER --- */
    transform: scale(0.75);       /* Shrink to 75% size */
    transform-origin: top right;  /* Stick to the top-right corner while shrinking */
}

/* Mobile Override (Keep this to move it to the bottom on phones) */
@media (max-width: 768px) {
    #google_translate_element {
        top: auto;
        bottom: 1rem;
        
        /* You can make it even smaller on mobile if you want, e.g., 0.70 */
        transform: scale(0.75); 
        transform-origin: bottom right; 
    }
#carousel-inner > img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures your photos fill the space */
    flex-shrink: 0;   /* Prevents images from shrinking */
    background-color: black; /* for vertical photos*/
}
/* Make the Google Widget look cleaner */
.goog-te-gadget-simple {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 6px 12px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Hide the Google Logo branding to save space */
.goog-te-gadget-icon {
    display: none !important;
}

/* Mobile Translator Adjustments */
@media (max-width: 768px) {
    #google_translate_element {
        bottom: 1rem; 
        right: 1rem;
        top: auto;
        /* Scale it down to 85% size on phones */
        transform: scale(0.85); 
        transform-origin: bottom right;
    }
