/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.jcf-topbar {
    background: #5863aa;
    color: #f5e7d1;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-align: center;
    padding: 6px 10px;   /* smaller padding */
    line-height: 1.2;
}

.jcf-topbar span {
    color: #f05f54;
    font-weight: 600;
}

.jcf-topbar a {
    color: #f5e7d1;
    font-weight: 600;
    text-decoration: underline;
}




/* ================= HEADER ================= */

.jcf-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 231, 209, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.jcf-header.scrolled {
    background: #fdf6ec;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.jcf-header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jcf-logo img {
    height: 60px;
    width: auto;
}

/* ================= DESKTOP NAV ================= */

.jcf-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.jcf-nav ul li a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #5863aa;
    position: relative;
    transition: 0.3s ease;
}

.jcf-nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f05f54;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.jcf-nav ul li a:hover {
    color: #f05f54;
}

.jcf-nav ul li a:hover::after {
    width: 100%;
}

/* ================= BUTTON ================= */

.jcf-btn-primary {
    background: #f05f54;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.jcf-btn-primary:hover {
    background: #f48b71;
}

/* ================= HEADER RIGHT ================= */

.jcf-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ================= HAMBURGER ================= */

.jcf-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.jcf-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #5863aa;
    transition: 0.3s ease;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .jcf-header-container {
        padding: 16px 20px;
    }

    /* Hide desktop nav */
    .jcf-nav ul {
        display: none;
    }

   .jcf-header .jcf-btn-primary {
    display: none;
}

    /* Show hamburger */
    .jcf-menu-toggle {
        display: flex;
    }

    /* Dropdown menu */
    .jcf-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f5e7d1;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .jcf-nav.active {
        max-height: 400px;
    }

    .jcf-nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .jcf-nav ul li a {
        font-size: 16px;
    }

    /* Animate hamburger to X */
    .jcf-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(6px);
    }

    .jcf-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .jcf-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-6px);
    }

}


/* ================= HERO SECTION ================= */

.jcf-hero {
    background: linear-gradient(
        135deg,
        #f5e7d1 0%,
        #f5e7d1 60%,
        #f48b71 120%
    );
    padding: 120px 0 100px 0;
}

.jcf-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.jcf-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: #5863aa;
    margin-bottom: 25px;
}

.jcf-hero-content h1 span {
    color: #f05f54;
}

.jcf-hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 480px;
    margin-bottom: 35px;
}
.jcf-hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.jcf-btn-outline {
    padding: 12px 26px;
    border: 1px solid #5863aa;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #5863aa;
    transition: 0.3s ease;
}

.jcf-btn-outline:hover {
    background: #5863aa;
    color: #fff;
}
.jcf-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jcf-hero-visual img {
    width: 100%;
    max-width: 600px;   /* keeps balance with text */
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;

    border-radius: 18px;

    /* box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(88, 99, 170, 0.12); */

    transition: transform 0.4s ease;
}
.jcf-hero-visual img:hover {
    transform: translateY(-6px);
}


@media (max-width: 992px) {

    .jcf-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .jcf-hero-content p {
        margin: 0 auto 30px auto;
    }

    .jcf-hero-buttons {
        justify-content: center;
    }

    .jcf-hero-visual {
        height: 300px;
    }

    .jcf-hero-content h1 {
        font-size: 38px;
    }
     .jcf-hero-visual img {
        max-width: 100%;
        margin-top: 10px;
    }
}

/* ================= FESTIVAL ESSENCE PREMIUM ================= */

.jcf-essence-premium {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5e7d1 100%
    );
    padding: 160px 0;
}

.jcf-essence-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */

.jcf-essence-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.2;
    color: #5863aa;
    margin-bottom: 30px;
}

.jcf-essence-left h2 span {
    color: #f05f54;
}

.jcf-essence-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 480px;
}

/* RIGHT SIDE ITEMS */

.jcf-essence-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.jcf-essence-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.jcf-essence-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* ICON */

.jcf-essence-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: rgba(88,99,170,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jcf-essence-icon svg {
    width: 28px;
    height: 28px;
}

/* TEXT */

.jcf-essence-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #5863aa;
    margin-bottom: 10px;
}

.jcf-essence-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .jcf-essence-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .jcf-essence-left h2 {
        font-size: 36px;
    }

}/* ================= WHAT AWAITS SECTION ================= */

.jcf-awaits {
    padding: 150px 0;
    background: #5863aa;
    position: relative;
    overflow: hidden;
}

/* Subtle Paper Texture Overlay */
.jcf-awaits::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f5e7d1 0%, #fdf6ec 100%);
    opacity: 0.06;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Container */

.jcf-awaits-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */

.jcf-awaits-content {
    flex: 1;
    max-width: 520px;
}

.jcf-await-accent {
    width: 70px;
    height: 3px;
    background: #f05f54;
    margin-bottom: 30px;
}

.jcf-awaits-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    color: #fdf6ec;
    margin-bottom: 30px;
}

