* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#menu {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}


.logo {
    font-family: "animalchariot";
    font-size: 50px;
    font-weight: 900;
    color: black;
    list-style: none;
    cursor: pointer;
}


.nav {
    list-style: none;
    display: flex;
    gap: 60px;
    align-items: center;
}


.nav li a {
    text-decoration: none;
    color: black;
    font-family: "courgette";
    font-size: 26px;
    font-weight: 900;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav li a:hover {
    color: blue;
    background-color: lightgrey;
    transition: 0.3s;
}

.nav li a:hover {
    color: rgb(255, 146, 146);
    transition: 0.3s;
}


#our-story {
    width: 100%;
    margin-top: 80px;
    text-align: center;
}

#our-story h2 {
    font-family: "Courgette";
    font-size: 45px;
    margin-bottom: 40px;
}

.story-box {
    width: 85%;
    margin: auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 14px;

    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    text-align: center;

    line-height: 1.7;
    font-size: 20px;
    font-family: "Courgette";
    color: #333;

    transition: 0.3s ease;
}

.story-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.25);
}

.story-box p {
    margin-bottom: 20px;
}

#middle-image {
    width: 100%;
    margin: 70px 0;
    display: flex;
    justify-content: center;
}

#middle-image {
    width: 100%;
    margin: 80px 0;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 98%;
    max-width: 1800px;
    border: 4px solid rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4);
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}




#creator {
    width: 100%;
    margin-top: 80px;
    text-align: center;
}

#creator h2 {
    font-family: "Courgette";
    font-size: 45px;
    margin-bottom: 40px;
}

.creator-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.creator-box {
    background: #fff;
    border-radius: 14px;
    padding: 35px;
    text-decoration: none;
    color: black;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
    display: block;
}

.creator-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.25);
}

.creator-content {
    display: flex;
    align-items: center;
    gap: 28px;
}

.creator-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-text h3 {
    font-family: "Courgette";
    font-size: 28px;
    margin-bottom: 8px;
}

.creator-text p {
    font-family: "Courgette";
    font-size: 20px;
    margin: 4px 0;
}




#thank-you {
    width: 100%;
    margin-top: 80px;
    text-align: center;
}

#thank-you h2 {
    font-family: "Courgette";
    font-size: 45px;
    margin-bottom: 35px;
}

.thank-text {
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: "Courgette";
    font-size: 20px;
    line-height: 1.7;
    color: #444;
}

.thank-text p {
    margin-bottom: 22px;
}

@font-face {
    font-family: "animalchariot";
    src: url("/font/animal_chariot/Animal Chariot.ttf");
}