/* Common */

body {
    font-family: "Urbanist", sans-serif;
    color:#363745;
    background: linear-gradient(to right, #cc99ff 0%, #ff66cc 100%);
    margin: 0;
    padding: 0;
}

.list {
    list-style-type: none;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	margin-bottom: 0;
}

ul, ol {
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
}

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

button {
    cursor: pointer;
    font-family: inherit;
	color: currentColor;
}

/* Header */

header {
    text-align: center;
    margin: 30px 0;
}

.header-container {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3; 
    letter-spacing: 0.06em;
    width: 1280px;
    height: 105px;
    background-color: #f4e0f4;
    margin: 0 auto;
    padding: 10px 25px;
    border-radius: 30px;
    position: relative;
}

.nav-list {
    font-weight: 600;
    font-size: 20px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    position: absolute;
    top: 33px;
}

.nav-list li {
    display: inline-block;
}

.nav-list-items {
    color: #363745;
    padding: 7px 12px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.nav-list-items:hover, .nav-list-items:focus {
    background: linear-gradient(to right, #cc99ff 0%, #ff66cc 100%);
    color: rgb(255, 243, 254);
    cursor: pointer;
}

.logo-container {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 920px;
}

.logo-title {
    font-size: 36px;
    background: linear-gradient(to right, #b270f4 0%, #ff66cc 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.logo {
    width: 85px;
    height: 85px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    display: inline-block;
    vertical-align: middle;
}

.logo:hover {
    transform: rotate(-5deg) scale(1.1);
}

@media screen and (max-width: 767px) {
    header {
        display: block;
    }
    
    .header-container {
        width: 100%;
        height: auto;
        display: block;
    }

    .nav-list li:last-child {
        display: block;
        margin: 5px 0;
    }

    .nav-list {
        position: relative;
        top: 0px;
        left: 6px;
        margin-bottom: 0;
    }

    .logo-container {
        position: relative;
        top: 0;
        left: 10px;
    }
}

/* Hero (section 1) - Home Page */

.hero-section {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4; 
    letter-spacing: 0.06em;
    background-color: #f4e0f4;
    width: 1280px;
    height: 700px;
    margin: 0 auto 30px;
    padding: 20px 25px;
    border-radius: 30px;
}

.hero-container {
    display: block;
}

.hero-image-container-first {
    position: absolute;
}

.hero-image-container-second {
    position: absolute;
    top: 400px
}

.hero-image {
    border-radius: 30px;
    display: inline-block;
    max-width: 100%;
}

.company-motto {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(to right, #cc99ff 0%, #ff66cc 100%);
    color: rgb(255, 243, 254);
    border-radius: 30px;
    padding: 5px;
}

.hero-text-container {
    text-align: center;
    width: 550px;
    position: relative;
    left: 320px;
}

.hero-paragraph {
    text-align: justify;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6; 
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.menu-link {
    font-size: 22px;
    font-weight: 600;
    color: inherit;
    padding: 16px 32px;
    background: linear-gradient(to right, #cc99ff 0%, #ff66cc 100%);
    color: rgb(255, 243, 254);
    border-radius: 30px;
    display: inline-block;
    text-align: center;
}

.menu-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 204, 0.3);
}

.arrow-icon {
    fill: currentColor;                 
    transition: transform 0.3s ease;
    width: 45px;
    vertical-align: middle;
}

.arrow-container {
    position: relative;
    max-width: 350px;
    float: right;
    bottom: 462px;
}

.arrow-toggle {
    display: none;
}

.arrow-label {
    display: inline-block;
    cursor: pointer;
    padding: 16px;
    background: linear-gradient(135deg, #ff66cc, #cc99ff);
    border-radius: 50px;
    transition: all 0.3s ease;
    color: rgb(255, 243, 254);
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.arrow-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 204, 0.3);
}

.arrow-label:hover .arrow-icon {
    transform: translateX(5px);
}

.arrow-text {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 10px;
}

/* Popular Donut (section 2) - Home Page */


.popular-container {
    width: 840px;
    position: absolute;
    top: 670px
}

.popular-title {
    font-size: 45px;
    margin-bottom: 15px;
    letter-spacing: 0.06em;
    background: linear-gradient(to right, #cc99ff 0%, #ff66cc 100%);
    color: rgb(255, 243, 254);
    border-radius: 30px;
    text-align: center;
    padding: 5px;
}

.popular-donut-list {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-align: center;
}

.popular-donut-item {
    display: inline-block;
    width: 30%;
    max-width: 250px;
    text-align: center;
    margin: 0 1%;
    vertical-align: top;
}

.popular-donut-item h4 {
    font-size: 20px;
    text-align: center;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .hero-image {
        display: block;
        max-width: 100%;
        margin: 10px auto;
    }

    .hero-section {
        width: 100%;
        height: auto;
    }

    .hero-image-container-first, .hero-image-container-second {
        position: relative;
        top: 0;
    }
    
    .hero-paragraph {
        padding-bottom: 10px;
    }

    .arrow-container {
        float: none;
        margin: 20px auto;
        display: block;
    }

    .popular-donut-item {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .hero-text-container {
        width: 350px;
        left: 0;
        margin-bottom: 30px;
    }

    .company-motto {
        font-size: 38px;
    }

    .popular-title {
        font-size: 38px;
    }

    .popular-container {
        position: relative;
        top: 0;
        width: 350px;
    }
    
    .arrow-container {
        position: inherit;
    }

    .popular-donut-list {
        position: relative;
        right: -40px;
    }
}

/* Overlay  */

.additional-info {
    position: absolute;
    top: 75px;
    right: 370px;
    width: 570px;
    background: #f8ecf8;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: justify;
}

.arrow-toggle:checked ~ .additional-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 32px;
}

.info-content h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.info-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.donut-features {
    padding: 0;
    margin-left: 15px;
}

.donut-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #363745;
}

.donut-features li:last-child {
    border-bottom: none;
}

/* Footer */

footer {
    background: #f4e0f4;
    padding: 25px 35px;
    width: 1280px;
    margin: 30px auto;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.copyright {
    position: relative;
    top: 25px;
    right: 255px;
    text-align: center;
    letter-spacing: 0.06em;
    font-size: 16px;
    font-weight: 500;
}

.footer-list {
    text-align: center;
    position: relative;
    left: 170px;
}

.footer-list li {
    display: inline-block;
}

footer .logo-title {
    font-size: 25px;
}

footer .logo {
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
}

footer .logo-container {
    display: inline-block;
    top: 26px;
    left: 990px
}

@media screen and (max-width: 767px) {
    footer {
        width: 100%;
    }

    .copyright {
        top: 0;
        right: 0;
    }

    .footer-list {
        left: -19px;
    }

    .footer-list li {
        margin: 5px 0;
    }

    footer .logo-container {
    position: relative;
    top: 0px;
    left: 0px
}
}