

@font-face{
    font-family:"americancursive";
    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:#ab855d;
    --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;

    transform:scale(0.85);
    transform-origin:top center;
}

/* TITLE */

h1{
    text-align:center;
    font-family:"americancursive", cursive;
    font-size:54px;
    color:#ab855d;
 font-weight:normal;
    text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;

    margin:0;
    
}



h2,h3{
  color:#7e95a6;
  text-align:center;
  font-size:18px;
}
.main-wrapper{

    padding:12px;

    background:
        repeating-linear-gradient(
            90deg,
            #eef2fa 0px,
            #eef2fa 1px,
            #f8fcfd 1px,
            #f8fcfd 2px
        );

    border:1px solid #c18b66;

    box-shadow:
        0 0 0 2px #f8f9ff,
        0 0 0 4px #d7dff0;
}
.main-wrapper{
    position:relative;
}
.main-wrapper::before{
    content:"";

    position:absolute;

    top:-14px;
    left:-14px;
    right:-14px;
    bottom:-14px;

    border-width:10px;
    border-style:solid;

    border-image:
    url("https://file.garden/accI0K3f6w5_tccC/bo-ha26%20(1).gif")
    8 fill round;

    z-index:-1;
}
.main{
    display:grid;
    grid-template-columns:180px minmax(0,1fr) 180px;
    gap:10px;
    align-items:start;
}

.middle{
    min-width:0;
}
/* CARDS */

.card{
    background:transparent;

    border:1px solid #c18b66;

    box-shadow:
        0 0 0 2px #f8f9ff,
        0 0 0 4px #d7dff0;
}

.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{
    position:relative;
    padding:18px;
    background:white;
    overflow:hidden;
}


/* 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:#ab855d;
    margin-top:10px;
}
.bio-card hr{
    border:none;
    border-top:1px solid #d7dff0;
    margin:12px 0;
}

/* 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;

  
}

.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;
}



@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;
}


.thumb{
    text-align:center;
    font-size:11px;
}

.thumb div{
    margin-top:4px;
    color:#6d8596;
}

.photo-links a{
    display:block;
    padding-left:14px;
    position:relative;
    white-space:nowrap;
}

.photo-links a::before{
    content:"";

    position:absolute;
    left:-6px;
    top:50%;

    width:12px;
    height:12px;

    transform:translateY(-50%);

    background-image:url("https://file.garden/accI0K3f6w5_tccC/folder%20(2).png");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.archive-banner{

    background:
    repeating-linear-gradient(
        90deg,
        #eef2fa 0px,
        #eef2fa 6px,
        #f8fbfd 6px,
        #f8fbfd 12px
    );

    border:1px solid #d9c2a9;

    padding:35px 15px;

    text-align:center;

    position:relative;

    margin-bottom:15px;
}

.archive-title{

    font-family:"americancursive", cursive;

    font-size:38px;

    color:#ab855d;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;
}

.archive-title img{

    width:18px;
    height:18px;

    image-rendering:pixelated;
}

.archive-subtitle{

    margin-top:10px;

    font-size:12px;

    letter-spacing:1px;

    color:#7a7a7a;
}
.filmography-table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}

.filmography-table th{
    background:#dfeaf2;
    color:#536675;
    border:1px solid #bfd2df;
    padding:6px;
}

.filmography-table td{
    border:1px solid #bfd2df;
    padding:6px;
}

.filmography-table tr:nth-child(even){
    background:#fafcff;
}
.film-grid{
    display:flex;
    gap:15px;

    overflow-x:auto;
    overflow-y:hidden;

    width:100%;
    max-width:100%;

    padding:10px 5px;
}

.film-item{
flex:0 0 calc((100% - 30px) / 3);

text-decoration:none;
text-align:center;
display:block;
}

.film-item img{
width:100%;
display:block;
border:1px solid #d8d8d8;
padding:4px;
background:#fff;
box-sizing:border-box;
}

.film-item span{
display:block;
margin-top:8px;
font-size:11px;
line-height:1.4;
color:#666;
}

.film-item:hover img{
opacity:.85;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:15px;
}

.gallery-card{
display:block;
text-decoration:none;
text-align:center;

background:#fff;
border:1px solid #c18b66;

padding:8px;
}

.gallery-card img{
width:100%;
height:180px;
object-fit:cover;

display:block;
}

.gallery-card span{
display:block;
margin-top:8px;

font-size:11px;
line-height:1.5;
color:#666;
}

.gallery-card:hover{
background:#f7f3eb;
}


.photo-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
margin-top:15px;
}

.photo-gallery a{
display:block;
}

.photo-gallery img{
width:100%;
display:block;
height:220px;
object-fit:cover;

border:3px solid white;
}