@charset "UTF-8";
/* CSS Document */
/* Reset */
* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
/************ TO ALL PAGES *************************/
/* Body and background */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
	height: 100vh;
}

/* Navbar */
.navbar {
    background-color: #FCE0F9;
    padding: 10px;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 3;
}

.nav-list {
    display: flex;
    justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}

.nav-list li {
	flex: 1;
	text-align: center;
}

.nav-list li a {
	font-size: 20pt;
	font-family: '8 Heavy';
    text-decoration: none;
    color:  red;
    font-weight: bold;
    padding: 5px 10px;
}

.logo {
    height: 50px;
}


/*HOME PAGE */

/* Hero Section */
.hero {
    background-color:  #FAF0F9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.hero-content {
    display: flex;
	flex-flow: row wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}
.hero-text {
	justify-content: center;
	width:40%;
	padding-right: 20px;
}

.hero-text h1 {
	justify-content: flex-start;
    color: red;
	font-family: "8 Heavy";
	margin-top: 30%;
    font-size: 15pt;
}

.hero-text h3 {
	justify-content:center;
    color: red;
	font-family: "8 Heavy";
    font-size: 20pt;
}
.hero-video {
	width:60%;
	height:400px;
    display: flex; 
    justify-content: flex-end;
}

.hero-video video {
    width: 100%;
    margin-left: auto; 
    margin-right: auto; 
}

/* Divider */
.divider img {
    width: 100%;
	height: 5%;
	z-index: -4;
}

.background img {
	background-image: url('img/"img/grid.jpg"');
	width:100%;
	height: 100%;
	align-content: center;
}


/* Product Section */
}
.products {
    background-color: white;
    padding: 32px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card, .product-card2 {
    background-color: #E7E7FB;
    padding: 16px;
    border-radius: 40px;
    box-shadow: 0 4px 8px #ccc;
    position: relative;
	box-sizing: border-box;
	min-height: 300px;
	margin-bottom: 70px;
	margin-top: -100px;
	z-index: -3;
}

.product-card2 {
    background-color: #FDE6FB;
}

.product-card, .product-card2, .product-card3 {
    transition: transform 0.3s ease; 
    display: inline-block; 
	
}

.product-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.button-container {
    position: relative;
    top: 30px; 
    left: 100px; 
}

.heart-button {
  	width: 60px; 
    height: 60px;
    background-color: red; 
    border: none; 
    border-radius: 50%; 
    color: white; 
    font-size: 20px; 
    cursor: pointer; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    left: 60px; /* Move right */
    top: 10px
}

.heart {
    font-size: 30px; 
}
.product-card img {
    width: 100%;
}

.product-info {
    margin-top: 16px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 8px;
}

.product-info p {
    margin-bottom: 16px;
}

.button {
	display: inline-block;
    padding: 10px 20px;
    background-color:#F9CCE9;
    color: red;
    border: none;
	text-decoration: none;
	border-radius: 20px;
	margin: 20px;
    cursor: pointer;
	transition: background-color 0.3s ease;
	z-index: 10;
 	}

.button:hover {
	background-color: rgba(300, 0, 0, 0.3);
}



/* Build Your Own Donut Section */
.build-your-own {
    background-size: cover;
    background-position: center;
    padding: 64px;
 	position: relative;
    text-align: left;
	z-index: -5;
}

.build-your-own h1 {
    color: #FCE0F9;/* Inner text color */
    font-size: 50px;
	font-family: "8 Heavy";
    margin-bottom: 32px;
    -webkit-text-stroke: 2px red; /* Black outline around the text */
	z-index: 4;
}


/* Layout Container for Image and form*/ 
.build-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/*Style for Image*/
.build-image {
	flex:1;
	padding-right: 20px;
}

.build-image img {
	max-width: 100%;
	border-radius: 20px;
}



/*FORM SECTION*/

.form-section {
    background-color: #D9D9F6;
    padding: 100px;
    border-radius: 40px;
	box-shadow: 0 4px 8px #ccc;
	flex:1;
    max-width: 800px; 
}

.form-field {
	background-color: #FDE6FB;
    margin-bottom: 30px;
}

.form-field label {
	font-size:20pt;
	color: red;
    display: block;
	padding-top:  20px;
	margin-left: 10px;
	margin-right: 10px;
	
}

.form-field select {
    width: 100%;
	background-color: #FDE6FB;
    padding: 30px;
    border: none;
    border-radius: 5px;
}

/* END OF HOME PAGE */





/* About us Page Styles */
.donut-image {
    width: 90%;
	height: 200%;
}

.centered-text {
	width: 70%;
	text-justify: inherit;
    text-align: center;
    position: relative; 
    color: red; 
	margin-bottom: 50px;
}


/* Contact Us Section */
.contact-section {
	color: red;
    display: flex;
    justify-content: center;
	align-content: center;
    padding: 30px;
	padding-top: 20px;
	padding-bottom: 100px;
	position: relative;
    z-index: 1; 
	background-image: url('img/grids.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contact-us {
	flex: 1;
	display: block;
	padding-right: 20px;
	text-align: center;
}

.contact-form {
	align-content:center;
	flex: 1;
	color: red;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Form Styles */
.contact-form label {
	color: red;
    display: block;
    margin: 10px 0 5px;
	font-size: 15px;
	
}

.contact-form input,
.contact-form textarea {
    width: 180%;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
	font-size: 15px;
}


.contact-button {
	width: auto;
    background-color: red; 
    color: white; 
    padding: 15px 90px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 20px; 
	text-align: center;
	align-items: center;
}

/* Hover effect */
.contact-button:hover {
    background-color: pink;
}

/* Background Image for the entire page */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover; 
    z-index: -1;
}

.bottom-image {
	position: absolute;
    width: 100%;
	height: 90%;
	top: 70px;
    z-index: -4; 
}

/* END of About us Page Styles */





/* Donuts Section */

.donuts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 donuts per row */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.donuts-section {
    background-color: #FAF0F9;
    padding: 50px 20px;
    text-align: center;
}

.donuts-section h1 {
    color: red;
    font-family: "8 Heavy";
    font-size: 48px;
    margin-bottom: 20px;
}

.donuts-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
}

/* Donuts Grid */

.donut-card {
    background-color: #FDE6FB;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
	margin: 20px;
}

.donut-card:hover {
    transform: scale(1.05);
}

.donut-card img {
    width: 100%;
    border-radius: 15px;
}

.donut-info {
    margin-top: 20px;
}

.donut-info h3 {
    font-size: 20px;
    color: red;
    margin-bottom: 10px;
}

.donut-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}



