/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&display=swap');

/* =========================
   ROOT THEME VARIABLES
========================= */
:root {
    --text: #973621;
    --bg: #FFF3DF;
    --accent1: #973621;
    --accent2: #A6A9B3;
    --accent3: #636741;
}

/* =========================
   GLOBAL RESET
========================= */
*{
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Cormorant', serif;
    background-color: var(--bg);
    color: var(--text);
}

/* =========================
   NAVIGATION BAR
========================= */
.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--accent1);
    padding: 15px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =========================
   PAGE CONTAINER
========================= */
.container {
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
    color: var(--text);
    font-weight: 500;
    letter-spacing: 1px;
}

h1 {
    font-size: 43px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}
@media (max-width: 768px) {
	h1{ font-size: 43px; }

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
}
p {
 font-size: 24px;
}
}

/* =========================
   LINKS
========================= */
a {
    color: var(--accent3);
}

a:hover {
    color: var(--accent2);
}

/* =========================
   FORMS
========================= */
input, select, textarea {
    font-family: 'Cormorant', serif;
    padding: 10px;
    border: 1px solid var(--accent2);
    border-radius: 6px;
    width: 100%;
    max-width: 400px;
    background: white;
    color: var(--text);
}

button {
    font-family: 'Cormorant', serif;
    background: var(--accent1);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: var(--accent3);
}

/* =========================
   SECTION HELPERS
========================= */
.section {
    margin-bottom: 40px;
}

.center {
    text-align: center;
}


/* =========================
   VERTICAL STRIPE BACKGROUND
========================= */

.stripe-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image: repeating-linear-gradient(
        to right,

        #A6A9B3 0px,
        #A6A9B3 60px,

        #FFF3DF 60px,
        #FFF3DF 75px,

        #636741 75px,
        #636741 90px,

        #FFF3DF 90px,
        #FFF3DF 105px
    );

    background-position: calc(50% - 30px) 0;
}
.nav {
    position: relative;
    z-index: 1000;
}

.content-card {
    background: #FFF3DF;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;

    position: relative;
    z-index: 2;

    /* sharp edges */
    border-radius: 0;

    /* remove shadow completely */
    box-shadow: none;
}

.content-card::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;

    border: 4px solid #973621;

    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}

.corner-image {
    position: fixed;
    bottom: 20px;
    left: 20px;

    width: 250px;      /* adjust as desired */
    height: auto;

    z-index: 1;
    pointer-events: none;
}

.corner-image-left {
    position: fixed;
    bottom: 20px;
    left: 20px;

    width: 250px;
    height: auto;

    z-index: -1;
    pointer-events: none;
}

.corner-image-right {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 250px;
    height: auto;

    z-index: -1;
    pointer-events: none;
}
.corner-image-left,
.corner-image-right {
    width: clamp(120px, 18vw, 300px);
}

.login-outer {
    max-width: min(900px, calc(100vw - 300px));
}

@media (max-width: 700px) {
    .corner-image-left,
    .corner-image-right {
        display: none;
    }
}
/* LOGIN PAGE */

.login-page {
    background-color: #FFF3DF;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-outer {
    background: #FFF3DF;

    padding: 30px;

    position: relative;

    width: 900px;
    max-width: 90vw;
}

.login-outer::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;

    border: 4px solid #973621;
}

.login-stripes {
    padding: 40px;

    background-image: repeating-linear-gradient(
        to right,
        #A6A9B3 0px,
        #A6A9B3 60px,

        #FFF3DF 60px,
        #FFF3DF 75px,

        #636741 75px,
        #636741 90px,

        #FFF3DF 90px,
        #FFF3DF 105px
    );

    /* Center pattern in container */
    background-position-x: calc(50% - 30px);
}

.login-card {
    background: #FFF3DF;

    padding: 40px;

    text-align: center;

    position: relative;
}

.login-card::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;

    border: 4px solid #973621;
}

.login-outer::before,
.login-card::before {
    pointer-events: none;
}

/* =========================
   NAV-STYLE BUTTONS
========================= */

.nav-button {
    display: inline-block;

    color: white;
    text-decoration: none;

    padding: 8px 12px;

    border-radius: 6px;

    background: var(--accent1);

    font-weight: 500;

    transition: background 0.2s ease;
}

.nav-button:hover {
    background: var(--accent3);
    color: white;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;

    margin-top: 25px;
}

.couple-row {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 30px;
}

.couple-text {
    text-align: center;
    min-width: 320px;
}

.couple-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.couple-photo img {
    max-width: 140px;
    height: auto;
}

/* Mobile layout */
@media (max-width: 700px) {

    .couple-row {
        flex-direction: column;

        gap: 20px;
    }

    .couple-text {
        min-width: auto;
    }

    .couple-photo img {
        max-width: 180px;
    }
}

/* =========================
   WELCOME PAGE IMAGE
========================= */

.welcome-image {
    display: block;

    margin: 30px auto;

    width: 100%;
    max-width: 500px;

    height: auto;
}

.welcome-message {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

@media (max-width: 600px) {
    .two-col {
        justify-content: center;   /* center when stacked */
        gap: 20px;
    }

    .col {
        max-width: 100%;
    }
}