@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&display=swap');

/* --------------------------------
   COLORS
-------------------------------- */

:root {
    --cream: #ded8cc;
    --light-cream: #f5f1e9;
    --green: #35473d;
    --soft-green: #66736a;
    --border: rgba(53, 71, 61, 0.28);
}


/* --------------------------------
   BASIC RESET
-------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-cream);
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

/* --------------------------------
   MAIN HEADER
-------------------------------- */

.site-header {
    background-color: var(--light-cream);
    border-bottom: 1px solid rgba(43, 43, 41, 0.15);
    width: 100%;
}

.header-nav {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 24px 30px 18px;
}


/* MAGGIE & DANNY */

.couple-name {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 3px;

    line-height: 1;

    margin-bottom: 18px;

    text-decoration: none;
}


/* NAVIGATION ROW */

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

    gap: 55px;
}


/* NAVIGATION WORDS */

.navigation a {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;

    text-decoration: none;
    text-transform: uppercase;
}


/* HOVER */

.navigation a:hover {
    opacity: 0.5;
}


/* MOBILE */

@media (max-width: 700px) {

    .header-nav {
        padding: 20px 15px 16px;
    }

    .couple-name {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .navigation {
        flex-wrap: wrap;
        gap: 12px 25px;
    }

    .navigation a {
        font-size: 8px;
        letter-spacing: 2px;
    }
}

/* --------------------------------
   HERO
-------------------------------- */

.hero {
    align-items: center;
    background-color: var(--light-cream);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
   min-height: auto;
    padding: 70px 25px 40px;
    overflow: visible;
    text-align: center;
}

.hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    width: 100%;
    padding-bottom: 180px;
}

