/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}

:root {
	--light-blue: #c0d6df;
	--dark-purple: #21001c;
	--off-white: #fff9f6;
	--red: #a51303;
	--purple-gray: #886883;

	--heading-fonts: "Italiana", "Mea Culpa", serif;
	--body-fonts: "Lexend Zetta", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after{
	box-sizing: border-box;
}

body {
	font-family: var(--body-fonts);
	font-size: 1rem;
	line-height: 1.5;
	background-color: var(--off-white);
	margin: 0;
}

header,
main,
footer {
	width: 100%;
	max-width: none;
}

#skip {
	position: absolute;
	top: auto;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

#skip:focus {
	position: static;
	display: block;
	padding: 1rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--off-white);
	background: var(--dark-purple);
	margin-bottom: 4px;
}

.page-wrapper {
	min-width: 320px;
	max-width: 1440px;
	margin: 0 auto;
}

.site-header {
	background-color: var(--dark-purple);
	color: var(--off-white);
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
}

.site-branding img {
	max-height: 150px;
	width: auto;
	display: block;
}

nav {
	width: 100%;
}

nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

nav a {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--off-white);
	text-decoration: none;
	padding: 0.25rem 0;
	transition: color 100ms;
}

nav a:hover {
	color: var(--purple-gray);
}

a {
	color: var(--red);
	text-decoration: none;
}

a:hover {
	color: var(--dark-purple);
}


#hero {
	background-image: url("images/Herobackground.png");
	background-size: cover;
	background-position: center;
	min-height: 26rem;
	padding: 6rem 1rem 5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-line {
	display: block;
}

#hero h1 {
	font-family: "Italiana", serif;
	color: var(--red);
	font-size: 2rem;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.script-letter {
	font-family: "Mea Culpa", cursive;
	font-size: 4rem;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	line-height: 0.8;
	margin-inline: 0.15em;
}

#hero .button-primary {
	display: inline-block;
	margin: 0 auto;
	background-color: var(--red);
	color: var(--off-white);
	padding: 0.75rem 2.75rem;
	text-align: center;
}

#hero .button-primary:hover {
	background-color: var(--dark-purple);
	transition: 300ms;
}

#process {
	background-color: var(--off-white);
	padding: 3rem 1rem;
}

.process-inner {
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
}


.process-text h2 {
	font-family: "Italiana", serif;
	color: var(--dark-purple);
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.process-text p {
	color: var(--dark-purple);
	font-size: 0.75rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
}

.process-grid {
	display: grid;
	grid-template-columns: 1fr; 
	row-gap: 2rem;
}

.process-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.process-card img {
	width: 100%;
	max-width: 260px;
	height: auto;
	display: block;
	margin-bottom: 0.75rem;
}

.process-card h3 {
	color: var(--dark-purple);
	font-size: 1rem;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.process-card p {
	color: var(--dark-purple);
	font-size: 0.75rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin: 0;
	max-width: 300px;
}

#exhibition {
	background-color: var(--red);
	color: var(--off-white);
	padding: 4rem 1rem 5rem;
}

.exhibition-inner {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
}

.exhibition-header {
	display: block;
	background: transparent;
	padding: 0;
	margin: 0 auto 3rem;
	text-align: center;
}

.exhibition-header h2 {
	font-family: "Italiana", serif;
	color: var(--off-white);
	font-size: 2rem;
	line-height: 2;
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.small-script-letter {
	font-family: "Mea Culpa", cursive;
	font-size: 5rem;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	margin-inline: 0.15em;
}

.exhibition-header p {
	font-size: 0.75rem;
	max-width: 32rem;
	margin: 0 auto;
}


.bouquet-list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: center;
}

.bouquet-card { 
	background-image: url("images/XSbackground.png"); 
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: 100% 100%; 
	max-width: 1000px; 
	width: 100%; 
	min-height: 800px; 
	padding: 0.2rem; 
	flex-direction: column;
	display: flex; 
	justify-content: center; 
	align-items: center; 
	gap: 1.75rem; 
	text-align: center; 
	color: var(--dark-purple); 
}

.bouquet-card--reverse {
	flex-direction: column;
}
	

.bouquet-card img{ 
	width: 100%; 
	max-width: 150px; 
	height: auto; 
	display: block; 
} 

.bouquet-text{ 
	max-width: 200px; 
} 

.bouquet-card .bouquet-text h3 { 
	margin-bottom: 1rem; 
	font-family: "Italiana", serif; 
	color: var(--dark-purple); 
	font-size: 1.6em; 
	line-height: 1.5; 
	font-weight: 400; 
	letter-spacing: 0.08em; 
	text-transform: uppercase; 
} 
.bouquet-card .bouquet-text p { 
	font-family: var(--body-fonts);
	color: var(--dark-purple); 
	font-size: 0.60rem; 
	line-height: 1.5; 
	font-weight: 400; 
	letter-spacing: 0.08em; 
	margin-bottom: 1rem; 
} 
.price-row{ 
	display: flex; 
	align-items: center; 
	gap: 1.5rem; 
	margin-top: 0.5rem; 
} 
.price { 
	margin: 0; 
	font-family: "Italiana", serif; 
	color: var(--dark-purple); 
	font-size: 1.5em; 
	line-height: 1; 
	font-weight: 400; 
	letter-spacing: 0.05em; 
	text-transform: uppercase; 
}

#exhibition .button-secondary {
	background-color: var(--red);
	color: var(--off-white);
	padding: 0.75rem 2rem;
	transition: 300ms;
}

