@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jomolhari&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rochester&display=swap');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #fff;
}

header {
	display: flex;
	justify-content: space-between;
	background-color: #073952;
	padding: 30px;
	color: #fff;
	align-items: center;
	padding: 20px 50px;
	position: relative;
}

header .logo h5 {
	font-size: 65px;
	line-height: 150%;
	font-weight: 400;
	font-family: 'Jomolhari', serif;
}

header nav {
	display: flex;
	gap: 45px;
	align-items: center;
}

header nav a {
	font-size: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
}

header nav button {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	padding: 14px 24px;
	background-color: #fff;
	color: #000;
	border-radius: 8px;
	font-size: 20px;
	border: none;
	cursor: pointer;
}

/* Hamburger Menu Styles */
.menu-btn {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1000;
}

.menu-btn .btn-line {
	width: 28px;
	height: 3px;
	margin: 5px 0;
	background: #fff;
	transition: all 0.3s ease-out;
}

/* Transform hamburger to X */
.menu-btn.active .btn-line:nth-child(1) {
	transform: rotate(45deg) translate(11px, 10px);
}

.menu-btn.active .btn-line:nth-child(2) {
	opacity: 0;
}

.menu-btn.active .btn-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
	background: url('./img/hero-background.svg');
	color: #fff;
	padding: 80px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.hero h1 {
	font-size: 60px;
	font-weight: 700;
	text-align: center;
	max-width: 844px;
	font-family: 'Poppins', sans-serif;
}

.hero h1 span {
	color: #47b4b7;
}

.hero p {
	font-size: 24px;
	line-height: 150%;
	max-width: 844px;
	text-align: left;
	font-family: 'Roboto', sans-serif;
}

.hero .cta {
	padding: 14px 24px;
	background-color: #fff;
	font-size: 20px;
	color: #073952;
	border: none;
	border-radius: 8px;
	font-family: 'Lato', sans-serif;
	margin-top: 30px;
}

.hero .cta span {
	border-bottom: 1px solid #073952;
}

.separator {
	padding: 20px;
	color: #073952;
	font-size: 24px;
	text-align: center;
	font-family: 'Rochester', cursive;
	border-top: 1px solid #073952;
}

.our-services {
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.our-services .heading {
	text-align: center;
	background-color: #073952;
	border-radius: 40px;
	padding: 20px;
	color: #fff;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	font-size: 36px;
	text-transform: uppercase;
}

.our-services .content {
	padding: 40px 80px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.our-services .content .cards {
	display: flex;
	justify-content: space-between;
}

.our-services .content .cards .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgba(217, 217, 217, 0.2);
	max-width: 358px;
	height: fit-content;
	gap: 24px;
	border-radius: 20px;
	padding: 20px;
}

.our-services .content .cards .card p {
	font-family: 'Inter', sans-serif;
}

.our-services .content .cards .card .title {
	color: #000;
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
	text-align: center;
}

.our-services .content .cards .card .desc {
	font-size: 20px;
	line-height: 150%;
	color: #828282;
	text-align: center;
}

.kitchens {
	background: url('img/kitchens-background.svg');
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding: 20px 80px 100px;
}

.kitchens h4 {
	font-size: 24px;
	font-family: 'Inter', sans-serif;
	color: #fff;
	font-weight: 600;
	letter-spacing: -2%;
}

.kitchens div {
	display: flex;
	justify-content: center;
	gap: 60%;
}

.consistency .separator {
	border-bottom: 1px solid #073952;
}

.consistency .content {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	padding: 20px 100px;
	gap: 40px;
}

.consistency .content .card-divider {
	display: flex;
	justify-content: space-between;
	gap: 25%;
}

.consistency .content h1 {
	font-size: 48px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	letter-spacing: -2%;
}

.consistency .content .cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.consistency .content .cards .card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: baseline;
	max-width: 515px;
}

.consistency .content .cards .card h2 {
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
}

.consistency .content .cards .card p {
	font-size: 20px;
	font-family: 'Inter', sans-serif;
	line-height: 150%;
	color: #828282;
}

.consultation {
	margin: 0 20px;
	padding: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 124px;
	background-color: #073952;
	border-radius: 60px;
	color: #fff;
}

.consultation h2 {
	font-size: 48px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
}

.consultation div {
	display: flex;
	gap: 24px;
}

.consultation .bg-black {
	padding: 20px;
	background-color: #000;
	color: #fff;
	font-size: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	border: none;
	border-radius: 8px;
}

.consultation .bg-white {
	background-color: #e6e6e6;
	padding: 20px 32px;
	color: #000;
	font-size: 24px;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	border-radius: 8px;
	border: none;
	text-transform: capitalize;
}

footer {
	margin-top: 20px;
	background-color: #073952;
	padding: 50px;
	color: #fff;
	display: flex;
	justify-content: space-between;
}