.hotel-name {
    color: #2B2B29;
    font-family: inherit;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.wedding-date {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2B2B29;
}

/* --------------------------------
   NAMES
-------------------------------- */

.name-top {
    display: block;
    font-family: "Parisienne", cursive;
    font-size: clamp(42px, 5vw, 75px);
    font-weight: normal;
    letter-spacing: 0px;
}


/* --------------------------------
   ANNOUNCEMENT
-------------------------------- */

.announcement {
    font-size: clamp(17px, 2vw, 29px);
    font-weight: 600;
    letter-spacing: clamp(6px, 1vw, 13px);
    line-height: 1.5;
    margin-top: 55px;
    text-transform: uppercase;
}


/* --------------------------------
   DATE AND RSVP
-------------------------------- */


.wedding-location {
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.primary-button {
    background-color: transparent;
    border: 1px solid #2B2B29;
    color: #2B2B29;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    padding: 17px 38px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.primary-button:hover {
    background-color: #2B2B29;
    color: var(--light-cream);
}


/* --------------------------------
   FOOTER
-------------------------------- */

.site-footer {
    background-image: url("Images/footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100px;
    width: 100%;

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

    text-align: center;
}

.pattern-header {
    width: 100%;
    height: 90px;

    background-image: url("Images/footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --------------------------------
   TABLET
-------------------------------- */

@media (max-width: 950px) {
    .navigation {
        gap: 18px;
    }

    .navigation a {
        font-size: 9px;
    }

    .name-top,
    .name-bottom {
        letter-spacing: -5px;
    }

    .announcement {
        letter-spacing: 8px;
    }
}


/* --------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 760px) {
    .site-header {
        min-height: 76px;
    }

    .couple-name {
        font-size: 21px;
    }

    .menu-button {
        display: block;
    }

    .navigation {
        align-items: stretch;
        background-color: var(--light-cream);
        border-bottom: 1px solid var(--border);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 15px 6% 25px;
        position: absolute;
        top: 100%;
        width: 100%;
    }

    .navigation.open {
        display: flex;
    }

    .navigation a {
        border-bottom: 1px solid var(--border);
        font-size: 10px;
        padding: 16px 0;
    }

    .navigation a::after {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 76px);
        padding: 65px 18px 80px;
    }

    .name-top,
    .name-bottom {
        font-size: clamp(70px, 23vw, 110px);
        letter-spacing: -4px;
    }

    .announcement {
        font-size: 15px;
        letter-spacing: 5px;
        margin-top: 45px;
        max-width: 360px;
    }

    .decorative-line {
        margin: 27px auto 32px;
        width: 80px;
    }

    .wedding-date {
        font-size: 24px;
    }

    .wedding-location {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .welcome-section {
        padding: 90px 24px;
    }

    .site-footer {
        flex-direction: column;
        gap: 7px;
        text-align: center;
    }
}


/* --------------------------------
   SMALL PHONES
-------------------------------- */

@media (max-width: 430px) {
    .name-top,
    .name-bottom {
        font-size: 68px;
        letter-spacing: -3px;
    }

    .hero-and {
        font-size: 36px;
        margin: 30px 0 36px;
    }

    .announcement {
        font-size: 13px;
        letter-spacing: 4px;
    }
}

.venue-illustration {
    display: block;
    width: 100%;
    max-width: 500px;   /* Make this smaller or larger */
    height: auto;
    margin: 0 auto 10px;
}

/* --------------------------------
   RSVP PAGE
-------------------------------- */

body.rsvp-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.rsvp-main {
    background-color: var(--light-cream);
    min-height: auto;
    padding: 80px 24px 100px;
}

.rsvp-content {
    margin: 0 auto;
    max-width: 650px;
    text-align: center;
}

/* SMALL TEXT ABOVE RSVP */

/* LARGE RSVP HEADING */
.rsvp-content h1 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 55px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0 0 25px;
    text-transform: uppercase;
}

/* INTRO PARAGRAPH */
.rsvp-intro {
       color: #2B2B29;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 18px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* FORM */
.rsvp-form {
    text-align: left;
}

.form-group {
    margin-bottom: 32px;
}

/* FORM LABELS */
.form-group label,
.form-group legend {
    color: #2B2B29;
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 11px;
    text-transform: uppercase;
}

/* INPUTS */
.form-group input[type="text"],
.form-group select,
.form-group textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(43, 43, 41, 0.45);
    border-radius: 0;
    box-sizing: border-box;
    color: #2B2B29;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    padding: 13px 2px;
    width: 100%;
}

.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(43, 43, 41, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #2B2B29;
}

/* ATTENDING OPTIONS */
.attendance-group {
    border: 0;
    padding: 0;
}

.radio-option {
    align-items: center;
    color: #2B2B29;
    display: flex !important;
    font-size: 13px !important;
    gap: 10px;
    letter-spacing: 0.5px !important;
    margin: 14px 0 !important;
    text-transform: none !important;
}

.radio-option input {
    accent-color: #2B2B29;
}

/* SUBMIT BUTTON */
.rsvp-submit {
    background-color: transparent;
    border: 1px solid #2B2B29;
    color: #2B2B29;
    cursor: pointer;
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 48px auto 0;
    padding: 16px 42px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.rsvp-submit:hover {
    background-color: #2B2B29;
    color: var(--light-cream);
}

/* ==========================
   THREE HOTEL CARDS
========================== */

.hotel-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    margin-top: 60px;
    max-width: 1250px;
}

.hotel-card {
    border: 1px solid rgba(50, 58, 51, 0.25);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 35px 30px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hotel-card:hover {
    box-shadow: 0 14px 35px rgba(50, 58, 51, 0.09);
    transform: translateY(-5px);
}


.hotel-card-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}

.hotel-card .card-number {
    color: var(--green);
    font-size: 10px;
    letter-spacing: 2px;
    margin: 0;
}

/* Hotel Image */

.hotel-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;

    margin: 24px 0 30px;

    border-radius: 2px;
}

.hotel-card h3 {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 22px;
}


/* Keeps each button aligned at bottom */

.hotel-button {
    align-self: flex-start;
    border-bottom: 1px solid var(--green);
    color: var(--green);
    display: inline-block;
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-top: auto;
    padding-bottom: 6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.hotel-button:hover {
    opacity: 0.55;
}

.featured-hotel .hotel-button {
    border-color: var(--light-cream);
    color: var(--light-cream);
}

/* ==========================
   AIRPORT + TRANSPORTATION
========================== */

.travel-help-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, 1fr);

    max-width: 900px;

    margin: 60px auto;
}

.travel-help-card {
    border-top: 1px solid rgba(50, 58, 51, 0.35);
    padding: 32px 10px 20px;
}

.travel-help-card .card-number {
    color: var(--green);
    font-size: 9px;
    letter-spacing: 2px;
    margin: 0 0 35px;
}

.travel-help-card h3 {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 400;
    margin: 0 0 20px;
}

.travel-help-card p {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}


.hotel-label {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 950px) {
    .hotel-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .hotel-card {
        min-height: 420px;
    }
}

@media (max-width: 700px) {
    .travel-details {
        padding: 75px 22px 90px;
    }

    .travel-details-heading {
        margin-bottom: 45px;
    }

    .hotel-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .hotel-card-top {
        margin-bottom: 38px;
    }

    .travel-help-heading {
        margin-top: 75px;
        padding-top: 70px;
    }

    .travel-help-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------
   SCHEDULE PAGE
-------------------------------- */

body.schedule-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.schedule-main {
    background-color: var(--light-cream);
}


/* --------------------------------
   SCHEDULE HERO
-------------------------------- */

.schedule-hero {
    margin: 0 auto;
    max-width: 760px;
    padding: 85px 24px 75px;
    text-align: center;
    margin-top: 20px;
}

.schedule-eyebrow {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.schedule-hero h1 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(58px, 8vw, 88px);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.schedule-divider {
    background-color: rgba(43, 43, 41, 0.4);
    height: 1px;
    margin: 30px auto;
    width: 70px;
}

.schedule-intro {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 560px;
}


/* --------------------------------
   SCHEDULE EVENTS
-------------------------------- */

.schedule-section {
    padding: 60px 6% 65px;
}

/* Three events next to each other */

.schedule-list {
    border-bottom: 1px solid rgba(43, 43, 41, 0.22);
    border-top: 1px solid rgba(43, 43, 41, 0.22);

    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;


    margin: 0 auto;
    max-width: 1200px;
}


/* INDIVIDUAL EVENT */

.schedule-event {
    border-bottom: none;
    border-right: 1px solid rgba(43, 43, 41, 0.22);

    display: block;

    padding: 50px 40px;

    text-align: center;
}

.schedule-event:last-child {
    border-right: none;
}

.event-divider {
    width: 300px;
    height: 1px;
    background-color: rgba(43, 43, 41, 0.35);
    margin: 10px auto 22px;
}

.date-divider {
     width: 150px;
    height: 1px;
    background-color: rgba(43, 43, 41, 0.35);
    margin: 10px auto 22px;
}
/* --------------------------------
   DATE
-------------------------------- */

.event-date {
   color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    margin: 0;
    margin-bottom: 20px;
}



.event-month {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;

    margin: 12px 0 0;

    text-transform: uppercase;
}


/* --------------------------------
   EVENT DETAILS
-------------------------------- */

.event-details {
    text-align: center;
}

.event-time {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;

    margin: 0 0 14px;

    text-transform: uppercase;
}


/* EVENT NAME */

.event-details h2 {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 300;

    line-height: 1.1;

    margin: 0 0 16px;
}


/* LOCATION */

.event-location {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;

    margin: 0 0 15px;

    text-transform: uppercase;
}


/* ATTIRE */

.event-attire {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;

    margin: 0 0 20px;

    text-transform: uppercase;
}


/* DESCRIPTION */

.event-description {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 15px;
    font-weight: 300;

    line-height: 1.8;

    margin: 0 auto;

    max-width: 300px;
    margin-bottom: 20px;
}


/* --------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 700px) {

    .schedule-hero {
        padding: 65px 22px 60px;
    }

    .schedule-hero h1 {
        font-size: 62px;
    }

    .schedule-section {
        padding: 0 22px 85px;
    }

    /* Stack events on phones */

    .schedule-list {
        grid-template-columns: 1fr;
    }

    .schedule-event {
        border-bottom: 1px solid rgba(43, 43, 41, 0.22);
        border-right: none;

        padding: 45px 20px;
    }

    .schedule-event:last-child {
        border-bottom: none;
    }

    .event-number {
        font-size: 48px;
    }

    .event-details h2 {
        font-size: 32px;
    }

    .event-description {
        max-width: 400px;
    }
}

/* --------------------------------
   TRAVEL PAGE
-------------------------------- */

body.travel-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.travel-main {
    background-color: var(--light-cream);
}

/* HERO */

.travel-hero {
    background-color: var(--light-cream);
    padding: 80px 24px 90px;
    text-align: center;
}

.travel-hero-content {
    margin: 0 auto;
    max-width: 720px;
}

.travel-eyebrow {
    color: #2B2B29;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.travel-hero h1 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(58px, 8vw, 88px);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.travel-divider {
    background-color: rgba(43, 43, 41, 0.4);
    height: 1px;
    margin: 30px auto;
    width: 70px;
}

.travel-intro {
    color: #2B2B29;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 560px;
}

/* HOTEL SECTION */

.travel-details {
    background-color: var(--light-cream);
    color: #2B2B29;
    padding: 40px 6% 110px;
}

.travel-details-heading {
    margin: 0 auto 55px;
    max-width: 700px;
    text-align: center;
}

.travel-details-heading .small-heading,
.travel-help-heading .small-heading {
    color: #2B2B29;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.travel-details-heading h2,
.travel-help-heading h2 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
}

.section-intro {
    color: #2B2B29;
    font-size: 14px;
    line-height: 1.8;
    margin: 22px auto 0;
    max-width: 580px;
}

/* HOTEL CARDS */

.hotel-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    margin: 60px auto 0;
    max-width: 1250px;
}

.hotel-card {
    border: 1px solid rgba(43, 43, 41, 0.22);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 32px 28px;
    transition: 0.25s ease;
}

.hotel-card:hover {
    box-shadow: 0 12px 30px rgba(43, 43, 41, 0.08);
    transform: translateY(-4px);
}

.hotel-card h3 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.15;
    margin: 0 0 20px;
}

.hotel-card p {
    color: #2B2B29;
}

.hotel-image {
    display: block;
    height: 240px;
    margin: 20px 0 28px;
    object-fit: cover;
    width: 100%;
}

.hotel-button {
    align-self: flex-start;
    border-bottom: 1px solid #2B2B29;
    color: #2B2B29;
    display: inline-block;
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-top: auto;
    padding-bottom: 5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.hotel-button:hover {
    opacity: 0.5;
}

/* AIRPORT + TRANSPORTATION */

.travel-help-heading {
    border-top: 1px solid rgba(43, 43, 41, 0.18);
    margin: 100px auto 50px;
    max-width: 1100px;
    padding-top: 75px;
    text-align: center;
}

.travel-help-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, 1fr);
    margin: 55px auto 60px;
    max-width: 900px;
}

