/* Wedding CSS Styles */
/* Pallette:
#2c3316
#5a612d
#e3b23c
#9d3d41
#5d331e
*/

/* Fonts */
@font-face {
    font-family: 'UnifrakturMaguntia';
    src: url("../fonts/UnifrakturMaguntia/UnifrakturMaguntia-Regular-jqvl_RP.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PoiretOne';
    src: url("../fonts/Poiret_One/PoiretOne-Regular-ndB0TCv.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

.not-a-real-class {
    background-color: #2c3316;
    background-color: #5a612d;
    background-color: #e3b23c;
    background-color: #9d3d41;
    background-color: #5d331e;
}

/* body{
    background-color: #1e230d;
    font-family: 'PoiretOne', sans-serif ;
} */
body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("../aseprite/BG-TDP8Jgm.png");
    background-size: 100% 100%;
    /* Forces stretch to fit exactly */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    /* Prevent scrolling */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'UnifrakturMaguntia', serif;
    color: #e3b23c;
    text-shadow: 5px 5px 4px #000000;
}

p {
    color: #e3b23c;
    text-shadow: 5px 5px 20px #000000;
}
.border-text{
margin: 0px;
    font-family: 'UnifrakturMaguntia', serif;
}

.text-xxs {
    font-size: 0.3rem;
}

.full-width {
    width: 100%;
}

.text-center {
    text-align: center;
}

.content-section {
    /* padding: 10px; */
    width: 100%;
}

.title-large {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;
}

.title-medium {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    /* margin-bottom: 0px; */
    margin-bottom: 0.5rem;
    /* margin-top: 0px; */
    margin-top: 0.5rem;
}

.event-details {
    text-align: center;
    font-size: 1rem;
    padding: 5px 0;
    font-family: 'PoiretOne', serif;
    font-weight: bold;
    margin: 0px;
}

.event-details div {
    margin: 2px 0;
}

.image-container {
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.hero-image {
    border: 3px solid #9d3d41;
    border-style: inset;
    max-height: 280px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto;
}

.legible-background {
    background-color: rgba(44, 51, 22, 0.8);
    /* Semi-transparent background for legibility */
    padding: 10px;
    margin: 2% 20% 0% 20%;
    /* Desktop: 20% side margins */
    border: 5px solid #9d3d41;
    border-style: double;
}

@media (min-width: 1301px) {
   .hero-image {
        max-height: 500px;
    } 
}
@media (min-width: 992px) and (max-width : 1300px){

    .hero-image {
        max-height: 280px;
    }
}

/* Mobile devices (screens smaller than 768px) */
@media (max-width: 820px) {
    body {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            url("../aseprite/BG-TDP8Jgm.png");
        background-size: 100% auto;
        /* Forces stretch to fit exactly */
        background-position: top center;
        background-repeat: repeat-y;
        background-attachment: fixed;
        height: 100vh;
        width: 100vw;
        margin: 0;
        overflow: hidden;
        /* Prevent scrolling */
    }

    .legible-background {
        margin: 10% 5% 0% 5%;
        padding: 15px;
    }

    .title-large {
        font-size: 2rem;
    }

    .title-medium {
        font-size: 1.5rem;
    }

    .event-details {
        font-size: 0.7rem;
    }

    .content-section {
        /* padding: 15px; */
    }

    .image-container {
        padding: 0 15px;
    }

    .hero-image {
        max-height: 200px;
    }
}

/* Very small devices (phones in portrait) */
@media (max-width: 480px) {
    body {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            url("../aseprite/BG-TDP8Jgm.png");
        background-size: 100% auto;
        /* Forces stretch to fit exactly */
        background-position: top center;
        background-repeat: repeat-y;
        background-attachment: fixed;
        height: 100vh;
        width: 100vw;
        margin: 0;
        overflow: hidden;
        /* Prevent scrolling */
    }

    .legible-background {
        margin: 10% 5% 0% 5%;
        /* Even smaller margins */
    }
}