﻿/* Header styling */
.site-header {
/*   display: flex;  */
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: #f9f6fc; /* soft background */
    position: relative;
  /*  box-shadow: 0 2px 5px rgba(155, 110, 200, 0.1); /* soft purple shadow */
}

.verse {
	text-align:center;
    background: #faf7fc;
    border-radius: 12px;
    padding-top:10px;
}

.verse-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #6e4fa3;
    margin-bottom: 25px;
    margin-top:20px
}
.verse-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: #444;
}
.verse p {
    margin-bottom: 22px;
}

.jjsub-mem{
max-width:1000px; 
margin:auto;
font-family:Arial, sans-serif;
font-size:1.2em;
line-height:1.6; 
color:#333;
background:#f6f0fb;
padding:25px; 
border-radius:10px;
border:1px solid #e2d6f3;
box-shadow:0 2px 6px rgba(0,0,0,0.08);
padding-top:20px;
margin-top:20px;
}


.divider {
    margin: 35px auto;
    width: 60px;
    height: 2px;
    background-color: #d8c8ec;
}
.success {
    color: #7a5aa6;
    text-align: center;
    margin-top: 15px;
}
.error {
    color:red;
    text-align: center;
    margin-top: 15px;
}

body {
    margin: 0;
    padding: 0;
    background: #f6f0fb;
    font-family: Georgia, serif;
    color: #2d2d2d;
    line-height: 1.7;
    text-align:left;
}
.footer {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #777;
}
.logo h1 {
    font-size: 34px;
    color: #5b3a8e;
    margin: 0;
    font-family: 'Georgia', serif;
    text-align: center;
    padding:5px 5px;
}

h2 {
    font-weight: normal;
    color: #7a5ca6;
    margin-top: 0;
    font-size: 1.1rem;
}

.quote {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: #9b6ec8; /* soft glowing purple */
    text-align: center;
}
.contain {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}
/* Photo */
.photo-container {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    margin: 25px 0;
    
            /* fills container */
}

.invite {
    background: #ece1f8;
    padding: 20px;
    border-radius: 12px;
    margin: 10px;
    font-size: 0.95rem;
}
.memorial-photo {
    width: 90%;               /* scales with parent container */
    max-width: 300px;         /* don’t get too huge on large screens */
    height: auto;             /* keeps aspect ratio */
    object-fit: cover;        /* crop edges if needed */
    border-radius: 50%;       /* keeps circular shape */
    margin: 25px auto;
    display: block;
    border: 4px solid #e6d9f7;
}
.memories-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}
.memorial-quote {
    font-family: 'Great Vibes', cursive;   /* Elegant script font */
    font-size: 2.2em;
    font-weight: 400;
    color: #6b4c8b;                         /* Soft pastel purple */
    text-align: center;
    margin: 60px 0 20px 0;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    position: relative;
}

.memorial-quote::before {
    content: "♥";           /* Decorative flourish */
    display: block;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 10px;
	color: #6b4c8b;  /* gentle, warm red */}


.candle-video {
    display: block;
    margin: 30px auto;
    border-radius: 10px; /* optional, keeps soft edges */
    opacity: 0.9;

    /* Soft purple glow */
    box-shadow: 0 0 20px rgba(155, 110, 200, 0.25);

    /* Auto size to video dimensions */
    width: auto;
    height: auto;
    max-width: 200px;  /* responsive: won’t overflow container */
}

 .judith-bckgrnd {
    /* Full-screen background image */
    background-image:url('../images/judith-sunset-faded.jpg'); /* Replace with your image filename */
    background-size: cover;
    background-position: center;
    filter: brightness(80%) blur(2px); /* Softens the image */
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1; /* Puts it behind the text */
  }
  
  /* new */
  
  /* Force masonry layout */
/* Default: mobile */
#photo-gallery {
    display: block !important;
    column-count: 2;
    column-gap: 16px;
    max-width: 1200px;
    margin: 30px auto;
}

#photo-gallery a {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    break-inside: avoid;
}

#photo-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}



@media (min-width: 600px) {
    #photo-gallery {
        column-count: 3;
    }
}

@media (min-width: 800px) {
    #photo-gallery {
        column-count: 4;
    }
}

