/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

main > .container {
  padding: 60px 15px 0;
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.form-control-dark {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: var(--bs-gray);
}
.form-control-dark:focus {
  color: #fff;
  background-color: var(--bs-dark);
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.text-small {
  font-size: 85%;
}

.dropdown-toggle {
  outline: 0;
}



/* ================= MODERN HOMEPAGE ================= */

/* GLOBAL */
body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background-color: #f8fafc;
    color: #1f2937;
}

section {
    margin-bottom: 80px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #B21C4D, #7a1234) !important;
    color: #ffffff !important;
    padding: 100px 20px !important;
    border-radius: 28px !important;
    margin: 40px !important;
    text-align: center !important;
}


.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: #e5e7eb;
}

/* BUTTON */
.hero .btn {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* FEATURE CARDS */
.feature-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.15);
}

.feature-card img {
    height: 220px;
    object-fit: cover;
}

/* SOFT BOX */
.soft-box {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* FEATURE LIST */
.feature-list li {
    list-style: none;
    padding: 10px 0;
    font-weight: 600;
}

.feature-list li::before {
    content: "✔";
    color: #B21C4D !important;
    margin-right: 10px;
}
.hero .btn {
    background-color: #ffffff !important;
    color: #B21C4D !important;
    font-weight: 600;
    border-radius: 50px;
}

.hero .btn:hover {
    background-color: #fbe6ec !important;
}


/* ================= MODERN BRAND NAVBAR ================= */
/* ========================= BRAND COLORS ========================= */
:root {
    --brand-primary: #B21C4D;
    --brand-dark: #7a1234;
    --text-light: #ffffff;
}

/* ========================= HERO SECTION ========================= */
.hero {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: var(--text-light);
    padding: 100px 20px;
    border-radius: 28px;
    margin: 40px auto;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.hero .btn {
    background-color: var(--text-light);
    color: var(--brand-primary);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #fbe6ec;
}

/* ========================= NAVBAR ========================= */
#paper-maker-top-nav {
    background-color: #ffffff !important;
    border-bottom: 4px solid var(--brand-primary);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border-radius: 8px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.pk-site-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.pk-site-logo img:hover {
    transform: scale(1.05);
}

#paper-maker-top-nav a {
    color: #1f2937;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

#paper-maker-top-nav a:hover {
    color: var(--brand-primary);
}

#paper-maker-top-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background-color: var(--brand-primary);
}

#paper-maker-top-nav a.btn,
#paper-maker-top-nav a.text-danger {
    background-color: var(--brand-primary);
    color: var(--text-light) !important;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#paper-maker-top-nav a.btn:hover,
#paper-maker-top-nav a.text-danger:hover {
    background-color: var(--brand-dark);
    color: var(--text-light) !important;
}

@media (max-width: 992px) {
    #paper-maker-top-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    #paper-maker-top-nav a {
        margin: 6px 0;
    }
}

/* ========================= CAROUSEL ========================= */
.carousel-inner img {
    border-radius: 20px;
    max-height: 450px;
    object-fit: cover;
}

.carousel-caption .h1 {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 2rem;
}

/* ========================= FEATURES CARDS ========================= */
.feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    max-height: 220px;
    object-fit: cover;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.feature-card .card-body h5 {
    color: var(--brand-primary);
    font-weight: 600;
}

.feature-card .card-body p {
    font-size: 0.95rem;
}

/* ========================= SOFT BOX / SECTIONS ========================= */
.soft-box {
    background-color: #fdf0f4;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

/* ========================= FEATURE LIST ========================= */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: "\2713";
    color: var(--brand-primary);
    font-weight: bold;
    position: absolute;
    left: -25px;
}

/* ========================= FOOTER ========================= */
.paper-maker-footer {
    background-color: var(--brand-primary); /* Theme color #B21C4D */
    color: #ffffff;
    padding: 25px 0;
    font-weight: 500;
    text-align: center;
    border-top: 4px solid var(--brand-dark);
    font-family: 'Inter', sans-serif;
    border-radius: 0 0 12px 12px;
}



/* ================= MODERN LOGIN PAGE ================= */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background: linear-gradient(135deg, #fdf0f4, #ffffff);
    font-family: 'Inter', sans-serif;
}

.login-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
}

.login-card h2 {
    color: #B21C4D;
    font-weight: 700;
}

.login-card p {
    color: #6c757d;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #B21C4D;
    box-shadow: 0 0 0 0.2rem rgba(178,28,77,.25);
}

.btn-login {
    background-color: #B21C4D;
    color: #fff;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #7a1234;
    transform: translateY(-2px);
}

.btn-register {
    background-color: #ffc107;
    color: #fff;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6c757d;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
}
