@import "../../assets/base/flash.css";

@import "../../assets/base/reset.css";
@import "../../assets/base/base.css"; 
@import "../../assets/base/form.css";

/* @import "../../assets/base/icons.css";
@import "../../assets/base/image-library-modal.css"; */


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fafafa;
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer,
.inner {
    width: 100%;
    height: 100%;
}

main.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main.main > * {
    width: 100%;
}

.inner {
    max-width: 80rem;
    margin: auto;
}

.container {
    text-align: center;
    /* max-width: 800px; */
    padding: 0 2rem;
    position: relative;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle,
.section-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 1.237rem + 1.404vw, 2.5rem);
    font-weight: 300;
    color: #666;
    /* margin-bottom: 3rem; */
    letter-spacing: .0625rem;
}

.description,
.body p {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: clamp(1.25rem, 3vw, 1.8rem); */
    font-weight: 400;
    color: #444;
    letter-spacing: .0375rem;
    word-spacing: .125rem;
    font-style: italic;
    font-size: 1.25rem;
    margin: 0;
}

.body p {
    margin: 1rem 0;
}

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ccc, transparent);
    margin: 2rem auto;
}

.bg-home header.header,
.bg-home header.header * {
    visibility: hidden;
    height: 0;
    margin: 0;
}

.img-panel {
    display: none;
}

footer.footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    font-variant: all-small-caps;
    color: rgba(0,0,0, .85);
    text-align: center;
    width: 50rem;
    letter-spacing: .125rem;
}

.button {
    /* opacity: 0; */
    /* animation: fadeIn 3s ease-out 4s forwards; */
    /* background-color: #f17080; */
    /* background-color: #c6e3e7; */
    display: inline-block;
    /* justify-content: center;
    align-items: center; */
    text-align: center;
    margin-top: 6rem;
    color: #1a1a1a;
    border: .0625rem dotted rgba(102, 102, 102, .25);
    border: .0625rem solid #ccc;
    /* color: #fff; */
    letter-spacing: .25rem;
    font-family: 'Cinzel', serif;
    padding: .5rem 4rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 100;
    border-radius: .25rem;
    transition: .25s;
}

.button:hover {
    /* box-shadow: 0 0 2rem rgba(0,0,0, .15); */
    transition: .3s;
    background-color: orangered;
    background-color: #aca7cb;
    background-color: #00979d;
    color: #fff;
}

.admin.actions .button {
    margin: 2rem 0;
}

@media (max-width: 48rem) {
    .container {
        padding: 0 1rem;
    }
    
    .main-title {
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
}

/* Subtle animation on load */
.container {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        /* transform: translateY(20px); */
    }
    to {
        opacity: 1;
        /* transform: translateY(0); */
    }
}

