/* Root Styles */

/* Root Styles - Updated with Fractul */
:root {
    --primary-color: #1abc9c;
    --dark-color: #0f1419;
    --light-gray: #f5f5f5;
    --border-color: #e9ecef;
}

body {
    font-family: 'Fractul', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    font-weight: 400; /* Default to Regular / Medium */
}

/* Main Headings - Use Bold */
.hero-title,
.categories-title,
.video-title,
.cta-title {
    font-family: 'Fractul', sans-serif;
    font-weight: 700; /* Fractul Bold */
    letter-spacing: -0.03em;
}

/* Medium weight for sub-headings or emphasis */
h5, h6, .fw-500, .nav-link {
    font-family: 'Fractul', sans-serif;
    font-weight: 500; /* Fractul Medium */
}

/* Update specific sizes to better match modern UI/UX feel */
.hero-title {
    font-size: 4.8rem;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.categories-title,
.video-title {
    font-size: 2.85rem;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.cta-title {
    font-size: 2.75rem;
    line-height: 1.2;
}

/* Fine-tune CTA highlight */
.cta-title .highlight {
    background-color: #000;
    padding: 0 14px 4px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
}
/* :root {
    --primary-color: #1abc9c;
    --dark-color: #0f1419;
    --light-gray: #f5f5f5;
    --border-color: #e9ecef;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #f9f9f9;
    color: #333;
} */

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000 !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-color);
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.hero-title .text-success {
    color: var(--primary-color) !important;
    font-weight: 900;
}

/* Hero Description */
.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #bbb;
    max-width: 500px;
}

/* Search Container */
.search-container .input-group {
    border: none;
    box-shadow: none;
}

.search-container .form-control {
    padding: 12px 20px;
    font-size: 1rem;
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    color: #999;
}

.search-container .form-control::placeholder {
    color: #ccc;
}

.search-container .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
    background-color: #fff;
}

.search-container .btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.search-container .btn:hover {
    background-color: #16a085 !important;
    border-color: #16a085;
}


@media (max-width: 500px) {
    .hide-on-mobile{
        display: none !important;
    }
}
/* Cards Container */
.cards-container {
    position: relative;
    height: 500px;
    align-items: flex-end;
}

/* Card Pill */
.card-pill {
    width: 150px;
    height: 400px;
    background: linear-gradient(180deg, #b0b5c1 0%, #1a1f3a 50%, #0f1419 100%);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-pill:hover {
    transform: translateY(-10px);
}

.card-pill-center {
    height: 450px;
}

/* Card Image */
.card-image {
    flex: 1;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #b0b5c1 0%, #8b91a3 100%);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card Label */
.card-label {
    flex: 0 0 35%;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1419 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.rotate-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Decorative Brackets */
.decorative-bracket {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
}

.decorative-bracket::before,
.decorative-bracket::after {
    content: '';
    position: absolute;
    background-color: #0f1419;
}

.decorative-bracket.top-right {
    top: 150px;
    right: 20px;
}

.decorative-bracket.top-right::before {
    width: 30px;
    height: 4px;
    top: 0;
    right: 0;
}

.decorative-bracket.top-right::after {
    width: 4px;
    height: 30px;
    top: 0;
    right: 0;
}

.decorative-bracket.bottom-left {
    bottom: 150px;
    left: 20px;
}

.decorative-bracket.bottom-left::before {
    width: 30px;
    height: 4px;
    bottom: 0;
    left: 0;
}

.decorative-bracket.bottom-left::after {
    width: 4px;
    height: 30px;
    bottom: 0;
    left: 0;
}

/* Wavy Decorative Lines */
.wavy-line {
    display: inline-block;
    font-size: 2rem;
    color: #0f1419;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .cards-container {
        margin-top: 3rem;
        height: auto;
    }

    .card-pill {
        height: 300px;
        width: 120px;
    }

    .card-pill-center {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 2rem;
    }

    .cards-container {
        justify-content: center !important;
        gap: 2rem !important;
    }

    .decorative-bracket {
        display: none;
    }
}

/* Utility Classes */
.fw-500 {
    font-weight: 500;
}

.text-muted {
    color: #d0d0d0 !important;
}


/* Categories Section */
.categories {
    background-color: #fff;
}

/* Title */
.categories-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f1419;
}

.categories-title span {
    color: var(--primary-color);
}

/* Tabs */
.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.categories-tabs a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.categories-tabs a.active {
    color: #000;
    font-weight: 600;
    background: linear-gradient(transparent 60%, var(--primary-color) 60%);

}
@media (max-width: 600px) {
    .categories-tabs {
        overflow-x: auto;
        justify-content: left;
        flex-wrap: unset;
        white-space: nowrap;
    }
}

/* .categories-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
} */

/* Card */
.category-card {
    text-align: left;
}

.category-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 12px;
}

/* Text */
.category-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f1419;
    margin-bottom: 2px;
}

.category-card p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .categories-title {
        font-size: 2rem;
    }

    .category-card img {
        height: 180px;
    }
}

@media (max-width: 500px) {
    .category-scroll {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-scroll .col-6 {
        flex: 0 0 70%; /* 👈 key part */
        max-width: 70%;
    }
}

/* Video Section */
.video-section {
    background-color: #f9f9f9;
}

/* Title */
.video-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f1419;
    line-height: 1.2;
}

.video-title span {
    background: linear-gradient(transparent 60%, var(--primary-color) 60%);
}

/* Description */
.video-desc {
    color: #c0c0c0;
    max-width: 450px;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    width: 2px;
    height: 100%;
    border-left: 2px dashed #ccc;
}

/* Item */
.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item .icon {
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    border-radius: 50%;
    z-index: 1;
}

/* Content */
.timeline-item h6 {
    font-weight: 700;
    color: #0f1419;
}

.timeline-item h6 span {
    background: linear-gradient(transparent 60%, var(--primary-color) 60%);
}

.timeline-item p {
    font-size: 0.85rem;
    color: #bbb;
    max-width: 300px;
}

/* Video Card */
.video-card {
    position: relative;
    background: #f1f1f1;
    border-radius: 30px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo center */
.video-logo {
    width: 350px;
    opacity: 0.9;
}

/* Play button */
.play-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Video hidden initially */
.video-player {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}



/* Footer */
.footer {
    background-color: #02042c; /* deep navy */
    color: #fff;
    padding-top: 60px;
}

/* Logo */
.footer-logo {
    width: 120px;
}

/* Titles */
.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Links */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    text-decoration: none;
    color: #8c8fa3;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
    background-color: #2b2d4a;
    color: #8c8fa3;
    font-size: 0.9rem;
    padding: 18px 10px;
    margin-top: 40px;
}

/* Spacing */
.footer-top {
    padding-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
}


/* ====================== BECOME A SELLER CTA SECTION ====================== */
.cta-seller {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.cta-box {
    background-color: #1abc9c;
    max-width: 920px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 70px 60px 60px;
    color: white;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.cta-title span {
       background: linear-gradient(transparent 60%, var(--dark-color) 60%);

}

.cta-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 780px;
    margin: 0 auto 45px;
    opacity: 0.95;
}

.btn-start-now {
    background-color: #0f1419;
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0px;
    transition: all 0.3s ease;
    min-width: 220px;
}

.btn-start-now:hover {
    background-color: #1a1f3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-box {
        padding: 60px 40px 50px;
    }
    .cta-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .cta-box {
        padding: 50px 30px 40px;
        border-radius: 25px;
    }
    .cta-title {
        font-size: 2.1rem;
    }
    .cta-description {
        font-size: 1rem;
    }
}
