body{
    background-color: pink;
    font-family: 'Franklin Gothic Medium';
    text-align: center;
}
h1{
    color: rgb(173, 125, 211);
}
p{
    color: rgb(194, 145, 235);
    font-size: 18px;
}
img{
    width: 200px;
    border-radius: 18px;
}
.review {
    margin: 20px;
}

.review{
    background-color: ivory;
    width: 72%;
    margin: 35px auto;
    padding: 35px 30px ;
    border-radius: 28px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin: 20px 0 30px 0;
}

.nav-button {
    background-color: ivory;
    color: rgb(173, 125, 211);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    transition: all 0.2s ease;   
}

.nav-button:hover {
    background-color: rgb(173, 125, 211);
    color: ivory;
}
.nav-button{
    transition: all 0.2s ease;
}
.nav-button:hover {
    background-color: rgb(173, 125, 211);
    color: ivory;
    transform: translateY(-2px);
}

.logo {
    background: linear-gradient(135deg, #d8f3dc, #e6ffe6);

    border: 2px solid #cdeac0;
    border-radius: 30px;

    padding: 24px 32px;
    margin: 25px auto 35px auto;
    width: 82%;

    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
  

.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.logo h1 {
    color: #a98fd6;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.logo-icon {
    width: 52
    x;
    height: auto;
    transform: rotate(-8deg);
}
.logo {
    position: relative;
}
logo::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: radial-gradient(circle, #b7e4c7 2px, transparent 2px);
    background-size: 12px 12px;
}

.intro {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 20px auto;
    padding: 10px 20px;
    color: #7c4cc9;
}

.intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #5f2ea8;
}

.intro p {
    font-size: 24px;
    line-height: 1.5;
    margin: 10px 0;
}

.home-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0 40px 0;
}

.intro {
   background-color: ivory;
    width: 60%;
    margin: 40px auto;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.01);
    text-align: center;
}


.posts {
    display: grid;
    grid-template-columns: repeat(5, minmax(260px, 260px)) ;
    justify-content: center;
    margin: 40px auto;
    gap: 30px;
}

.post {
    background: ivory;
    padding: 18px;
    border-radius: 24px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
   
}

.post img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.post p  {
    margin: 12px 0;
}

.vlog-post  {
    background: ivory;
    padding: 18px;
    border-radius: 24px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;

}

.vlog-post img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: ivory;
    border-radius: 18px;
    display: block;
}

.vlog-post p {
    margin: 12px 0;
}

.vlog-posts {
    display: grid;
    grid-template-columns: repeat(4, minmac(220px, 220px));
    justify-content: center;
    margin: 40px auto;
    gap: 30px;
}
