/* Typography: Headings use Playfair Display, body uses Poppins */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Google Fonts and typography settings */

/* Typography: Headings use Playfair Display, body uses Poppins */
:root {
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

html,
body {
    font-family: var(--body-font);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main headings */
h1,
h2,
h3 {
    font-family: var(--heading-font);
    font-weight: 700;
    /* Bold for main titles */
    margin: 0 0 0.5rem 0;
}

/* Subheading style to use Playfair Regular */
.subheading,
h4.subheading,
h5.subheading {
    font-family: var(--heading-font);
    font-weight: 400;
    /* Regular */
}

/* Paragraph / body text */
p,
.paragraph,
.lead,
li,
span {
    font-family: var(--body-font);
    font-weight: 400;
    /* Regular */
}

.custom-nav {
    position: fixed;
    background: #2f343b;
    padding: 18px 0;
    border-radius: 40px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 9999;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Responsive Navigation Fix */
@media (max-width: 992px) {

    /* Hide desktop menu + phone */
    .desktop-menu,
    .desktop-phone {
        display: none !important;
    }

    /* Show hamburger icon */
    .mobile-menu-btn {
        display: block !important;
    }

    .custom-nav {
        width: 95%;
        padding: 15px 0;
    }
}

.mobile-menu-btn {
    background: #cbab55;
    border: none;
    color: white;
    font-size: 22px;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    display: none;
    /* hidden on desktop */
}

.mobile-menu-btn i {
    font-weight: 900;
}


.nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #cbab55;
}

.nav-links .arrow {
    font-size: 10px;
    margin-left: 5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    background: #cbab55;
    color: white;
    padding: 10px 26px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.phone-btn:hover {
    background: #b89840;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: #cbab55;
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu-btn:hover {
    background: #b89840;
}

/* Mobile Offcanvas Styles */
.offcanvas {
    background: #2f343b !important;
    z-index: 10001;
}

.offcanvas-backdrop {
    z-index: 10000;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title img {
    filter: brightness(0) invert(1);
}

.btn-close {
    filter: brightness(0) invert(1);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-nav-links li {
    margin-bottom: 5px;
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.mobile-nav-links li a:hover {
    background: rgba(203, 171, 85, 0.2);
    color: #cbab55;
}

.mobile-nav-links li a i {
    font-size: 18px;
    width: 25px;
    color: #cbab55;
}

.mobile-contact {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #cbab55;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.mobile-phone-btn:hover {
    background: #b89840;
    color: white;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(203, 171, 85, 0.2);
    color: #cbab55;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.mobile-social a:hover {
    background: #cbab55;
    color: white;
}

.wrapper.home {
    background: transparent !important;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url('/assets/images/div.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 9rem !important;
    color: #fff;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.15;
}

.hero-content h1 span {
    color: #d4ab44;
    font-family:'Georgia', serif;
}

.hero-content p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

.scroll-indicator {
    margin-top: 45px;
    font-size: 14px;
    opacity: 0.9;
}

.scroll-indicator .arrow {
    display: block;
    font-size: 20px;
    margin-top: 5px;
}

.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(212, 175, 55, 0.16) 100%);
    padding: 80px 0;
}

.about-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-box {
    position: relative;
    flex: 1;
}

.about-image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.badge-left,
.badge-right {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 28px;
    font-weight: 700;
    color: #c6a22e;
    text-align: center;
}

.badge-left span,
.badge-right span {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-top: 5px;
}

.badge-left {
    bottom: 25px;
    left: -25px;
}

.badge-right {
    top: -25px;
    right: -10px;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #b8921b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #d6b042;
}

.about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin: 40px 0;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features .feature-item .feature-text {
    display: flex;
    flex-direction: column;
}

.about-features .feature-item .icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.about-features .feature-item h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: #222;
}

.about-features .feature-item span {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.explore-btn {
    display: inline-block;
    background: #d9b145;
    padding: 12px 28px;
    border-radius: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;

    .about-features .feature-item .feature-text span {
        margin-top: 6px;
        display: block;
    }

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease,
    box-shadow 0.18s ease;
}

.explore-btn:hover {
    transform: translateY(-3px);
}

/* Container for CTA buttons */
.cta-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
}

/* Outline CTA that matches the image style */
.explore-outline {
    display: inline-block;
    background: transparent;
    color: #d9b145;
    border: 2px solid rgba(217, 177, 69, 0.95);
    padding: 12px 28px;
    border-radius: 28px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.explore-outline:hover {
    background: rgba(217, 177, 69, 0.06);
    color: #b58f33;
}

.occasions-section {
    background: #fffdf7;
}

.occasions-heading {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    color: #c9a040;
}

.occasions-subtitle {
    font-size: 16px;
    color: #7a7a7a;
    margin-bottom: 20px;
}

.occasion-buttons .btn {
    background: #fff;
    border: 1px solid #c9a040;
    padding: 8px 16px;
    border-radius: 50px;
    margin: 0 5px;
    color: #c9a040;
    font-weight: 500;
}

.subevent-buttons .btn{
    padding: 4px 16px !important; 
}

.element-buttons .btn{
    padding: 0px 16px !important; 
}

.occasion-buttons .btn.active,
.occasion-buttons .btn:hover {
    background: #c9a040;
    color: #fff;
}

.occasions-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
}

.occasions-grid img:hover {
    transform: scale(1.03);
}

.view-btn {
    background: linear-gradient(90deg, rgba(212, 175, 55, 1) 0%, rgba(184, 134, 11, 1) 100%);
    color: white !important;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.view-btn:hover {
    background: #a88334 !important;
    color: white !important;
}

.signature-heading {
    font-size: 34px;
    font-weight: 700;
    color: #c9a040;
}

.signature-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.theme-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
}

.theme-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.theme-overlay {
    position: absolute;
    bottom: 18px;
    color: #fff;
    left: 30px;
    padding-left: 10px;
}

.theme-overlay span {
    background: rgba(255, 255, 255, 0.22);
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 50px;
    margin-top: 5px;
    display: inline-block;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.theme-overlay h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
}

.gallery-title {
    font-size: 34px;
    font-weight: 700;
    color: #c9a040;
}

.gallery-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.gallery-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.gallery-filters .btn {
    background: #ffffff;
    border: 1px solid #c9a040;
    color: #c9a040;
    padding: 8px 22px;
    border-radius: 50px;
    margin: 0 6px;
    font-weight: 500;
    transition: 0.3s ease;
}

.gallery-filters .btn.active {
    background: #c9a040;
    color: #ffffff;
}

.gallery-filters .btn:hover {
    background: #e0c16a;
    color: #ffffff;
    border-color: #e0c16a;
}

.gallery-filters .btn:focus {
    box-shadow: none;
}

.ucom-footer {
    background: #0f1621;
    color: #d0d4db;
    font-size: 15px;
}

.footer-brand {
    color: #c9a040;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    color: #b8c0cc;
    line-height: 1.6;
}

.footer-social a {
    color: #d0d4db;
    background: #1a2230;
    padding: 8px 10px;
    margin-right: 8px;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #c9a040;
    color: #fff;
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

ol,
ul {
    padding-left: 0rem !important;
}

.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a {
    color: #d0d4db;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c9a040;
}

.footer-contact li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #c9a040;
    font-size: 16px;
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 25px 0;
}

.footer-bottom {
    color: #8f97a5;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.testimonial-section {
    position: relative;
}

.testimonial-box {
    background: rgba(198, 124, 0, 0.6);
    border-radius: 15px;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #ccc url('profile-placeholder.png') center/cover no-repeat;
    margin: auto;
}

.testimonial-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE STYLES - MOBILE OPTIMIZATION
   ============================================ */

/* Tablets and below (768px) */
@media (max-width: 768px) {

    /* Navigation */
    .custom-nav {
        width: 95%;
        padding: 12px 0;
    }

    .desktop-menu {
        display: none;
    }

    .desktop-phone {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero Section */
    .hero-section {
        height: 70vh;
        padding: 0 15px;
    }

    .hero-content {
        margin-top: 6rem !important;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
        margin-top: 15px;
    }

    .scroll-indicator {
        margin-top: 30px;
        font-size: 13px;
    }

    /* CTA buttons */
    .cta-buttons {
        justify-content: center;
    }

    /* About Section */
    .about-section {
        padding: 30px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 40px;
        width: 95%;
    }

    .about-image-box,
    .about-content {
        flex: 1;
        width: 100%;
    }

    .about-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .about-content p {
        font-size: 15px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 10px 0;
    }

    .explore-btn {
        display: block;
        text-align: center;
        /* margin: 0 auto; */
    }

    .badge-left,
    .badge-right {
        padding: 15px 20px;
        font-size: 22px;
    }

    .badge-left {
        left: 10px;
        bottom: 10px;
    }

    .badge-right {
        right: 10px;
        top: 10px;
    }

    /* Occasions Section */
    .occasions-heading {
        font-size: 28px;
    }

    .occasions-subtitle {
        font-size: 15px;
    }

    .occasion-buttons .btn {
        font-size: 13px;
        padding: 7px 14px;
        margin: 3px;
    }

    /* Signature Themes Section */
    .signature-heading {
        font-size: 28px;
    }

    .signature-subtitle {
        font-size: 15px;
    }

    .theme-img {
        height: 220px;
    }

    /* Gallery Section */
    .gallery-title {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 15px;
    }

    .gallery-filters .btn {
        font-size: 13px;
        padding: 7px 18px;
        margin: 3px;
    }

    .gallery-img {
        height: 220px;
    }

    /* Testimonial Section */
    .testimonial-box {
        padding: 20px !important;
        max-width: 90%;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-brand {
        font-size: 20px;
    }

    .footer-heading {
        font-size: 16px;
    }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {

    /* Navigation */
    .custom-nav {
        width: 98%;
        padding: 10px 0;
        border-radius: 30px;
    }

    .nav-inner {
        padding: 0 15px;
    }

    .nav-logo img {
        height: 30px;
    }

    .mobile-menu-btn {
        font-size: 18px;
        padding: 8px 12px;
    }

    /* Hero Section */
    .hero-section {
        height: 60vh;
        padding: 0 10px;
    }

    .hero-content {
        margin-top: 4rem !important;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-content h1 br {
        display: none;
    }

    .hero-content p {
        font-size: 14px;
        margin-top: 12px;
        line-height: 1.5;
    }

    .scroll-indicator {
        margin-top: 25px;
        font-size: 12px;
    }

    .scroll-indicator .arrow {
        font-size: 16px;
    }

    /* About Section */
    .about-section {
        padding: 25px 0;
    }

    .about-wrapper {
        gap: 30px;
        width: 90%;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .about-features {
        margin: 10px 0;
        gap: 18px;
    }

    /* Ensure features display as single column and center content on small screens */
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .about-features .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .about-features .feature-item .icon {
        width: 58px;
        height: 58px;
        display: block;
        margin: 0 auto;
        border-radius: 50%;
        object-fit: cover;
    }

    .about-features .feature-item .feature-text h4 {
        font-size: 18px;
    }

    .about-features .feature-item .feature-text span {
        font-size: 14px;
    }

    /* CTA buttons: stack vertically on very small screens */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 18px;
    }

    .cta-buttons .explore-btn,
    .cta-buttons .explore-outline {
        width: calc(100% - 40px);
        max-width: 420px;
        text-align: center;
    }


    /* Prevent CTA buttons from wrapping on wider screens */
    .cta-buttons {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        align-items: center;
    }

    .about-features .feature-item {
        gap: 12px;
    }

    .about-features .feature-item .icon {
        width: 40px;
        height: 40px;
    }

    .about-features .feature-item h4 {
        font-size: 16px;
    }

    .about-features .feature-item span {
        font-size: 13px;
    }

    .explore-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .badge-left,
    .badge-right {
        padding: 12px 16px;
        font-size: 18px;
    }

    .badge-left span,
    .badge-right span {
        font-size: 12px;
    }

    /* Occasions Section */
    .occasions-heading {
        font-size: 24px;
    }

    .occasions-subtitle {
        font-size: 14px;
    }

    .occasion-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .occasion-buttons .btn {
        font-size: 12px;
        padding: 6px 12px;
        margin: 3px;
    }

    /* Signature Themes */
    .signature-heading {
        font-size: 24px;
    }

    .signature-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .theme-img {
        height: 200px;
    }

    .theme-overlay h4 {
        font-size: 16px;
    }

    .theme-overlay span {
        font-size: 12px;
        padding: 4px 12px;
    }

    /* Gallery Section */
    .gallery-title {
        font-size: 24px;
    }

    .gallery-subtitle {
        font-size: 14px;
    }

    .gallery-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-filters .btn {
        font-size: 12px;
        padding: 6px 14px;
        margin: 3px;
    }

    .gallery-img {
        height: 200px;
    }

    /* Testimonial Section */
    .testimonial-box {
        padding: 15px !important;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-box p {
        font-size: 14px;
    }

    .profile-pic {
        width: 60px;
        height: 60px;
    }

    /* Footer */
    .footer-brand {
        font-size: 18px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-text,
    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }
}

/* Extra small devices (400px and below) */
@media (max-width: 400px) {

    /* Hero Section */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 13px;
    }

    /* About Section */
    .about-content h2 {
        font-size: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-features .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .badge-left,
    .badge-right {
        position: static;
        margin: 10px auto;
        display: block;
        width: fit-content;
    }

    /* Occasions */
    .occasions-heading {
        font-size: 22px;
    }

    /* Signature Themes */
    .signature-heading {
        font-size: 22px;
    }

    /* Gallery */
    .gallery-title {
        font-size: 22px;
    }

    .gallery-img {
        height: 180px;
    }

    /* View Buttons */
    .view-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
}

.fancy-title {
    position: relative;
    padding: 10px 0;
}

/* top line */
.fancy-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: #c9a040;
}

/* bottom line */
.fancy-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: #c9a040;
}

/* MOBILE SLIDER */
@media (max-width: 576px) {

    .gallery-slider {
        display: flex !important;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-slider::-webkit-scrollbar {
        display: none;
    }

    .gallery-slider>div {
        min-width: 100% !important;
        scroll-snap-align: start;
    }

    .gallery-slider img {
        width: 100%;
        display: block;
        border-radius: 10px;
    }

    .item img {
        height: 240px;
        object-fit: cover;
    }

    .fancy-title {
        margin-left: 12px;
    }
}

/* 
.masonry {
    columns: 4;
    column-gap: 10px;
}

.item {
    break-inside: avoid;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.item img {
    width: 100%;
    display: block;
    border-radius: 10px;
} */

#justified-gallery img {
    border-radius: 7px;
}

#justified-gallery a {
    margin: 0 !important;
}

@media (max-width: 576px) {

    #justified-gallery {
        display: flex !important;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 10px;
    }

    #justified-gallery::-webkit-scrollbar {
        display: none;
    }

    #justified-gallery a {
        min-width: 100% !important;
        scroll-snap-align: start;
    }

    #justified-gallery img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 10px;
    }
}

.custom-theme-card {
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
}

.custom-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.custom-title {
    font-size: 24px;
    font-weight: 500;
    color: #8B2635;
}

.selected-theme-box {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
}

/* Golden gradient left box */
.theme-info-box {
    background: linear-gradient(135deg, #FFEEB7 100%, #D4AF37 100%);
    border-radius: 20px;
    color: #000;
    height: 100%;
}

.theme-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 2;
}

.theme-points {
    color: #4b5563;
    font-size: 14px;
}

.theme-heading,
.box-heading,
.element-heading {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 500;
}

/* Rounded button */
.theme-btn {
    background: #e2a619;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 0;
}

/* Elements grid */
.element-card {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.element-img {
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.element-title {
    color: #4b5563;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Remove button */

.remove-btn {
    text-decoration: none;
}

.remove-btn i {
    font-size: 1rem;
}


.event-form-box {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eee;
    overflow: hidden;
}

.event-form-header {
    background: linear-gradient(135deg, #d4a437, #b8821e);
    border-bottom: 1px solid #e8d49b;
}

/* Label with icon */
.icon-label i {
    color: #e6b13c;
    margin-right: 6px;
}

/* Inputs */
.custom-input {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #ddd;
}

.custom-input:focus {
    border-color: #e1b247;
    box-shadow: 0 0 0 0.2rem rgba(225, 178, 71, 0.2);
}

/* Buttons */
.clear-btn {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    font-weight: 500;
}

.generate-btn {
    border-radius: 12px;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #d4a437, #b8821e);
}


.theme-badge {
    background: #ffffff;
    color: #d4ab44;
    padding: 15px;
    border-radius: 25px;
}

.header-banner {
    background: linear-gradient(135deg, #d4a437, #b8821e);
    /* border-radius: 12px; */
    color: white;
    padding: 36px 36px 36px 80px !important;
}

/* Logo */
.company-logo {
    width: 250px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
}

/* Text Styling */
.company-title {
    font-weight: 700;
    margin-bottom: 2px;
    color: #000; /* black like screenshot */
}

.company-subtitle {
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 10px;
}

.company-desc {
    color: #f8f8f8;
    font-size: 0.85rem;
    padding-bottom: 1rem;
    /* max-width: 330px; */
}

/* White underline */
/* .underline-line {
    width: 350px;
    height: 2px;
    background: white;
    margin-top: 12px;
} */

/* Right text */
.generated-text,
.website-text {
    font-size: 0.8rem;
    color: #fff;
}

/* Buttons */
.download-btn {
   background:  #f0bb43 !important;
    color: white !important;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.share-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 16px;
}

@media (max-width: 768px) {
    .header-banner {
        text-align: left;
    }
    .text-end {
        text-align: left !important;
    }
}


.form-title {
    font-weight: 700;
}

.left-feature {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #caa64f;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.contact-item i {
    color: #caa64f;
}

.form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.custom-input {
    height: 48px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.custom-input:focus {
    border-color: #c89c2b !important;
    box-shadow: 0 0 0 0.2rem rgba(200,150,40,0.25);
}

/* Center justifiedGallery loader */
.jg-loading,
.jg-spinner {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}


.gallery-link,
.gallery-link img {
    position: relative;
}

.image-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(202, 166, 79, 0.54);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
    margin: 6px;
}

.gallery-link:hover .image-hover-overlay {
    opacity: 1;
}

.image-hover-overlay .view-btn {
    padding: 8px 18px;
    font-size: 14px;
}

.element-hover-wrap {
    position: relative;
}

.element-hover-wrap img {
    display: block;
    border-radius: 12px;
}

.element-hover-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: auto;
    height: calc(100% - 36px);
    background: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 12px;
}

.element-hover-overlay a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.element-hover-wrap:hover .element-hover-overlay {
    opacity: 1;
}

.tooltip,
.popover,
.dropdown-menu {
    z-index: 9999 !important;
}

/* Sub-event button customization */
.subevent-buttons{
    margin-bottom: 3rem !important;
}
.subevent-btn {
    font-size: 12px !important; 
    padding: 6px 12px !important;
}

.subevent-btn.active {
    font-weight: 600 !important;
}

.lg-backdrop {
    z-index: 99999 !important;
}

.lg-outer {
    z-index: 100000 !important;
}

.lg-container {
    z-index: 100001 !important;
}

@media (max-width: 768px) {

    .lg-toolbar {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .lg-close {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;

        position: fixed !important;
        top: 20px !important;
        right: 15px !important;
        z-index: 999999 !important;

        font-size: 32px !important;
        color: #fff !important;
    }
}