.travel-help-card {
    border-top: 1px solid rgba(43, 43, 41, 0.3);
    padding: 30px 10px 20px;
}

.travel-help-card h3 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 18px;
}

.travel-help-card p {
    color: #2B2B29;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* MOBILE */

@media (max-width: 950px) {
    .hotel-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .hotel-card {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .travel-hero {
        padding: 65px 22px 70px;
    }

    .travel-details {
        padding: 30px 22px 85px;
    }

    .travel-help-grid {
        grid-template-columns: 1fr;
    }
}
/* --------------------------------
   REGISTRY PAGE
-------------------------------- */

body.registry-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.registry-main {
    background-color: var(--light-cream);
}

/* --------------------------------
   REGISTRY SECTION
-------------------------------- */

.registry-section {
    padding: 60px 24px 65px;
}

.registry-card {
    border: 1px solid rgba(43, 43, 41, 0.2);
    margin: 0 auto;
    max-width: 720px;
    padding: 70px 60px;
    text-align: center;
}

.registry-card h2 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 50px;
}

.registry-card p:not(.registry-eyebrow) {
    color: #2B2B29;


    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-weight: 300;

    line-height: 1.8;
    margin: 0 auto 35px;
    max-width: 480px;

}

.registry-eyebrow {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    margin: 0 0 30px;
}
/* --------------------------------
   REGISTRY BUTTON
-------------------------------- */

.registry-button {
    background-color: transparent;
    border: 1px solid #2B2B29;
    color: #2B2B29;

    display: inline-block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;

    padding: 15px 30px;

    text-decoration: none;
    text-transform: uppercase;

    transition: 0.25s ease;
}

.registry-button:hover {
    background-color: #2B2B29;
    color: var(--light-cream);
}


/* --------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 700px) {

    .registry-hero {
        padding: 65px 22px 55px;
    }

    .registry-hero h1 {
        font-size: 62px;
    }

    .registry-section {
        padding: 15px 22px 85px;
    }

    .registry-card {
        padding: 50px 28px;
    }

    .registry-card h2 {
        font-size: 34px;
    }
}


/* Hotel image → date line */
.hero-image {
    margin-bottom: 5px;
}

/* Hotel Walloon | October 9, 2027 */
.wedding-date {
    margin-top: 0;
    margin-bottom: 28px;
}

/* Walloon Lake, MI */
.wedding-location {
    margin-top: 0;
}


/* home page photos */

.home-photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

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

    margin: -120px auto 0;
    margin-bottom: 100px;
}