#exhibition .button-secondary:hover {
	background-color: var(--dark-purple);
}

#contact {
	background-image: url("images/Contactusbackground.png");
	background-size: cover;
	background-position: center;
	padding: 4rem 1.5rem;
}

.contact-heading {
	text-align: center;
	font-family: "Italiana", serif;
	color: var(--red);
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 2.5rem;
}


.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: block;
}

.contact-left {
	text-align: left;
	margin-bottom: 2.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.contact-item .icon svg {
	width: 40px;
	height: 40px;
}

.contact-item p,
.contact-item a {
	font-size: 0.9rem;
	color: var(--red);
	letter-spacing: 0.1em;
}


.contact-right form {
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}

input,
label,
textarea,
legend {
	font-family: var(--body-fonts);
}

label {
	font-weight: 500;
	margin: 16px 0 4px 4px;
	color: var(--red);
	font-size: 0.9rem;
}

input,
textarea {
	display: block;
	margin: 0 auto 2rem;
	border: 2px solid var(--red);
	width: 100%;
	max-width: 100%;
	background-color: var(--off-white);
	height: 32px;
	color: var(--red);
	padding: 2px 6px;
	box-sizing: border-box;
}

textarea {
	height: 60px;
	resize: vertical;
}

input:focus,
textarea:focus {
	outline: 4px solid var(--red);
	outline-offset: 2px;
}

/* radios */

fieldset {
	border: 2px solid var(--red);
	padding: 12px 16px 16px 12px;
	margin: 16px auto 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: nowrap;
}

legend {
	font-weight: 600;
	font-size: 1rem;
	padding: 0 8px;
	color: var(--red);
}

#contact input[type="radio"] {
	appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	width: 0;
	height: 0;
}

#contact input[type="radio"] + label {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

#contact input[type="radio"] + label::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	border: 2px solid var(--red);
	background-color: var(--off-white);
	box-sizing: border-box;
}

#contact input[type="radio"]:checked + label::before {
	background: radial-gradient(circle, var(--red) 0 60%, transparent 60% 100%);
}

#contact input[type="radio"]:focus + label::before {
	box-shadow: 0 0 0 2px var(--red);
}

#my-submit {
	border: none;
	height: 48px;
	width: 100%;
	background-color: var(--red);
	color: var(--off-white);
	font-weight: 500;
	margin: 32px auto 0;
	cursor: pointer;
}

