@font-face {
    font-family: 'SnellRoundhand Script';
    src: url('/fonts/SnellRoundhand-Script.woff2') format('woff2'),
        url('/fonts/SnellRoundhand-Script.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Optima';
    src: url('/fonts/Optima-Regular.woff2') format('woff2'),
        url('/fonts/Optima-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f3efdd;
    overflow-x: hidden;
}


#content {
    background-color: #f3efdd;
    min-height: 100vh;
}

.intro-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px;
    flex-wrap: wrap;
}

.intro-image img {
    width: 250px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.intro-text {
    max-width: 500px;
}

.intro-text h1 {
    font-family: 'SnellRoundhand Script';
    font-size: 55px;
    color: #e6a3a3;
    margin-bottom: 20px;
}

.intro-text p {
    font-family: 'Optima';
    font-size: 20px;
    color: #83874b;
    line-height: 1.6;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-family: 'Optima';
    font-size: 20px;
    color: #83874b;
}

.icon-item svg {
    width: 18px;
    height: 18px;
    fill: #83874b;
    flex-shrink: 0;
}

.list-title {
    text-align: center;
    font-family: 'SnellRoundhand Script';
    font-size: 60px;
    color: #e6a3a3;
    background-color: #f3efdd;
    padding: 40px 0;
    margin: 0;
}


.list100-section {
    display: flex;
    justify-content: center;
}

.list-caption {
    font-family: 'Optima';
    font-size: 20px;
    color: #d68e8e;
    width: 480px;
    margin: 0 auto;
    text-align: center;
}

.banner {
    background-color: #ffdcd5;
    text-align: center;
    padding: 50px 0;
}

.banner h2 {
    font-family: 'SnellRoundhand Script';
    font-size: 60px;
    color: #787f17;
    margin: 0;
}

.bag-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    background-color: #f3efdd;
    min-height: auto;
    margin-top: 100px;
}


.bag-center img {
    width: 470px;
    max-width: 80%;
    z-index: 2;
    position: relative;
}

.bag-items {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 500px;
    transform: translate(-50%, -50%);
}

.bag-item {
    position: absolute;
    text-align: center;
}

.bag-item img {
    max-height: 300px;
    max-width: 300px;
    width: auto;
}

.item1 img {
    height: 150px;
}

.item2 img {
    height: 160px;
}

.item3 img {
    height: 130px;
}

.item4 img {
    height: 140px;
}

.item5 img {
    width: 220px;
}


.item1 {
    /* lotion */
    top: 0%;
    left: 1%;
    transform: rotate(-25deg);
}

.item2 {
    /* perfume */
    top: 55%;
    left: 1%;
    transform: rotate(5deg);
}

.item3 {
    /* wallet */
    top: 10%;
    right: 5%;
    transform: rotate(6deg);
}

.item4 {
    /* phone */
    top: 50%;
    right: 12%;
    transform: rotate(-10deg);
}

.item5 {
    /* sunnies */
    top: -10%;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
}

.bag-item p {
    font-family: 'Optima';
    font-size: 14px;
    color: #83874b;
    margin-top: 6px;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.socials-grid a img {
    width: auto;
    height: 65px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.socials-grid a img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


#blog {
    font-family: 'Optima';
    font-size: 18px;
    color: #83874b;
    line-height: 1.6;
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

#blog h1 {
    font-size: 25px;
    margin: 20px 0 0 0;
    padding: 10px 5px 2px 5px;
    background-color: #83874b;
    color: #f3efdd;
    line-height: 1.2em;
}

#blog h1+p em {
    display: block;
    font-size: 0.8em;
    font-style: italic;
    margin: 0;
    padding: 2px 5px 8px 35px;
    background-color: #83874b;
    color: #f3efdd;
}

#blog h1+p+p {
    margin-top: 15px;
}


#blog blockquote {
    border-left: 5px solid #e6a3a3;
    padding: 10px 20px;
    margin: 15px 0;
    font-style: italic;
}


.thoughts-title {
    text-align: center;
    font-family: "Pinyon Script", cursive;
    font-size: 60px;
    color: #e6a3a3;
    background-color: #f3efdd;
    padding: 40px 0 0 0;
    margin: 0;
}

.ootd-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3efdd;
    padding: 80px 20px;
}

.ootd-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ootd-center img {
    width: auto;
    height: 350px;
}

#recs {
    font-family: 'Optima';
    font-size: 18px;
    color: #83874b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

#recs h1 {
    font-size: 25px;
    margin: 20px 0 0 0;
    padding: 10px 5px 2px 5px;
    background-color: #83874b;
    color: #f3efdd;
    line-height: 1.2em;
}

#recs h1+p em {
    display: block;
    font-size: 0.8em;
    font-style: italic;
    margin: 0;
    padding: 2px 5px 8px 35px;
    background-color: #83874b;
    color: #f3efdd;
}

#recs h1+p+p {
    margin-top: 15px;
}

#recs blockquote {
    border-left: 5px solid #e6a3a3;
    padding: 10px 20px;
    margin: 15px 0;
    font-style: italic;
}

#recs img {
    float: left;
    margin: 5px 20px 15px 0;
    width: 150px;
    height: auto;
}