.home-photo-row img {
    display: block;
    width: 100%;
    height: auto;
}



.saturday-events {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    margin-top: 30px;
}

.saturday-event {
    padding: 10px 35px;
    text-align: center;
}

.saturday-event + .saturday-event {
    border-left: 1px solid rgba(43, 43, 41, 0.22);
}

.saturday-event h2 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 300;
    margin: 0 0 16px;
    text-align: center;
}

.saturday-event .event-time,
.saturday-event .event-location,
.saturday-event .event-description,
.saturday-event .event-attire {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* --------------------------------
   PHOTOS PAGE
-------------------------------- */

body.photos-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.photos-main {
    background-color: var(--light-cream);
}

.photos-section {
    margin: 0 auto;
    max-width: 1050px;
    padding: 65px 24px 100px;
    text-align: center;
}


/* SMALL PHOTOS LABEL */

.photos-eyebrow {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 30px;
    text-transform: uppercase;
}


/* SLIDESHOW */

.slideshow {
    margin: 0 auto;
    max-width: 850px;
}

#slideshow-image {
    display: block;

    width: 100%;
    height: 560px;

    object-fit: contain;

    margin: 0 auto;
}


/* CONTROLS */

.slideshow-controls {
    align-items: center;
    display: flex;
    justify-content: space-between;

    margin-top: 25px;
}


