/*
 My edits 
*/

:root {
    --wedding-blue: #002367;
    --wedding-blue-soft: #a2b3c2;
    --wedding-light: #e3dfd9;
    --wedding-sage: #b3c0b9;
    --wedding-green: #194d40;
}

/* Base Styles */
body, input, textarea, select {
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: 300;
    font-size: 18pt;
    line-height: 1.75em;
    color: var(--wedding-blue);
    letter-spacing: 0.025em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--wedding-blue);
}

#intro h2 {
    font-family: 'Carattere', serif !important;
    font-size: 7em; /* Adjust size as needed for the script font */
    font-weight: 400; /* Carattere is typically regular/400 weight */
	color: var(--wedding-blue-light);
}

a {
    color: var(--wedding-green);
}

/* Buttons */
.button {
    background-color: var(--wedding-green);
    color: #ffffff;
}

.button:hover {
    background-color: var(--wedding-blue);
}

.button.style2 {
    background-color: transparent;
    border: solid 2px var(--wedding-blue-soft);
    color: var(--wedding-blue);
}

/* Forms */
input[type="text"], input[type="password"], input[type="email"], textarea {
    border: solid 2px var(--wedding-blue-soft);
    color: var(--wedding-blue);
}

input[type="text"]:focus, textarea:focus {
    border-color: var(--wedding-green);
}

/* Section Backgrounds */

.palette-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
	margin-bottom: 20px;
    flex-wrap: wrap;
}

.swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.swatch span {
    display: none; /* Hide labels by default, or remove this to show them */
}

/* Force the body font */
#wrapper, body {
    font-family: 'Playfair Display', serif !important;
}

/* Force the header font */
#wrapper h1, #wrapper h2 {
    font-family: 'Carattere', cursive !important;
}

/* If you need to target the banner specifically */
#intro h1 {
    font-family: 'Carattere', cursive !important;
    font-size: 5rem !important;
}

#intro h2 {
    font-family: 'Carattere', cursive !important;
    font-size: 4rem !important;
}

.wedding-photo {
    display: block;
    max-width: 500px;
    margin: 2rem auto;
}

.wedding-photo img {
    width: 50%;
    display: block;
    margin: 0 auto; 
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Using specific selectors to override the template defaults */
section .button.primary, 
section .button.special {
    background-color: var(--wedding-green) !important;
    border-color: var(--wedding-green) !important;
    color: #ffffff !important;
}

section .button.primary:hover,
section .button.special:hover {
    background-color: var(--wedding-blue) !important;
    border-color: var(--wedding-blue) !important;
    color: #ffffff !important;
}

.program li {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.program .icon {
    color: var(--wedding-green);
    width: 24px;
    text-align: center;
}

.palette-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
	margin-bottom: 20px;
    flex-wrap: wrap;
}

strong {
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    color: var(--wedding-blue) !important;
}

.palette-display {
    display: flex;
    justify-content: center;
    gap: 40px; /* a bit more space for angled text */
    margin: 20px 0;
    flex-wrap: wrap;
}

.swatch-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.swatch {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