footer .left {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

footer .left h2 {
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
}

footer .left ul {
	display: flex;
	gap: 8px;
	align-items: center;
}

footer .middle,
footer .right {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

footer .right {
	margin-right: 80px;
}

footer .middle a,
footer .right a {
	font-size: 16px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	line-height: 150%;
	text-transform: capitalize;
	font-style: italic;
}

.bottom {
	background-color: #073952;
	color: #ffffff;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.bottom p {
	align-items: center;
	opacity: 50%;
	font-family: 'Inter', sans-serif;
}

/* ABOUT PAGE STYLES */

.about {
	background: url(./img/about-hero.svg);
	background-repeat: no-repeat;
	background-size: 100vw auto;
}

.about-hero {
	padding: 80px;
	display: flex;
	padding-top: 120px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.about-hero .about-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-hero .about-top h2 {
	font-size: 60px;
	text-align: center;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
}

.about-hero .about-top p {
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	text-align: center;
	font-weight: 500;
	line-height: 140%;
}

.about-hero .about-bottom {
	margin-top: 150px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.about-hero .about-bottom p {
	font-family: 'Assistant', sans-serif;
	font-size: 32px;
	text-align: left;
	color: #073952;
	max-width: 1139px;
	font-weight: 600;
}

.part {
	display: flex;
	margin: 0 20px;
	border-radius: 60px;
	justify-content: space-between;
	align-items: center;
	padding: 80px;
	border: 3px solid #828282;
}

.part h1 {
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	text-align: left;
	color: #073952;
	font-weight: 600;
}

.part .bg-black {
	padding: 20px;
	background-color: #000;
	color: #fff;
	font-size: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	border: none;
	border-radius: 8px;
}

.white {
	background-color: transparent;
	color: #073952;
}

.white .left a,
.white .middle a,
.white .right a {
	color: #073952;
}

/* OUR SERVICES PAGE */

.services .hero {
	gap: 10px;
	padding-bottom: 160px;
}

.services .hero p {
	text-align: center;
}

.services .consistency {
	margin-top: 80px;
}

/* BLOG PAGE STYLES */

.blog-hero {
	border-top: 1px solid #000;
	background-color: #073952;
	display: flex;
	justify-content: center;
}

/* Responsive Media Query */
@media (max-width: 768px) {
	.menu-btn {
		display: flex;
	}

	header nav {
		position: fixed;
		top: 80px;
        padding-top: 50px;
		right: -100%;
		height: 100vh;
		min-width: 100%;
		max-width: 300px;
		background-color: #073952;
		flex-direction: column;
		/* justify-content: center; */
		gap: 30px;
		transition: right 0.3s ease-out;
		z-index: 999;
		/* box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3); */
	}

	header nav.active {
		right: 0;
	}

	header nav a {
		font-size: 20px;
	}

	header nav button {
		font-size: 18px;
		padding: 12px 20px;
	}

	header .logo h5 {
		font-size: 45px;
	}

	header {
		padding: 20px 30px;
	}

	.our-services .content .cards,
	.kitchens div,
	.consistency .content .card-divider,
	.consultation {
		flex-direction: column;
	}

	.our-services .content .cards {
		gap: 20px;
	}

	.our-services .content {
		padding: 40px 20px;
	}

	.hero {
		padding: 20px;
        padding-top: 120px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero p {
		font-size: 12px;
        text-align: center;
	}

	.our-services .heading {
		font-size: 40px;
	}

    .our-services .content .cards .card img {
        width: 100%;
    }

	.kitchens div,
	.consistency .content .card-divider {
		gap: 40px;
	}

    .kitchens h4 {
        text-align: center;
		padding-top: 20px;
		font-size: 40px;
    }

	.consistency .content {
		padding: 20px;
	}

    .consultation {
        padding: 20px;
        gap: 40px;
        padding-bottom: 30px;
    }

    .consultation div{
        flex-direction: column;
        gap: 15px;
    }

    .consultation h2 {
        font-size: 32px;
        text-align: center  ;
    }

    .consultation div .bg-white, .consultation div .bg-black{
        padding: 12px 24px;
        font-size: 20px;
    }

    footer {
        flex-direction: column;
        gap: 30px;
    }

    .bottom p {
        text-align: center;
    }


    /* ABOUT PAGE */

    .about {
            background-size: 100vw 37vh;
    }

    .about-hero {
        padding: 20px;
        padding-top: 130px;

    }

    .about-hero .about-top{
        gap: 10px;
    }

    .about-hero .about-top h2 {
        font-size: 48px;
    }

    .about-hero .about-top p{
        font-size: 12px;
    }

    .about-hero .about-bottom {
        margin-top: 50px;
    }

    .about-hero .about-bottom p{
        font-size: 16px;
    }

    .part{
        padding: 20px;
        flex-direction: column;
        gap: 40px;
    }

    .part h1{
        font-size: 30px;
        text-align: center;
    }

    .part .bg-black{
        padding: 12px 20px;
        font-size: 20px;
    }

    /* SERVICE PAGE */

    .services .hero {
        padding-bottom: 20px;
        padding: 40px;
        padding-top: 120px;
    }

    /* BLOG PAGE */

    .blog-hero img {
        
        max-width: 100%;
    }

    .blog-hero{
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
	header .logo h5 {
		font-size: 35px;
	}

	header {
		padding: 15px 20px;
        position: fixed;
        width: 100%;
	}
}