.jcf-awaits-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #fdf6ec;
    margin-bottom: 40px;
}

/* RIGHT IMAGE */

.jcf-awaits-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.jcf-awaits-image img {
    width: 100%;
    max-width: 480px;
    height: 600px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    transition: 0.5s ease;
}

/* Hover effect */

.jcf-awaits-image img:hover {
    transform: translateY(-10px);
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {

    .jcf-awaits-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .jcf-await-accent {
        margin: 0 auto 30px;
    }

    .jcf-awaits-content {
        max-width: 100%;
    }

    .jcf-awaits-content .jcf-btn-primary {
        display: inline-block;   /* force visible */
    }

    .jcf-awaits-image img {
        height: auto;
        max-width: 420px;
    }
}

/* ================= JOURNEY GLASS SECTION ================= */
.jcf-journey {
    position: relative;
    padding: 160px 0;
    background: #f5e7d1;
    overflow: hidden;
}

.jcf-journey::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("");
    background-size: cover;
    background-repeat: repeat;
    opacity: 0.08;   /* keep it subtle */
    pointer-events: none;
    z-index: 0;
}


.jcf-journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

/* HEADING */

.jcf-journey-heading {
    text-align: center;
    margin-bottom: 90px;
}

.jcf-journey-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #5863aa;
    margin-bottom: 15px;
}

.jcf-journey-heading p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #555;
}

/* GRID */

.jcf-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* GLASS CARD */

.jcf-journey-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 50px 35px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.jcf-journey-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* ICON */

.jcf-journey-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jcf-journey-icon svg {
    width: 64px;
    height: 64px;
    transition: 0.4s ease;
}

.jcf-journey-card:hover svg {
    transform: scale(1.1);
}

/* TEXT */

.jcf-journey-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #5863aa;
    margin-bottom: 15px;
}

.jcf-journey-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .jcf-journey-container {
        padding: 0 30px;
    }

    .jcf-journey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .jcf-journey-heading h2 {
        font-size: 42px;
    }

}

/* ============================= */
/* JCF MAKERS SECTION */
/* ============================= */

.jcf-makers-section {
    padding: 120px 20px;
    background: #fffaf2;
    background-image: url("images/paper-texture.png");
    background-size: cover;
    background-repeat: repeat;
}

.jcf-makers-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.jcf-makers-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #5863aa;
    margin-bottom: 20px;
}

.jcf-section-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f05f54;
    margin-bottom: 15px;
    display: inline-block;
}

.jcf-makers-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
    max-width: 500px;
}

/* GRID */

.jcf-makers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 25px;
}

.jcf-maker-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.jcf-maker-card.large {
    grid-row: span 2;
}

.jcf-maker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jcf-maker-card:hover img {
    transform: scale(1.05);
}

/* Overlay */

.jcf-maker-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.jcf-maker-overlay h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 18px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .jcf-makers-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .jcf-makers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .jcf-maker-card.large {
        grid-row: span 1;
        height: 350px;
    }

    .jcf-maker-card {
        height: 250px;
    }

    .jcf-makers-content h2 {
        font-size: 40px;
    }
}

/* ================================= */
/* EVENT SCHEDULE SECTION */
/* ================================= */

.jcf-schedule-section {
    padding: 140px 20px;
    background: url('images/paper-texture.jpg') center/cover no-repeat;
    position: relative;
}

.jcf-schedule-container {
    max-width: 1000px;
    margin: auto;
}

/* Heading */

.jcf-schedule-heading {
    text-align: center;
    margin-bottom: 100px;
}

.jcf-schedule-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #5863aa;
    margin-bottom: 20px;
}

.jcf-schedule-heading p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
}

/* Timeline Line */

.jcf-timeline {
    position: relative;
}

.jcf-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f05f54;
    opacity: 0.4;
}

/* Timeline Item */

.jcf-timeline-item {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

/* Icon Circle */

.jcf-timeline-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 2px solid #f05f54;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.jcf-timeline-icon svg {
    width: 22px;
    height: 22px;
    stroke: #5863aa;
    fill: none;
    stroke-width: 2;
}

/* Content Card */

.jcf-timeline-content {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    flex: 1;
    transition: 0.3s ease;
}

.jcf-timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.jcf-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #f05f54;
    font-weight: 600;
    letter-spacing: 1px;
}

.jcf-timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #5863aa;
    margin: 10px 0 15px;
}

.jcf-timeline-content p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width: 768px) {

    .jcf-schedule-heading h2 {
        font-size: 34px;
    }

    .jcf-timeline::before {
        left: 20px;
    }

    .jcf-timeline-item {
        gap: 20px;
        margin-bottom: 60px;
    }

    .jcf-timeline-icon {
        min-width: 45px;
        height: 45px;
    }

    .jcf-timeline-content {
        padding: 25px;
    }

}

/* ================================= */
/* RESERVE YOUR SPOT SECTION */
/* ================================= */

