/*
Theme Name: Jed and Mae | The Wedding
Theme URI: 
Author: Jed and Mae | The Wedding
Author URI: 
Description: 
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 5.7
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: custom-project-theme
Tags: 

/* CSS Reset
---------------------------------------------------------------------------- */

/* CSS Reset
---------------------------------------------------------------------------- */

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

html {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

b,
strong {
	font-weight: 600;
}

ol,
ul {
	padding: 0;
}

ol:where(:not([class*="wp-block"])),
ol:where(.wp-block-list),
ul:where(:not([class*="wp-block"])),
ul:where(.wp-block-list) {
	padding-inline-start: var(--wp--preset--spacing--md);
}

div[class*="wp-block-"] figcaption {
	color: var(--wp--preset--color--neutral-9);
	font-size: var(--wp--preset--spacing--xs);
	margin-bottom: 0;
	margin-top: 20px;
	text-align: center;
}

img,
figure {
	max-width: 100%;
	height: auto;
}

/* Standardize form styling
--------------------------------------------- */

input,
button,
textarea,
select {
	font: inherit;
}

input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
	appearance: none;
}

input:not([type="submit"]),
select,
textarea,
.wp-block-post-comments-form input:not([type="submit"]):not([type="checkbox"]),
.wp-block-post-comments-form textarea {
	color: var(--wp--preset--color--neutral-10);
	border-radius: 5px;
	border: solid 1px var(--wp--preset--color--neutral-10);
	padding: .5em 1em;
	font-size: var(--wp--preset--font-size--text-base);
	width: 100%;
}

input:focus-visible,
textarea:focus-visible {
	outline-color: var(--wp--preset--color--primary);
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

label {
	width: 100%;
	display: block;
}

::placeholder {
	color: var(--wp--preset--color--neutral-10);
	font-size: var(--wp--preset--font-size--text-sm);
	opacity: 0.75;
}

/* Post Comment Button */
input[type="submit"].wp-block-button__link {
	padding-top: var(--wp--custom--block--button--padding-y);
	padding-right: var(--wp--custom--block--button--padding-x);
	padding-bottom: var(--wp--custom--block--button--padding-y);
	padding-left: var(--wp--custom--block--button--padding-x);
}

input[type="submit"].wp-block-button__link:hover {
	background-color: var(--wp--preset--color--neutral-12);
	color: var(--wp--preset--color--light);
	border-color: var(--wp--preset--color--neutral-12);
}

:root {
    --focus-ring-color: var(--wp--preset--color--neutral-10);
    --focus-ring-offset: 2px;
}

:where(.wp-site-blocks *:focus) {
    outline-width: 2px;
    outline-style: solid;
    outline-color: var(--focus-ring-color);
    outline-offset: var(--focus-ring-offset);
}

.wp-element-button,
.wp-block-button__link {
    transition: all 0.2s ease-in-out;
}
.heading-1{
	font-size: clamp(2.25rem, 6vw, 3rem)
}
/* ===================================
   Wedding RSVP Form
=================================== */

.wpcf7 {
    max-width: 700px;
    margin: auto;
}

.wpcf7 form {
    background: #ffffffcf;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid #e7d9c9;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* Labels */

.wpcf7 label {
    display: block;
    margin-bottom: 22px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2b;
}

/* Inputs */

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 18px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fcfbfa;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    transition: .3s;
    box-sizing: border-box;
}

/* Focus */

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #C8A97E;
    box-shadow: 0 0 0 4px rgba(200,169,126,.15);
    background: #fff;
}

/* Placeholder */

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder{
    color:#999;
}

/* Textarea */

.wpcf7 textarea{
    height:150px;
    resize:vertical;
    resize: none;
}

/* Radio */

.wpcf7-radio{
    display:flex;
    gap:20px;
    margin-top:12px;
}

.wpcf7-list-item{
    margin:0;
}

