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

body {
    font-family: Arial, sans-serif;
    background: #f8f5f2;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.logo-area p {
    color: #777;
    font-size: 14px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.hero-section {
    padding: 100px 0;
    background: linear-gradient(to bottom right, #fbe4e6, #f5f0eb);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #fff;
    color: #b14b5d;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: bold;
}

.hero-content h2 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    padding: 16px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-dark {
    background: #222;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
}

/* =========================================================
   HOMEPAGE CHECKLIST CARD
   ========================================================= */

.checklist-card {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.card-header span {
    background: #fbe4e6;
    color: #b14b5d;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 15px;
}

.check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #d96c7d;
    border-radius: 50%;
}

/* =========================================================
   HOMEPAGE SECTIONS
   ========================================================= */

.features-section,
.guides-section,
.cta-section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

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

.feature-grid,
.guides-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card,
.guide-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #eee;
}

.feature-card {
    padding: 35px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fbe4e6;
    border-radius: 18px;
    margin-bottom: 25px;
}

.feature-card h3,
.guide-content h3 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 20px;
    color: #666;
}

.feature-card a {
    color: #b14b5d;
    text-decoration: none;
    font-weight: bold;
}

.guide-image {
    height: 220px;
    background: linear-gradient(to bottom right, #f2b9c2, #ddd);
}

.guide-content {
    padding: 25px;
}

.guide-content span {
    color: #b14b5d;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* =========================================================
   CTA BOX
   ========================================================= */

.cta-box {
    background: #222;
    color: #fff;
    padding: 70px;
    border-radius: 35px;
    text-align: center;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    color: #ccc;
    max-width: 700px;
    margin: auto auto 35px;
}

.cta-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-form input {
    width: 400px;
    padding: 18px;
    border-radius: 16px;
    border: none;
}

.cta-form button {
    padding: 18px 30px;
    border: none;
    border-radius: 16px;
    background: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding-top: 70px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 20px;
}

.site-footer p,
.site-footer li {
    color: #666;
    margin-bottom: 12px;
}

.site-footer ul {
    list-style: none;
}

.site-footer a {
    color: #666;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #eee;
    margin-top: 50px;
    color: #888;
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom right, #fbe4e6, #f5f0eb);
}

.page-tag {
    display: inline-block;
    background: #fff;
    color: #b14b5d;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: bold;
}

.page-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.page-intro {
    font-size: 20px;
    color: #666;
}

.narrow-container {
    max-width: 850px;
}

/* =========================================================
   INNER PAGE CONTENT
   ========================================================= */

.content-section {
    padding: 80px 0;
}

.alt-section {
    background: #fff;
}

.content-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.content-section p {
    margin-bottom: 25px;
    color: #555;
    font-size: 18px;
}

.content-list {
    margin: 30px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 15px;
    color: #555;
    font-size: 18px;
}

.guide-content a,
.feature-card a {
    color: #b14b5d;
    text-decoration: none;
}

.guide-content a:hover,
.feature-card a:hover,
.main-nav a:hover,
.site-footer a:hover {
    text-decoration: underline;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-info p {
    color: #555;
    margin-bottom: 25px;
    font-size: 18px;
}

.contact-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
}

/* =========================================================
   CHECKLIST PAGE
   ========================================================= */

.checklist-list {
    list-style: none;
    margin-top: 30px;
}

.checklist-list li {
    background: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    position: relative;
    padding-left: 55px;
    font-size: 18px;
    color: #555;
}

.checklist-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 18px;
    color: #b14b5d;
    font-weight: bold;
}

.cta-inline {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #eee;
    text-align: center;
}

.cta-inline h2 {
    margin-bottom: 15px;
}

.cta-inline p {
    margin-bottom: 25px;
}

.faq-item {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 25px;
}

.faq-item h3 {
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 0;
}

/* =========================================================
   BUDGET CALCULATOR PAGE
   ========================================================= */

.budget-setup-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
}

.budget-setup-card h2 {
    margin-bottom: 15px;
}

.budget-setup-card p {
    color: #666;
    margin-bottom: 30px;
}

.budget-inputs {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.budget-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.budget-input-group label {
    font-weight: bold;
    font-size: 15px;
}

.budget-input-group input {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    width: 200px;
}

.budget-summary-bar {
    display: flex;
    background: #222;
    border-radius: 20px;
    padding: 25px 35px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-label {
    color: #aaa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.budget-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.budget-table th {
    background: #f8f5f2;
    padding: 14px 18px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #eee;
}

.budget-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.budget-table tr:last-child td {
    border-bottom: none;
    font-weight: bold;
    background: #fbe4e6;
}

.avg-col {
    color: #888;
    font-size: 14px;
}

.suggested-col {
    color: #b14b5d;
    font-weight: bold;
}

.budget-input-cell {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    width: 130px;
}

.affiliate-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fbe4e6;
    border-radius: 20px;
    padding: 30px 35px;
    margin: 40px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.affiliate-cta strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.affiliate-cta p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

.cost-breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.cost-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 28px;
}

.cost-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.cost-category {
    font-weight: bold;
    font-size: 16px;
    color: #222;
}

.cost-range {
    background: #fbe4e6;
    color: #b14b5d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.cost-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cost-card-link {
    color: #b14b5d;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.cost-card-link:hover {
    text-decoration: underline;
}

/* =========================================================
   PRINTABLE TEMPLATES PAGE
   ========================================================= */

.template-how-to {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.how-to-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 22px;
}

.how-to-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #b14b5d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.how-to-step strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.how-to-step p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.template-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 22px;
    overflow: hidden;
}