/* PREVIOUS + NEXT */

.slideshow-controls button {
    background: none;
    border: none;
    color: #2B2B29;
    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;

    padding: 10px 0;

    text-transform: uppercase;
}

.slideshow-controls button:hover {
    opacity: 0.5;
}


/* PHOTO NUMBER */

#photo-number {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
}


/* MOBILE */

@media (max-width: 700px) {

    .photos-section {
        padding: 45px 20px 75px;
    }

    #slideshow-image {
        height: 450px;
    }

}


/* --------------------------------
   Q&A PAGE
-------------------------------- */

body.qa-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.qa-main {
    background-color: var(--light-cream);
}

.qa-section {
    margin: 0 auto;
    max-width: 900px;
    padding: 75px 24px 110px;
}

.qa-eyebrow {
    color: #2B2B29;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;
    margin: 0 0 18px;
    text-align: center;
    text-transform: uppercase;
}

.qa-section h1 {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 60px;
    text-align: center;
}

.qa-list {
    border-top: 1px solid rgba(43, 43, 41, 0.22);
}

/* Each question */

.qa-item {
    border-bottom: 1px solid rgba(43, 43, 41, 0.22);
    padding: 0;
}

.qa-item summary {
    align-items: center;
    color: #2B2B29;
    cursor: pointer;
    display: flex;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 300;
    justify-content: space-between;
    list-style: none;
    padding: 25px 5px;
}