/* Drinks Section*/

/* Drinks Page Section */
.drinks-section {
    background-color: #E0F7FA;
    padding: 32px;
    text-align: center;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.drink-card {
    background-color:rgba(222, 225, 199, 0.5);
    padding: 16px;
    border-radius: 20px;
	z-index: -1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.drink-card:hover {
    transform: scale(1.05);
}
.drink-card img {
    width: 400px;
	display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
   
}

.drink-info {
    margin-top: 16px;
    text-align: center;
}

.drink-info h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: #333;
}

.drink-info p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #777;
}





/*LOCATION SECTION*/

.content-container {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 20px;
		margin-top: 40px;
		flex-wrap: wrap;
	}


.pink-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
	margin-bottom: 60px;
}

.icon-container {
	position: absolute;
	top: -20px;
	right: 10px;
	font-size: 40px;
	color: red;
}
.pink-box {
	position: relative;
    background-color: #FCE0F9;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pink-box h2 {
    margin-bottom: 10px;
    color: red;
}

.pink-box p {
    color: red;
}

.map-container {
	flex: 1;
	justify-content: center;
	margin-top: 90px;
	max-width: 600px;
	margin-bottom: 40px;
}

.map-container iframe {
	width: 100%;
	height:100%;
}

.grid-image-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.grid-background {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -5;
}

/* Footer */
.footer {
	position: relative;
	z-index: 1;
    background-color: #FCE0F9;
    padding: 32px;
	text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-middle, .footer-right {
    color: red;
    text-align: center;
}

.footer-right .social-icons {
    display: flex;
    gap: 16px;
}

.footer-right .social-icons img {
    width: 30px;
    height: 30px;
}

/* Responsive Design */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	
	.navbar {
		position: fixed;
	}
	.nav-list {
		display: list-item;
		align-items: center;
	}
	
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 25px;
    }
	
	.hero-video {
		width: 90%;
		
	}
	
    .product-grid {
        grid-template-columns: 80%; 
		gap: 150px;
		justify-content: center;
    }

    .build-content {
        flex-direction: column;
    }

    .contact-us {
        flex-direction: column; 
    }
	
	.contact-form input,
.contact-form textarea {
    width: 100%;
	}
	
	.donuts-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
	
	.drinks-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
	}
	
	.build-your-own h1 {
		font-size: 30pt;
	}
	.build-your-own {
		width: 100%;
	}
	
/*location*/
	.content-container {
		flex-direction: column;
		align-items: center;
	}	
	
	.pink-boxes-container {
		width: 100%;
		max-width: 300px;
		align-items: center;
		margin-bottom: 20px;
	}
	
	.map-container iframe {
		width: 100%;
		height: 300px;
	}
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	
	.navbar {
		position: fixed;
	}
	.nav-list {
		display: list-item;
		align-items: center;
	}
	
/*Home Page*/
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    ..hero-text h1 {
        font-size: 25px;
    }
	
	.hero-video {
		width: 90%;
		
	}

    .product-grid {
        grid-template-columns: 80%; /* Same as Extra Small */
		gap: 200px;
		justify-content: center;
    }

    .build-content {
        flex-direction: column; /* Same as Extra Small */
    }
	
	.build-your-own {
		width: 100%;
	}

	
/* ABOUT US */
    .contact-us {
        flex-direction: column; 
    }
	.contact-form input,
.contact-form textarea {
    width: 100%;
	}
	
/*DONUT SECTION*/
    .donuts-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 donuts per row on smaller screens */
    }
	
	
	
/*DRINK SECTION*/
	.drinks-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
	}


	.build-your-own h1 {
		font-size: 30pt;
	}
	
	
/*LOCATION*/
	.content-container {
		flex-direction: column;
		align-items: center;
	}	
	
	.pink-boxes-container {
		width: 100%;
		max-width: 300px;
		align-items: center;
		margin-bottom: 20px;
	}
	
	.map-container iframe {
		width: 100%;
		height: 300px;
	}
	
}

 
/* Large Desktop (min-width: 992px) */
@media only screen and (min-width: 992px) {
	
	.nav-list {
		justify-content: flex-start;
	}
	
    .hero-text h1 {
        font-size: 56px;
    }

    .product-grid {
        grid-template-columns: repeat(3,1fr);
    }
	
	.product-card {
		width: 150%;
		align-content: center;
		
	}
    .contact-us {
        flex-direction: row; /* Side by side in contact us section */
    }
	.contact-form input,
.contact-form textarea {
    width: 190%;
	justify-content: center;
	}
	
	.donuts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 donuts per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
	
	.drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
	}
	
	
/*LOCATION SECTION*/
	.content-container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 20px;
	}
	
	.pink-boxes-container { 
	width: 50%;
	}
	
	.map-container {
		width: 50%;
	}
	
	.map-container iframe {
		width: 100%;
		height: 400px;
	}
	
	.grid {
		width: 100%;
		height: 0;
	}
}
