/*==========================================
CHALIMIDI SWEETS
CONTACT PAGE
Version 2.0
==========================================*/

* {
    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 {
    max-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;

    z-index: 1000;

    background: white;

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

}

.navbar {

    width: min(1200px, 92%);

    margin: auto;

    height: 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.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 {

    font-family: 'Playfair Display', serif;

    color: #8B4513;

    font-size: 30px;

}

.logo small {

    display: block;

    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;

    background: none;

    border: none;

    font-size: 30px;

    cursor: pointer;

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

.banner {

    height: 180px;

    background:
        linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)),
        url("../images/contact-banner.jpg") center/cover no-repeat;

}

.overlay {

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

    padding: 20px;

}

.overlay h1 {

    font-family: 'Playfair Display', serif;

    font-size: 2.7rem;

    margin-bottom: 10px;

}

.overlay p {

    max-width: 650px;

    font-size: 1rem;

    line-height: 1.6;

    opacity: .95;

}

/*==========================================
CONTACT SECTION
==========================================*/

.contact-section {

    padding: 40px 0;

}

.contact-section .container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

    gap: 20px;

}

.contact-card {

    background: #fff;

    border-radius: 18px;

    padding: 25px 20px;

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

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    min-height: 260px;

    transition: .3s;

}
.contact-card i {

    font-size: 32px;

    color: #E67E22;

    margin-bottom: 12px;

}

.contact-card h3 {

    margin-bottom: 15px;

    color: #5D4037;

}


.contact-card:hover {

    transform: translateY(-6px);

}

.contact-card i {

    font-size: 32px;

    color: #E67E22;

    margin-bottom: 8px;

}

.contact-card h3 {

    margin-bottom: 12px;

    color: #5D4037;

    font-size: 1.25rem;

}

.contact-card p {

    font-size: .95rem;

    line-height: 1.5;

    color: #666;


}

.contact-card a {

    display: block;

    color: #E67E22;

    font-weight: 600;

    margin: 6px 0;

    transition: .3s;

}

.contact-card a:hover {

    color: #C86D18;

}
/*==========================================
BUSINESS HOURS
==========================================*/
/*==========================================
BUSINESS HOURS
==========================================*/

.hours {

    padding: 10px 0;

    background: #FFF8EF;

}

.hours-card {

    max-width: 650px;

    margin: auto;

    background: #fff;

    padding: 25px;

    border-radius: 25px;

    text-align: center;

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

    transition: .35s;

}

.hours-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.hours-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 20px;

    background: #FFE9C7;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hours-icon i {

    font-size: 36px;

    color: #E67E22;

}

.hours-tag {

    display: inline-block;

    background: #E67E22;

    color: white;

    padding: 8px 22px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.hours-card h2 {

    font-family: 'Playfair Display', serif;

    font-size: 2.4rem;

    color: #5D4037;

    margin-bottom: 12px;

}

.hours-card p {

    color: #666;

    font-size: 17px;

    margin-bottom: 30px;

}

.hours-time {

    display: inline-block;

    padding: 18px 35px;

    background: #FFF5EB;

    border: 2px dashed #E67E22;

    border-radius: 18px;

    font-weight: 600;

    color: #5D4037;

    font-size: 18px;

    line-height: 1.7;

}

.hours-time span {

    display: block;

    color: #E67E22;

    font-size: 28px;

    font-weight: 700;

}
/*==========================================
NEED HELP
==========================================*/
/*==========================================
HELP SECTION
==========================================*/

.help {

    padding: 60px 0;

    background: #FFF8EF;

}

.help-content {

    max-width: 950px;

    margin: auto;

    background: white;

    padding: 50px;

    border-radius: 25px;

    text-align: center;

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

}

.help-tag {

    display: inline-block;

    background: #FFE9C7;

    color: #8B4513;

    padding: 8px 20px;

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 20px;

}

.help-content h2 {

    font-family: 'Playfair Display', serif;

    font-size: clamp(2rem, 4vw, 2.5rem);

    color: #5D4037;

    margin-bottom: 15px;

}

.help-content p {

    color: #666;

    font-size: 18px;

    line-height: 1.7;

    max-width: 650px;

    margin: 0 auto 40px;

}

.help-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 20px;

    margin-bottom: 40px;

}

.help-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #FFFDF9;

    border: 1px solid #F2E5D5;

    border-radius: 15px;

    transition: .3s;

}

.help-item:hover {

    transform: translateY(-5px);

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

}

.help-item i {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #E67E22;

    color: white;

    border-radius: 50%;

    font-size: 20px;

}

.help-item span {

    font-weight: 600;

    color: #5D4037;

}

/*==========================================
BUTTON
==========================================*/

.btn {

    display: inline-block;

    margin-top: 25px;

    background: #E67E22;

    color: #fff;

    padding: 15px 40px;

    border-radius: 40px;

    font-weight: 600;

    transition: .3s;

}

.btn:hover {

    background: #C86D18;

    transform: translateY(-4px);

}
/*==========================================
GOOGLE MAP
==========================================*/

.map {

    padding: 20px 2px;

    background: #FFF7EC;

}

.map h2 {

    text-align: center;

    font-family: 'Playfair Display', serif;

    color: #5D4037;

    font-size: 2.5rem;

    margin-bottom: 20px;

}

.map-container {

    width: calc(100% - 4px);

    margin: 0 auto;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

}

.map-container iframe {

    width: 100%;

    height: 500px;

    border: none;

    display: block;

}

/*==========================================
CTA
==========================================*/

.cta {

    background: #5D4037;

    color: white;

    text-align: center;

    padding: 90px 20px;

}

.cta h2 {

    font-family: 'Playfair Display', serif;

    font-size: 2.7rem;

    margin-bottom: 10px;

}

.cta p {

    max-width: 700px;

    margin: 0 auto 35px;

    line-height: 1.8;

    font-size: 18px;

}

.cta .btn {

    background: #F4B400;

    color: #333;

}

.cta .btn:hover {

    background: white;

}

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

footer {

    background: #2F211D;

    color: white;

    text-align: center;

    padding: 25px 20px;

}

footer p {

    margin: 10px 0;

    line-height: 1.8;

}

/*==========================================
SMOOTH HOVER EFFECTS
==========================================*/

.contact-card,
.hours-card,
.help-content {

    transition: all .35s ease;

}

.contact-card:hover,
.hours-card:hover,
.help-content:hover {

    transform: translateY(-8px);

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

}