/* base styles */
body {
    background-color: #E6AACE;
    font-family: 'Copperplate', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    color: #F0F4EF;
}

/* main container */
.page-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #344966;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px #344966;
}

/* header styles */
.site-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #F0F4EF;
    padding-bottom: 20px;
}

.page-title {
    color: #E6AACE;
    font-size: 2.0rem;
    margin: 0;
    text-shadow: 2px 2px 0 #011627;
    line-height: 1.3;
}

/*cookie emojis at title */
.page-title::before {
    content: "🍪";
    font-size: 2rem;
}

.page-title::after {
    content: "🍪";
    font-size: 2rem;
}

/* Content section */
.content-section {
    background-color: #F0F4EF;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #011627;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #E6AACE;
    border-radius: 10px;
    border-left: 5px solid #344966;
}

.nav-instruction {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0D1821;
    text-align: center;
    margin: 25px 0;
    padding: 10px;
    background-color: #BFCC94;
    border-radius: 8px;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #E6AACE;
    text-align: center;
    margin: 20px 0 0;
    padding: 15px;
    background-color: #0D1821;
    border-radius: 50px;
}

.main-navigation {
    background-color: #BFCC94;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 15px #0D1821;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-item {
    margin: 5px;
}

.nav-link {
    color: #0D1821;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: #F0F4EF;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    background-color: #E6AACE;
    color: #0D1821;
    transform: translateY(-2px);
}

/* Image container */
.image-container {
    text-align: center;
    margin: 30px 0 10px;
    padding: 20px;
    background-color: #F0F4EF;
    border-radius: 15px;
    border: 2px dashed #0D1821;
}

.cookie-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px #E6AACE;
    border: 4px solid #0D1821;
    transition: transform 0.3s ease;
}

.image-row {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-row .cookie-image {
    width: 200px;
}

/*responsive design for mobile*/
@media (max-width: 600px) {
    .page-container {
        padding: 15px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 200px;
    }

    .tagline {
        font-size: 1.2rem;
    }
}