#my-submit:hover {
	background-color: var(--red);
}

footer {
	background-color: var(--dark-purple);
	color: var(--off-white);
	padding: 2.5rem 1.5rem;
}

footer * {
	color: var(--off-white);
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.75rem;
}

.footer-logo {
	width: 140px;
	height: auto;
	display: block;
}

.footer-center .social-icons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 0.75rem;
}

.footer-center .social-icons svg {
	width: 28px;
	height: 28px;
	stroke: var(--off-white);
}

.footer-center p {
	font-size: 0.8rem;
	margin: 0;
}


.footer-right {
	width: 100%;
	max-width: 260px;
	text-align: left;
}

.footer-right label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.footer-right input[type="email"] {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 2px solid var(--off-white);
	background: var(--dark-purple);
	color: var(--off-white);
	box-sizing: border-box;
}

.footer-submit {
	margin-top: 0.75rem;
	width: 100%;
	padding: 0.75rem;
	background-color: var(--off-white);
	color: var(--dark-purple);
	border: none;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 0.75rem;
}

.footer-submit:hover {
	background-color: var(--purple-gray);
	color: var(--off-white);
}


@media (min-width: 768px) {

	.site-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	nav {
		flex: 1;
	}

	nav ul {
		justify-content: flex-end;
	}

	#hero h1 {
		font-size: 4rem;
	}

	.script-letter {
		font-size: 8rem;
	}

	.process-inner {
		display: grid;
		grid-template-columns: 1fr 2fr;
		column-gap: 4rem;
		text-align: left;
	}

	.process-text {
		text-align: left;
	}

	.process-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 2rem;
	}

	.process-card {
		align-items: center;
		text-align: center;
	}

	.exhibition-header h2 {
		font-family: "Italiana", serif;
		color: var(--off-white);
		font-size: 5rem;
		line-height: 2;
		font-weight: 400;
		letter-spacing: 0.08em;
		margin-bottom: 1rem;
		text-transform: uppercase;
	}
	.exhibition-header p {
		font-size: 1rem;
		max-width: 1000px;
		margin: 0 auto;
	}
	.small-script-letter {
		font-family: "Mea Culpa", cursive;
		font-size: 9rem;
		font-weight: 400;
		display: inline-block;
		vertical-align: middle;
		line-height: 1.5;
		margin-inline: 0.15em;
	}

	.bouquet-card {
		background-image: url("images/XLbackground.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100% 100%;
		min-height: 600px;

		flex-direction: row;
		align-items: center;
		text-align: left;

		padding: 3rem 5rem;
		gap: 3rem;
	}

	.bouquet-card--reverse {
		flex-direction: row-reverse;
	}
	.bouquet-text{ 
		max-width: 300px; 
	} 
	.bouquet-card .bouquet-text h3 {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.bouquet-card .bouquet-text p {
		font-size: 0.6rem;
	}
	
	.bouquet-card img{ 
		width: 100%; 
		max-width: 250px; 
		height: auto; 
		display: block; 
	} 


	.price-row {
		justify-content: flex-start;
	}

	#exhibition .button-secondary {
			font-size: 0.7rem;  
			padding: 0.5rem 1rem; 
		}

	.content-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 4rem;
		align-items: flex-start;
	}

	.contact-right form {
		margin: 0 0 0 auto;
	}

	.footer-inner {
		flex-direction: row;
		align-items: center;
		text-align: left;
	}

	.footer-center {
		flex: 1;
		text-align: center;
	}

	.footer-right {
		margin-left: auto;
	}
}

@media (max-width: 360px) {
    .price-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;  
    }

    .price-row .button-secondary {
        width: 100%;           
        max-width: 140px;   
        text-align: center;
    }

		#exhibition .button-secondary {
			font-size: 0.7rem;  
			padding: 0.5rem 1rem; 
		}

}