/* Remove default browser arrow */

.qa-item summary::-webkit-details-marker {
    display: none;
}

/* Custom + symbol */

.qa-item summary::after {
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 300;
    margin-left: 25px;
}

/* Turns + into – when open */

.qa-item[open] summary::after {
    content: "−";
}

/* Answer */

.qa-item p {
    color: #2B2B29;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
    padding: 0 45px 28px 5px;
}

/* Hover */

.qa-item summary:hover {
    opacity: 0.6;
}

/* Mobile */

@media (max-width: 700px) {

    .qa-section {
        padding: 55px 22px 85px;
    }

    .qa-section h1 {
        font-size: 48px;
        margin-bottom: 45px;
    }

    .qa-item summary {
        font-size: 19px;
        padding: 22px 2px;
    }

    .qa-item p {
        font-size: 15px;
        padding: 0 30px 25px 2px;
    }
}

/* --------------------------------
   ACTIVITIES PAGE
-------------------------------- */

body.activities-page {
    background-color: var(--light-cream);
    color: #2B2B29;
}

.activities-main {
    background-color: var(--light-cream);
}


/* --------------------------------
   INTRO
-------------------------------- */

.activities-intro {
    margin: 0 auto;
    max-width: 760px;
    padding: 75px 24px 70px;
    text-align: center;
}

.activities-eyebrow {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;

    margin: 0 0 18px;

    text-transform: uppercase;
}

.activities-intro h1 {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 300;

    letter-spacing: 2px;
    line-height: 1;

    margin: 0;

    text-transform: uppercase;
}

.activities-divider {
    background-color: rgba(43, 43, 41, 0.35);

    height: 1px;
    width: 70px;

    margin: 30px auto;
}

.activities-description {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-weight: 300;

    line-height: 1.8;

    margin: 0 auto;

    max-width: 520px;
}


/* --------------------------------
   ACTIVITY GRID
-------------------------------- */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 55px 28px;

    margin: 0 auto;

    max-width: 1200px;

    padding: 10px 40px 120px;
}


/* --------------------------------
   ACTIVITY CARD
-------------------------------- */

.activity-card {
    text-align: center;
}

.activity-image {
    display: block;

    width: 100%;
    height: 300px;

    object-fit: cover;

    margin-bottom: 28px;
}


/* SMALL LOCATION LABEL */

.activity-location {
    color: #2B2B29;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;

    margin: 0 0 12px;

    text-transform: uppercase;
}


/* ACTIVITY NAME */

.activity-card h2 {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 300;

    line-height: 1.1;

    margin: 0 0 15px;
}


/* DESCRIPTION */

.activity-card p:not(.activity-location) {
    color: #2B2B29;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 15px;
    font-weight: 300;

    line-height: 1.7;

    margin: 0 auto 20px;

    max-width: 320px;
}


/* LINK */

.activity-link {
    border-bottom: 1px solid #2B2B29;

    color: #2B2B29;

    display: inline-block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;

    padding-bottom: 5px;

    text-decoration: none;
    text-transform: uppercase;

    transition: opacity 0.25s ease;
}

.activity-link:hover {
    opacity: 0.5;
}


/* --------------------------------
   TABLET
-------------------------------- */

@media (max-width: 950px) {

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);

        max-width: 850px;
    }
}


/* --------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 700px) {

    .activities-intro {
        padding: 55px 22px 55px;
    }

    .activities-intro h1 {
        font-size: 60px;
    }

    .activities-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 0 22px 90px;
    }

    .activity-image {
        height: 350px;
    }

    .activity-card h2 {
        font-size: 30px;
    }
}