.jcf-reserve-section {
    padding: 120px 20px;
    background: #f5e7d1;
    background-image: url("Images/Paper\ Background.webp");
    background-size: cover;
    background-repeat: repeat;
    position: relative;
}

.jcf-reserve-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.jcf-reserve-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #5863aa;
    margin-bottom: 20px;
}

.jcf-reserve-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #444;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

/* FORM CARD */

.jcf-reserve-form-wrapper {
    max-width: 650px;
    margin: auto;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.6);
}

/* FORM */

.jcf-reserve-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jcf-form-group input,
.jcf-form-group select,
.jcf-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: rgba(255,255,255,0.7);
    transition: 0.3s ease;
}

.jcf-form-group input:focus,
.jcf-form-group select:focus,
.jcf-form-group textarea:focus {
    outline: none;
    border-color: #f05f54;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(240,95,84,0.15);
}

/* BUTTON */

.jcf-form-btn {
    margin-top: 10px;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 30px;
}

/* HAND-DRAWN BORDER DETAIL */

.jcf-reserve-section::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #f05f54;
    border-radius: 50px;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width: 768px) {

    .jcf-reserve-content h2 {
        font-size: 38px;
    }

    .jcf-reserve-form-wrapper {
        padding: 40px 25px;
    }
}

/* ================================= */
/* SPONSORS SECTION */
/* ================================= */

.jcf-sponsors-section {
    padding: 120px 20px;
    background: #fdf8f2; /* Soft luxury ivory */
    position: relative;
}

.jcf-sponsors-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Heading */

.jcf-sponsors-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #5863aa;
    margin-bottom: 20px;
}

.jcf-sponsors-heading p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 70px auto;
    line-height: 1.8;
}

/* Grid */

.jcf-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

/* Card */

.jcf-sponsor-card {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 18px;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.jcf-sponsor-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.4s ease;
}

/* Hover effect */

.jcf-sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.jcf-sponsor-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Divider Line (Luxury Accent) */

.jcf-sponsors-section::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f05f54;
    border-radius: 50px;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width: 1024px) {
    .jcf-sponsors-grid {
        grid-template-columns: repeat(1, 2fr);
    }
}

@media (max-width: 600px) {

    .jcf-sponsors-heading h2 {
        font-size: 36px;
    }

    .jcf-sponsors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .jcf-sponsor-card {
        padding: 30px 20px;
    }
}

/* ================================= */
/* FINAL EMOTIONAL SECTION */
/* ================================= */

.jcf-final-section {
    padding: 160px 20px;
    background: url("Images/Paper\ Background.webp") center/cover no-repeat;
    text-align: center;
}

.jcf-final-container {
    max-width: 800px;
    margin: auto;
}

.jcf-final-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #5863aa;
    margin-bottom: 30px;
}

.jcf-final-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

/* Divider Accent */

.jcf-final-section::before {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #f05f54;
    margin: 0 auto 50px;
    border-radius: 50px;
}

/* ===================================== */
/* CRAFTED FOOTER */
/* ===================================== */

.jcf-footer-crafted {
    position: relative;
    background: #4f5aa6;
    color: #fff;
    padding: 140px 20px 50px;
    overflow: hidden;
}

/* Paper texture overlay */
.jcf-footer-crafted::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("");
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Decorative top border */
.jcf-footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #f05f54 0%, #f5e7d1 50%, #f05f54 100%);
}

/* Layout */

.jcf-footer-inner {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    z-index: 2;
}

/* Brand */

.jcf-footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.jcf-footer-brand p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    max-width: 420px;
}

/* Headings */

.jcf-footer-links h4,
.jcf-footer-connect h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #f5e7d1;
}

/* Links */

.jcf-footer-links ul,
.jcf-footer-connect ul {
    list-style: none;
    padding: 0;
}

.jcf-footer-links li,
.jcf-footer-connect li {
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.jcf-footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

.jcf-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #f05f54;
    transition: 0.3s ease;
}

.jcf-footer-links a:hover {
    color: #fff;
}

.jcf-footer-links a:hover::after {
    width: 100%;
}

/* Divider */

.jcf-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 70px auto 30px;
    max-width: 1200px;
}

/* Bottom */

.jcf-footer-bottom {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {

    .jcf-footer-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .jcf-footer-brand p {
        margin: auto;
    }

    .jcf-footer-divider {
        margin: 50px auto 30px;
    }
}

/* ================================= */
/* DYNAMIC INSTAGRAM FEED */
/* ================================= */

.jcf-instagram-dynamic {
    padding: 120px 0 100px;
    background: #f5e7d1;
    text-align: center;
    position: relative;
}

.jcf-instagram-dynamic::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("Images/paper-texture.jpg");
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.jcf-instagram-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.jcf-instagram-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #5863aa;
}

.jcf-instagram-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #f05f54;
    text-transform: uppercase;
}

.jcf-instagram-feed {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.lightwidget-widget {
    width: 100%;
    border: 0;
}
