

@font-face{
    font-family:"darling";
    src:url("fonts/americancursive.ttf");
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Parisienne&display=swap');

:root{
    --cream:#fffaf8;
    --pink:#f8e6eb;
    --pink-dark:#d7a5b2;
    --rose:#b57f8d;
    --text:#6e5960;
    --white:#ffffff;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:10px;

    font-family:"MS UI GOTHIC",sans-serif;
    font-size:14px;
    color:#333;

     background-color:#fcfaf8;

    background-image:
        radial-gradient(#fae9d6 1.5px, transparent 1.5px),
        radial-gradient(#fae9d6 1.5px, transparent 1.5px);

    background-size:38px 38px;
    background-position:0 0, 19px 19px;
}

.container{
    max-width:900px;
    margin:auto;
}

/* TITLE */

h1{
    text-align:center;
    font-family:"darling", cursive;
    font-size:54px;
    color:#ab855d;

    filter:
        drop-shadow(-1px 0 white)
        drop-shadow(1px 0 white)
        drop-shadow(0 -1px white)
        drop-shadow(0 1px white);

    margin:0;
}



h2,h3{
  color:#7e95a6;
  text-align:center;
  font-size:18px;
}

.main{
    display:grid;
    grid-template-columns:180px 1fr 180px;
    gap:10px;
    align-items:start;
}

/* CARDS */

.card{
  background:transparent;


  border:1px solid #c18b66;

  border-radius:0px;

  box-shadow:none;
}

.card::before{
    

    position:absolute;
    top:10px;
    left:15px;

    color:#e1b5c0;
    font-size:14px;
}

.card::after{
    

    position:absolute;
    top:10px;
    right:15px;

    color:#e1b5c0;
    font-size:14px;
}

.card-body{
    padding:18px;
}

/* BIO */

.bio-card img{
    display:block;
    margin:auto;

   width:110px;
    height:145px;
    object-fit:cover;

    border-radius:0px;

    border:4px solid white;

    box-shadow:none;
}

.bio-card b{
    display:block;
    text-align:center;
    color:var(--rose);
    margin-top:10px;
}

/* LACE DECORATION */

.lace{
    position:relative;
}



/* LINKS */

a{
  color:#6d8596;
}

a:hover{
  color:#9bb0be;
}

/* NAVIGATION */

.title{
  text-align:center;

  background:#dfeaf2;

  border:1px solid #a6b9c7;

  border-radius:999px;

  padding:2px 10px;

  font-size:12px;

  color:#536675;

  display:inline-block;
}

.button{
  width:100%;
  margin:4px 0;
}

.button a{
  display:block;

  padding:6px 10px;

  background:#ffffff;

  border:1px solid #bfd2df;

  border-radius:0px;

  color:#536675;

  text-decoration:none;

  box-shadow:none;

  transition:.15s;
}

.button a:hover{
  background:#eef5f8;

  transform:translateY(1px);

  box-shadow:none;
}

/* PHOTOS */

img{
    max-width:100%;

    transition:.3s;

    border-radius:0px;

    filter:
    brightness(1.03)
    contrast(.95)
    saturate(.92);
}

img:hover{
    transform:scale(1.02);
}

.middle img{
    border:3px solid white;

    box-shadow:none;
}

/* GALLERY LINKS */

.middle a{
    background:#f7f3eb;
    border:1px solid #c18b66;
}

.middle a:hover{
    background:#edf5f8;
}

/* LISTS */

ul{
    padding-left:20px;
}

li{
    margin-bottom:5px;
}

/* CALENDAR */

.mini-calendar{
    background:white;

    border:1px solid #efd6dc;

    border-radius:0px;

    padding:12px;

    box-shadow:none;
}

/* HR */

hr{
    border:none;
    border-top:1px solid #f0d8de;
    margin:12px 0;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#fff3f6;
}

::-webkit-scrollbar-thumb{
    background:#e5bcc7;
    border-radius:0px;
}

/* FOOTER STYLE DETAILS */

.card p{
    line-height:1.5;
}

/* FLOATING SPARKLE EFFECT */

.container{
    animation:floaty 7s ease-in-out infinite;
}

@keyframes floaty{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-3px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* ===== decorations ===== */
.lace{
    border-width:10px;
    border-style:solid;
    border-image:url("https://file.garden/accI0K3f6w5_tccC/bo-ha26%20(1).gif") 8 fill round;
}