.wpcf7-list-item label{
    display:flex;
    align-items:center;
    gap:10px;
    background:#faf7f4;
    border:1px solid #e7d9c9;
    border-radius:10px;
    padding:15px 20px;
    cursor:pointer;
    transition:.25s;
}

.wpcf7-list-item label:hover{
    border-color:#C8A97E;
    background:#fff;
}

.wpcf7 input[type=radio]{
    accent-color:#C8A97E;
    transform:scale(1.2);
}

/* Submit Button */

.wpcf7-submit{
    width:100%;
    padding:16px;
    border:none;
    border-radius:999px;
    background:#C8A97E;
    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
}

.wpcf7-submit:hover{
    background:#b28d61;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(200,169,126,.35);
}

/* Validation */

.wpcf7-not-valid{
    border-color:#d9534f !important;
}

.wpcf7-not-valid-tip{
    color:#c0392b;
    font-size:13px;
    margin-top:6px;
}

.wpcf7-response-output{
    margin-top:25px !important;
    border-radius:10px;
    padding:15px !important;
    font-size:14px;
}

/* Spinner */

.wpcf7-spinner{
    margin-left:15px;
}

/* Mobile */

@media(max-width:768px){

    .wpcf7 form{
        padding:25px;
    }

    .wpcf7-radio{
        flex-direction:column;
    }

}

.hero-banner .wp-block-cover{
	align-items: end;
}

.hero-banner .arc-container {
	height: 95vh;
	position: relative;
}

.hero-banner .arc-container .arc-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
@media (min-height: 1000px) {
	.hero-banner .wp-block-cover {
		height: 1000px;
		min-height: unset !important;
	}

	.hero-banner .wp-block-cover .wp-block-cover__inner-container {
		height: 95%;
	}

	.hero-banner .arc-container {
		height: 100%;
		position: relative;
	}
}
@media (max-height: 900px)  {
	.hero-banner .wp-block-cover{
		height: 1000px;
		min-height: unset !important;
	}
	.hero-banner .wp-block-cover .wp-block-cover__inner-container{
		height: 95%;
	}
	.hero-banner .arc-container {
		height: 100%;
		position: relative;
	}

}
@media (max-width: 800px) {
	.hero-banner .wp-block-cover {
		height: 850px;
	}

}
@media (max-width: 650px) {
	.hero-banner .wp-block-cover {
		height: 750px;
	}
}

@media (max-width: 600px) {
	.hero-banner .wp-block-cover {
		height: 650px;
	}
}

@media (max-width: 500px) {
	.hero-banner .wp-block-cover {
		height: 500px;
	}
}

@media (max-width: 400px) {
	.hero-banner .wp-block-cover .wp-block-cover__inner-container {
		height: 430px;
	}
	.hero-banner .arc-container {
		height: 100%;
		position: relative;
		background-size: auto 125% !important;
		background-repeat: no-repeat;
		background-position: bottom center !important;
	}
}

.vertical-separetor hr {
	width: 3px !important;
	height: 46px !important;
}

.scratch-border-bottom,
.scratch-border-top {
	position: relative;
}

.scratch-border-bottom:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 70px;
	left: 0;
	bottom: -25px;
	background-image: url(./assets/images/border-scratch-top.png);
}

.scratch-border-top:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 70px;
	left: 0;
	top: -28px;
	background-image: url(./assets/images/border-scratch-bottom.png);
	z-index: 1;
}

.justify-center{
	justify-content: center;
}

.text-shadow{
	text-shadow: 0px 0px 10px #000;
}

.swap-order-1{
	order: 1;
}

.swap-order-2 {
	order: 2;
}

@media (max-width: 780px) {
	.swap-order-1 {
		order: 2;
	}

	.swap-order-2 {
		order: 1;
	}
}

.wedding-details{ justify-content: center;}

@media (max-width: 780px) {
	.wedding-details .wedding-details-text.wp-block-column{ 
		flex: 0 0 auto !important;
		width: auto !important;
		padding-bottom: var(--wp--preset--spacing--3-xl);
	}
}

@media (max-width: 780px) {
	br{ display: none;}
}