.template-preview {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.02em;
}

.template-preview--oos      { background: linear-gradient(135deg, #d96c7d, #b14b5d); }
.template-preview--seating  { background: linear-gradient(135deg, #b14b5d, #8a3a4a); }
.template-preview--table    { background: linear-gradient(135deg, #c97d8a, #b14b5d); }
.template-preview--namecard { background: linear-gradient(135deg, #e8a0aa, #d96c7d); }
.template-preview--menu     { background: linear-gradient(135deg, #b14b5d, #c97d8a); }
.template-preview--evening  { background: linear-gradient(135deg, #8a3a4a, #b14b5d); }
.template-preview--timeline { background: linear-gradient(135deg, #d96c7d, #e8a0aa); }
.template-preview--signs    { background: linear-gradient(135deg, #b14b5d, #d96c7d); }

.template-card-body {
    padding: 25px;
}

.template-tag {
    display: inline-block;
    background: #fbe4e6;
    color: #b14b5d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.template-card-body h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.template-card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.template-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .template-how-to,
    .templates-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   SMALL WEDDING VENUES PAGE
   ========================================================= */

.venue-types-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.venue-type-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
}

.venue-type-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.venue-type-header h3 {
    font-size: 20px;
    color: #222;
    margin: 0;
}

@media (max-width: 768px) {
    .venue-type-header {
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================================================
   WEDDING TIMELINE PAGE
   ========================================================= */

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 25px;
    border-left: 3px solid #fbe4e6;
    padding-left: 30px;
    margin-left: 20px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item--highlight {
    background: none;
}

.timeline-item--highlight .timeline-time {
    color: #b14b5d;
    font-weight: bold;
}

.timeline-item--highlight .timeline-content strong {
    color: #b14b5d;
}

.timeline-time {
    font-size: 15px;
    font-weight: bold;
    color: #555;
    min-width: 70px;
    padding-top: 2px;
}

.timeline-content strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
    color: #222;
}

.timeline-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-list {
        margin-left: 0;
        padding-left: 15px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-time {
        min-width: unset;
    }
}
/* =========================================================
   AVERAGE WEDDING COSTS PAGE
   ========================================================= */

.cost-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.cost-summary-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.cost-summary-card--highlight {
    background: #fbe4e6;
    border-color: #f2b9c2;
}

.cost-summary-label {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b14b5d;
}

.cost-summary-guests {
    font-size: 14px;
    color: #888;
}

.cost-summary-amount {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

@media (max-width: 768px) {
    .cost-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================================================
   REGISTRY OFFICE CHECKLIST PAGE
   ========================================================= */

.checklist-section-heading {
    font-size: 22px;
    color: #b14b5d;
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fbe4e6;
}
/* =========================================================
   FREE PACK PAGE
   ========================================================= */

.pack-intro {
    margin-bottom: 40px;
}

.pack-intro p {
    font-size: 18px;
    color: #555;
}

.pack-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 25px;
}

.pack-item-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #b14b5d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.pack-item-content {
    flex: 1;
}

.pack-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pack-item-header h2 {
    font-size: 22px;
    margin: 0;
}

.pack-item-format {
    background: #fbe4e6;
    color: #b14b5d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.pack-item-content p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}

.pack-feature-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.pack-feature-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.pack-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b14b5d;
    font-weight: bold;
}

.pack-btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .pack-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    .pack-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pack-item-header h2 {
        font-size: 20px;
    }
}
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .hero-grid,
    .feature-grid,
    .guides-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .header-inner,
    .hero-grid,
    .feature-grid,
    .guides-grid,
    .footer-grid,
    .cta-form {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .main-nav {
        display: none;
    }

    .hero-content h2,
    .section-heading h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-form input {
        width: 100%;
    }

    .page-hero h1,
    .content-section h2 {
        font-size: 36px;
    }

    .page-intro,
    .content-section p,
    .content-list li {
        font-size: 17px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .cost-breakdown-grid {
        grid-template-columns: 1fr;
    }

    .budget-inputs {
        flex-direction: column;
        align-items: stretch;
    }

    .budget-input-group input {
        width: 100%;
    }

    .affiliate-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .budget-summary-bar {
        padding: 20px;
    }
}

