@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');

:root {
    --primary-color: #3f7bcf;
    --secondary-color: rgb(211, 24, 211);
    --accent-color: #41cea4;
    --text-color: #333333;
    --link-color: rgb(119, 209, 119);
    --background-color: #d3f7ec;
    --light-gray: #f0f0f0;
    --gray: #808080;
    --dark-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-decoration: none;
}

body {
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0.1rem;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.header-logo {
    position: absolute;
    left: 1rem;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.header-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: cursive;
}

.header-nav {
    margin-left: auto;
    margin-right: 1rem;
    display: flex;
    gap: 1rem;
    list-style: none;
    color: var(--text-color);
}
.header-nav a{
    text-decoration: none;
    color: var(--text-color);
    font-family: cursive;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0.5rem;
}
.header-nav a:hover {
    color: var(--primary-color);
    }
.logo-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}
/* Products Section */
#products {
    padding: 50px 0;
    background-color: var(--background-color);
}

.delicious {
    text-align: center;
    margin-bottom: 30px;
}

.delicious h3 {
    font-size: 24px;
    color:var(--text-color);
    margin-bottom: 10px;
    font-family: cursive;
}
.delicious h2{
    font-family: cursive;
    margin: 1rem;
}
.delicious pre {
    font-size: 16px;
    color: var(--text-color);
    white-space: pre-wrap;
    text-align: center;
    font-family: cursive;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-family: cursive;
}

.product {
    background-color: rgb(208, 245, 243);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product img {
    width: 5rem;
    height: 5rem;
    border-bottom: 1px solid var(--accent-color);
}

.product h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin: 15px 0;
}

.product p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0 15px 15px;
    font-family: cursive;
}

.product:hover {
    transform: translateY(-10px);
}

footer {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 20px 10px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 0 auto;
}

.footer-container  .address .contact-info {
    flex: 1;
    text-align: center;
    font-family: cursive;    
}
.footer-container  .address h2 {
    font-family: cursive;
    margin: 0.5rem;
}
.address address {
    font-family: cursive;
}
.contact-info h2 {
    font-family: cursive;
    margin: 0.5rem;
}
.contact-info p {
    font-family: cursive;
    margin: 0.5rem;
    }
.footer-container .follow-icon {
    flex: 1;
    text-align: center; /* Align text to the left */
    font-family: cursive;
}
.follow-icon{
   display: flex;
   flex-direction: column;
   align-items: center;
   /* justify-content: center; */
   text-align: center;
}

.follow-icon h2 {
    margin: 0 auto;
    margin-bottom: 10px;
    font-family: cursive;
}

.social {
    display: flex;
    flex-direction: row; /* Align items in a row */
    align-items: center; /* Align items vertically centered */
    gap: 1rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* Space between icon and text */
}

.social-icon img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

.social-icon a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1em;
    font-family: cursive;
}

.social-icon a:hover {
    color: var(--primary-color);
}

.map{
    width: 2rem;
    cursor: pointer;
}
.map-txt{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: cursive;
}
.copyright{
    font-family: cursive;
}