@charset "UTF-8";

.contain {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

h1 {
    color: #ff8a65;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.header {
    background-color: #fff8e7;
    color: #ff8a65;
    border-radius: 30px;
    padding: 30px 20px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    text-align: center;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px;
}

li {
    background-color: #ffe9dc;
    color: #ff7043;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

li:hover {
    background-color: #ffe0d3;
}

body {
    background: linear-gradient(135deg, #fff8e7, #ffe4e1),
    url(images/bg-cherrybrossam.jpg);
    background-size: cover;
    font-family: 'Zen Maru Gothic', sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h2 {
    color: #ff8a65;
    font-size: 32px;
    padding: 40px 0 20px;
    border-bottom: 3px solid #ff8a65;
    width: fit-content;
    margin: 0 auto 30px;
}

h3 {
    font-weight: bold;
    color: #444444;
}

.box_banner {
    background: #fff;
    width: 48%;
    min-width: 280px;
    padding: 10px;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.box_banner p {
    margin-top: 10px;
    color: #444444;
}

.boxs,
.box_flex {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto 50px;
    padding: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 30px;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}


.box_flex p {
    line-height: 1.0;
    display: block;
    margin-block-start: 2em;
    margin-block-end: 1em;
    margin-inline-start: 15px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    text-align: left;
    padding: 15px;
    color: #444444;
}

.menu {
    text-align: center;
    margin-bottom: 60px;
}

.flex-img {
    width: 50%;
    max-width: 500px;
    display: block;
    position: relative;
    top: 100px;
    left: 20px;
}

.flex-text {
    width: 50%;
    box-sizing: border-box;
    padding: 15px;
}

.menu a {
    display: inline-block;
    color: white;
    background-color: #ff8a65;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.menu a:hover {
    background-color: #ffab91;
    color: #fff;
    transform: scale(1.05);
}


.footer-content {
    background-color: #fff8e7;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-radius: 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.footer-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #ff7043;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #d65c2d; 
    text-decoration: underline;
}

.social img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

@media screen and (max-width: 768px) {
    .boxs,
    .box_flex {
        flex-direction: column;
    }

    .box_banner,
    .flex-img,
    .flex-text {
        width: 100%;
    }

    h2 {
        padding: 40px 10px;
        font-size: 28px;
    }
}