* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color1: #f3a4b4;
    --color2: #f592b2;
    --color3: #F6D1B0;
}

/* Body styles */
body {
    font-family: cursive;
    line-height: 1.6;
    background: linear-gradient(to top, var(--color2), var(--color3), var(--color1));
    color: #522c2c;
    padding: 0;
    margin: 0;
}

/* Header and navigation styles */
header {
    background: linear-gradient(to top, var(--color2), var(--color3), var(--color1));
    padding: 1rem 0;
}

.HContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

.logo img {
    width: 100px; 
    height: auto;
    border-radius: 20px;
    padding: 10px;
}

.navbar {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    flex-wrap: wrap; 
    margin-left: 20px;
}

header nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #272626;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 15px;
    display: block;
    border-radius: 15px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    text-decoration-color: rgb(28, 30, 32);
    background-color: #F6D1B0;
    cursor: pointer;
}

/* Hero section */
.hero {
    width: 100%;
    height: 50vh;
    background-image: url(cnt.jpeg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: #522c2c;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #F6D1B0;
    color: #272626;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d68f60;
}

/* Pastries section */
.pastries {
    text-align: center;
    padding: 50px 20px;
}

.pastries h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pastry-item {
    display: inline-block;
    width: 30%; 
    margin: 20px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.pastry-item img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.pastry-item h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

.pastry-item p {
    font-size: 1rem;
    color: #666;
}

.pastry-item img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Order Section */
.order-section {
    background-color: #f0e1d6;
    text-align: center;
    padding: 50px 20px;
}

.order-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.order-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Guides Section */
.guides {
    text-align: center;
    padding: 50px 20px;
   
}

.guides h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.guides p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.guide-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.guide-item {
    width: 30%;
    margin: 20px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.guide-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;

} 

.guide-item img:hover {
    transform: scale(1.05);
    cursor: pointer;
   
}

.guide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.guide-item a {
    text-decoration: none;
    color: #272626;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.guide-item a {
    background-color: #d68f60;
   
}



/* Footer */
footer {
    background-color: #e8f09f;
    color: #272626;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}


/* Responsive Design for Guides */
@media (max-width: 768px) {
    .guide-items {

    }

    .guide-item {
        width: 80%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .pastry-item {
        width: 45%; 
    }
}

@media (max-width: 768px) {
    .HContainer {
        flex-direction: column;
        align-items: flex-start; 
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .pastry-item {
        width: 90%; 
    }

    header nav ul {
        justify-content: space-between; 
    }

    header nav ul li {
        margin: 5px 10px;
    }

    header nav ul li a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 10px;
        height: 40vh; 
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
