/*=====================================
CHALIMIDI SWEETS
ABOUT PAGE
======================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fffdf8;
    color: #333;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/*=========================
HEADER
=========================*/

header {

    position: sticky;

    top: 0;

    background: #fff;

    z-index: 1000;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);

}

.navbar {

    width: min(1200px, 92%);

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 80px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}
.logo div {

    display: flex;

    flex-direction: column;

}

.logo-icon {

    font-size: 1.75rem;

    line-height: 1;

}

.logo h2 {

    color: #8B4513;

    font-size: 30px;

    font-family: 'Playfair Display', serif;

}

.logo small {

    color: #777;

    font-size: .8rem;

}

.nav-links {

    display: flex;

    gap: 35px;

}

.nav-links a {

    color: #444;

    font-weight: 600;

    transition: .3s;

}

.nav-links a:hover,
.nav-links a.active {

    color: #E67E22;

}

.nav-links a {

    position: relative;

    color: #444;

    font-weight: 600;

    transition: .3s;

}

.nav-links a:hover,
.nav-links a.active {

    color: #E67E22;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #E67E22;

    transition: .3s;

}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 100%;

}

.menu-toggle {

    display: none;

    border: none;

    background: none;

    font-size: 28px;

    cursor: pointer;

}

/*=========================
BANNER
=========================*/

.banner {

    height: 380px;

    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url("../images/shop.jpg") center/cover;

}

.overlay {

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

}

.overlay h1 {

    font-size: 3.2rem;

    font-family: 'Playfair Display', serif;

    margin-bottom: 20px;

}

.overlay p {

    font-size: 1.2rem;

    max-width: 700px;

}

/*=========================
ABOUT
=========================*/

.about {

    padding: 90px 0;

}

.about .container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.about-image img {

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.about-text h2 {

    color: #8B4513;

    font-size: 2.5rem;

    margin-bottom: 25px;

    font-family: 'Playfair Display', serif;

}

.about-text p {

    margin-bottom: 20px;

    line-height: 1.8;

    color: #555;

}

/*=========================
MISSION
=========================*/

.mission {

    padding: 70px 0;

    background: #FFF5EB;

}

.mission .container {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.mission-card {

    background: white;

    padding: 40px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

    transition: .3s;

}

.mission-card:hover {

    transform: translateY(-8px);

}

.mission-card i {

    font-size: 45px;

    color: #E67E22;

    margin-bottom: 20px;

}

.mission-card h3 {

    margin-bottom: 15px;

}

/*=========================
WHY US
=========================*/

.why-us {

    padding: 30px 0;

    width: min(1200px, 92%);

    margin: auto;

}

.why-us h2 {

    text-align: center;

    font-size: 1.75rem;

    color: #5D4037;

    margin-bottom: 20px;

    font-family: 'Playfair Display', serif;

}

.cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.card {

    background: white;

    padding: 15px;

    text-align: center;

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    transition: .3s;

    font-size: 1.25rem;

}

.card:hover {

    transform: translateY(-8px);

}

.card h3 {

    margin: 20px 0;

    color: #5D4037;

}

.card p {

    color: #666;

    line-height: 1.2;

}

/*=========================
PROMISE
=========================*/

.promise {

    background: #5D4037;

    color: white;

    padding: 90px 20px;

    text-align: center;

}

.promise h2 {

    font-size: 2.5rem;

    margin-bottom: 25px;

    font-family: 'Playfair Display', serif;

}

.promise p {

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

}

/*=========================
FOOTER
=========================*/

footer {

    background: #2F211D;

    color: white;

    text-align: center;

    padding: 30px;

}