/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*{
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* MAIN */

/* Responsive breakpoints */
:root {
  --mobile: 375px;
  --tablet: 768px;
  --desktop: 1024px;
  --large-desktop: 1440px;
}

:root{
	--Red-400: hsl(7, 99%, 70%);
	--Yellow-500: hsl(51, 100%, 49%);
	--Green-800-graphic-design-text: hsl(167, 40%, 24%);
	--Blue-800-photography-text: hsl(198, 62%, 26%);
	--Green-500-footer: hsl(167, 34%, 41%);
	--Grey-950: hsl(212, 27%, 19%);
	--Grey-600: hsl(213, 9%, 39%);
	--Grey-550: hsl(232, 10%, 55%);
	--Grey-400: hsl(210, 4%, 67%);
	--White: hsl(0, 100%, 100%);
}
body{
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--Grey-600);
}
.container{
    max-width: 100%;
	height: 100%;
}
.container .header-image{
	background-image: url(images/desktop/image-header.jpg);
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Responsive images */
.desktop-img {
	display: block;
}

.mobile-img {
	display: none;
}

/* Responsive background images */
@media (max-width: 767px) {
	.container .header-image {
		background-image: url(images/mobile/image-header.jpg);
	}
	
	.graphic-dsgn .image-box1 {
		background-image: url(images/mobile/image-graphic-design.jpg);
	}
	
	.graphic-dsgn .image-box2 {
		background-image: url(images/mobile/image-photography.jpg);
	}
	
	.images-flex .img-box1 {
		background-image: url(images/mobile/image-gallery-milkbottles.jpg);
	}
	
	.images-flex .img-box2 {
		background-image: url(images/mobile/image-gallery-orange.jpg);
	}
	
	.images-flex .img-box3 {
		background-image: url(images/mobile/image-gallery-cone.jpg);
	}
	
	.images-flex .img-box4 {
		background-image: url(images/mobile/image-gallery-sugar-cubes.jpg);
	}
	
	.desktop-img {
		display: none;
	}
	
	.mobile-img {
		display: block;
	}
}
.container .header-image .creatives{
	height: 900px;
	color: var(--White);
	z-index: 3;
}

.container .header-image .creatives header{
	padding: 50px 50px 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.container .header-image .creatives header .logo img{
	height: 32px;
}
.container .header-image .creatives header .menu a{
	align-items: center;
	justify-content: center;
	padding-top: 18px;
	padding-right: 30px;
	text-decoration: none;
	color: var(--White);
}
.container .header-image .creatives header .menu a:hover{
	text-decoration: underline var(--White) 2px;
}
.container .header-image .creatives header .menu .contact{
	padding: 18px 30px;
	font-family: "Fraunces", serif;
	font-weight: 700;
	color: var(--White);
	border: 1px solid var(--White);
	background: none;
	text-transform: uppercase;
	border-radius: 35px;
	transition: all 0.75s;
}
.container .header-image .creatives header .menu .contact:hover{
	text-decoration: none;
	background: var(--White);
	color: var(--Grey-950);
}

/* Mobile menu styles */
.mobile-menu-toggle {
	display: none;
	cursor: pointer;
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--White);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	width: 90%;
	max-width: 400px;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu a {
	display: block;
	padding: 15px 0;
	text-decoration: none;
	color: var(--Grey-600);
	text-align: center;
	font-weight: 600;
}

.mobile-menu a.contact {
	background: var(--Yellow-500);
	color: var(--Grey-950);
	padding: 15px 30px;
	border-radius: 25px;
	margin-top: 10px;
	font-family: "Fraunces", serif;
	font-weight: 700;
	text-transform: uppercase;
}
.container .header-image .creatives h1{
	text-align: center;
	font-family: "Fraunces", serif;
	font-weight: 900;
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: 10px;
	margin-top: 70px;
	margin-bottom: 120px;
}
.container .header-image .creatives .arrow{
	text-align: center;
}


.transform{
	height: 600px;
	display: flex;
	justify-content: center;
}
.transform .image-box{
	width: 50%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.transform .image-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.transform .info-box{
	width: 50%;
	height: 100%;
	padding: 0 130px;
}
.transform .info-box h2{
	font-family: "Fraunces", serif;
	color: var(--Grey-950);
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 1.2;
	padding: 150px 0 40px;
}
.transform .info-box p{
	color: var(--Grey-550);
	margin-bottom: 40px;
	line-height: 1.8;
}
.transform .info-box a{
	display: inline-block;
	font-family: "Fraunces", serif;
	color: var(--Grey-950);
	font-weight: 900;
	text-decoration: underline rgba(245, 245, 83, 0.218) 5px;
	text-transform: uppercase;
	font-size: .9rem;
}
.transform .info-box a:hover{
	text-decoration: underline var(--Yellow-500) 5px;
}


.stand-out{
	height: 600px;
	display: flex;
	justify-content: center;
}
.stand-out .image-box{
	width: 50%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.stand-out .image-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.stand-out .info-box{
	width: 50%;
	height: 100%;
	padding: 0 130px;
}
.stand-out .info-box h2{
	font-family: "Fraunces", serif;
	color: var(--Grey-950);
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 1.2;
	padding: 150px 0 40px;
}
.stand-out .info-box p{
	color: var(--Grey-550);
	margin-bottom: 40px;
	line-height: 1.8;
}
.stand-out .info-box a{
	display: inline-block;
	font-family: "Fraunces", serif;
	color: var(--Grey-950);
	font-weight: 900;
	text-decoration: underline rgba(226, 137, 131, 0.16) 5px;
	text-transform: uppercase;
	font-size: .9rem;
}
.stand-out .info-box a:hover{
	text-decoration: underline var(--Red-400) 5px;
}


.graphic-dsgn{
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.graphic-dsgn .image-box1{
	background-image: url(images/desktop/image-graphic-design.jpg);
	height: 100%;
	width: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.graphic-dsgn .image-box1 .info-area1{
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 0 170px 60px;
}
.graphic-dsgn .image-box1 .info-area1 h3{
	font-family: "Fraunces", serif;
	font-size: 1.8rem;
	font-weight: 900;
	text-transform: capitalize;
	color: var(--Green-800-graphic-design-text);
}
.graphic-dsgn .image-box1 .info-area1 p{
	margin-top: 30px;
	color: var(--Green-800-graphic-design-text);
	line-height: 1.8;
}
.graphic-dsgn .image-box2{
	background-image: url(images/desktop/image-photography.jpg);
	height: 100%;
	width: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.graphic-dsgn .image-box2 .info-area2{
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 0 170px 60px;
}
.graphic-dsgn .image-box2 .info-area2 h3{
	font-family: "Fraunces", serif;
	font-size: 1.8rem;
	font-weight: 900;
	text-transform: capitalize;
	color: var(--Blue-800-photography-text);
}
.graphic-dsgn .image-box2 .info-area2 p{
	margin-top: 30px;
	color: var(--Blue-800-photography-text);
	line-height: 1.8;
}


.testimonials{
	height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}
.testimonials h4{
	font-family: "Fraunces", serif;
	font-weight: 700;
	font-size: 1.4rem;
	text-transform: uppercase;
	color: var(--Grey-400);
	letter-spacing: 5px;
}
.clients{
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.clients .info-col{
	width: 356px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.clients .info-col:nth-child(2){
	margin: 0 30px;
}
.clients .info-col .image-circle img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.clients .info-col p{
	line-height: 1.8;
	margin: 60px 0;
	text-align: center;
}
.clients .info-col .user-name{
	text-align: center;
}
.clients .info-col .user-name h5{
	font-family: "Fraunces", serif;
	font-weight: 900;
	font-size: 1.2rem;
	color: var(--Grey-950);
	margin-bottom: 20px;
}
.clients .info-col .user-name span{
	font-size: 1rem;
	color: var(--Grey-400);
}


.images-flex{
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.images-flex .img-box1{
	background-image: url(images/desktop/image-gallery-milkbottles.jpg);
	height: 100%;
	width: 25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.images-flex .img-box2{
	background-image: url(images/desktop/image-gallery-orange.jpg);
	height: 100%;
	width: 25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.images-flex .img-box3{
	background-image: url(images/desktop/image-gallery-cone.jpg);
	height: 100%;
	width: 25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.images-flex .img-box4{
	background-image: url(images/desktop/image-gallery-sugarcubes.jpg);
	height: 100%;
	width: 25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


footer{
	height: 350px;
	background-color: #91D4C4;
}
footer .social{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}
footer .social .logo-footer img{
	height: 120%;
}
footer .social .menu-footer{
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .social .menu-footer a{
	text-decoration: none;
	color: var(--Green-500-footer);
	padding: 0 30px 30px;
}
footer .social .menu-footer a:hover{
	color: var(--White);
}
footer .social .social-icons a{
	text-decoration: none;
	margin-right: 5px;
	padding: 7px 7px;
}
footer .social .social-icons a:nth-child(4){
	margin-right: 0;
}
footer .social .social-icons a:hover{
	border: 1px solid var(--Green-500-footer);
	border-radius: 6px;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

/* Mobile First - Base styles for mobile */
@media (max-width: 767px) {
	/* Header and Navigation */
	.container .header-image .creatives header {
		padding: 30px 20px 50px;
	}
	
	.container .header-image .creatives header .menu {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: block;
	}
	
	/* Hero Section */
	.container .header-image .creatives h1 {
		font-size: 2.2rem;
		letter-spacing: 6px;
		margin-top: 50px;
		margin-bottom: 80px;
		padding: 0 20px;
	}
	
	.container .header-image .creatives {
		height: 600px;
	}
	
	/* Transform Section */
	.transform {
		flex-direction: column;
		height: auto;
	}
	
	.transform .image-box {
		width: 100%;
		height: 300px;
		order: 1;
	}
	
	.transform .info-box {
		width: 100%;
		padding: 60px 30px;
		order: 2;
		text-align: center;
	}
	
	.transform .info-box h2 {
		font-size: 1.8rem;
		padding: 0 0 30px;
	}
	
	/* Stand Out Section */
	.stand-out {
		flex-direction: column;
		height: auto;
	}
	
	.stand-out .image-box {
		width: 100%;
		height: 300px;
		order: 1;
	}
	
	.stand-out .info-box {
		width: 100%;
		padding: 60px 30px;
		order: 2;
		text-align: center;
	}
	
	.stand-out .info-box h2 {
		font-size: 1.8rem;
		padding: 0 0 30px;
	}
	
	/* Graphic Design Section */
	.graphic-dsgn {
		flex-direction: column;
		height: auto;
	}
	
	.graphic-dsgn .image-box1,
	.graphic-dsgn .image-box2 {
		width: 100%;
		height: 400px;
	}
	
	.graphic-dsgn .image-box1 .info-area1,
	.graphic-dsgn .image-box2 .info-area2 {
		padding: 0 30px 40px;
	}
	
	/* Testimonials */
	.testimonials {
		height: 120px;
	}
	
	.testimonials h4 {
		font-size: 1.2rem;
		letter-spacing: 3px;
		margin-bottom: 50px;
	}
	
	.clients {
		flex-direction: column;
		height: auto;
		padding: 0 30px 30px;
		margin-bottom: 0;
	}
	
	.clients .info-col {
		width: 100%;
		margin-bottom: 60px;
	}
	
	.clients .info-col:nth-child(2) {
		margin: 0 0 60px;
	}
	
	/* Image Gallery */
	.images-flex {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		height: 700px;
	}
	
	.images-flex .img-box1,
	.images-flex .img-box2,
	.images-flex .img-box3,
	.images-flex .img-box4 {
		width: 100%;
		height: 100%;
	}
	
	/* Footer */
	footer {
		height: 300px;
	}
	
	footer .social .logo-footer img {
		height: 100%;
	}
	
	footer .social .menu-footer {
		flex-direction: column;
		gap: 20px;
	}
	
	footer .social .menu-footer a {
		padding: 0 0 10px;
	}
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
	.container .header-image .creatives header {
		padding: 40px 40px 60px;
	}
	
	.container .header-image .creatives h1 {
		font-size: 2.5rem;
		letter-spacing: 8px;
		margin-top: 60px;
		margin-bottom: 100px;
	}
	
	.container .header-image .creatives {
		height: 700px;
	}
	
	.transform .info-box,
	.stand-out .info-box {
		padding: 0 60px;
	}
	
	.transform .info-box h2,
	.stand-out .info-box h2 {
		font-size: 2rem;
		padding: 120px 0 30px;
	}
	
	.graphic-dsgn .image-box1 .info-area1 {
		padding: 0 60px 40px;
	}

	.graphic-dsgn .image-box2 .info-area2 {
		padding: 0 60px 40px;
	}

	.testimonials{
		height: 140px;
	}

	.testimonials h4{
		margin-bottom: 50px;
	}

	.clients {
		padding: 0 40px 50px;
	}
	
	.clients .info-col {
		width: 300px;
	}
	
	.clients .info-col:nth-child(2) {
		margin: 0 20px;
	}
}

/* Desktop Styles - Keep existing desktop styles */
@media (min-width: 1024px) {
	.mobile-menu-toggle {
		display: none;
	}
	
	.container .header-image .creatives header .menu {
		display: flex;
	}
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
	.container .header-image .creatives h1 {
		font-size: 3.5rem;
		letter-spacing: 12px;
	}
	
	.transform .info-box h2,
	.stand-out .info-box h2 {
		font-size: 2.5rem;
	}
	
	.clients .info-col {
		width: 400px;
	}
}

/* Additional responsive improvements */
@media (max-width: 480px) {
	.container .header-image .creatives h1 {
		font-size: 1.8rem;
		letter-spacing: 4px;
		padding: 0 10px;
	}
	
	.transform .info-box,
	.stand-out .info-box {
		padding: 40px 20px;
	}
	
	.transform .info-box h2,
	.stand-out .info-box h2 {
		font-size: 1.5rem;
	}
	
	.testimonials h4 {
		font-size: 1rem;
		letter-spacing: 3px;
		margin-bottom: 50px;
	}
	
	.clients {
		padding: 0 20px 30px;
		margin-bottom: 0;
	}
	
	.graphic-dsgn .image-box1 .info-area1,
	.graphic-dsgn .image-box2 .info-area2 {
		padding: 0 20px 30px;
	}
}