TIF_NGANJUK_E41220418/public/css/user/main.css

1784 lines
36 KiB
CSS

/*
Template name: Nova (Customized for Flo.do)
Status: SLIDER FIXED & VARIABLES APPLIED
*/
/* =========================================
1. GLOBAL VARIABLES
========================================= */
:root,
[data-bs-theme=light] {
/* --- BRAND COLORS --- */
--bs-primary: #3B8181;
--bs-primary-rgb: 59, 129, 129;
--bs-primary-hover: #2f6666;
--bs-link-hover-color: #2a6161;
--bs-brick: #E66351;
--bs-brick-hover: #cf5948;
--bs-red: #DC464F;
--bs-red-hover: #c43e46;
/* --- STANDARD COLORS (Grayscale) --- */
--bs-white: #ffffff;
--bs-white-rgb: 255, 255, 255;
--bs-black: #000000;
--bs-black-rgb: 0, 0, 0;
--bs-gray-100: #f8f9fa;
/* Background Light */
--bs-gray-200: #e9ecef;
/* Border Light */
--bs-gray-300: #dee2e6;
/* Border Standard */
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
/* Icons / Disabled Text */
--bs-gray-600: #6c757d;
/* Body Text */
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
/* Dark Text */
--bs-gray-900: #212529;
/* Heading Text */
/* --- THEME ASSIGNMENTS --- */
--bs-body-bg: var(--bs-white);
--bs-body-color: var(--bs-gray-700);
--bs-heading-color: black;
/* Legacy Template Vars */
--bs-secondary-rgb: 108, 117, 125;
--inverse-color-rgb: 33, 37, 41;
--body-font: 0.85rem;
--heading-font: 1.7rem;
--heading2-font: 1.5rem;
--heading3-font: 1.2rem;
--subheading-font: 1rem;
--nav-font: 0.95rem;
/* --- LAYOUT --- */
--navbar-height: 80px;
--header-spacing: 120px;
}
/* =========================================
2. BASE STYLES
========================================= */
body {
font-family: "Poppins", sans-serif !important;
line-height: 1.7;
background-color: var(--bs-body-bg);
color: var(--bs-body-color);
-webkit-font-smoothing: antialiased;
}
a {
transition: 0.3s all ease-in-out;
color: var(--bs-primary);
text-decoration: underline;
}
a:hover {
text-decoration: none;
color: var(--bs-link-hover-color);
/* Updated Variable */
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--bs-heading-color);
}
.container {
max-width: 1140px;
}
.section {
padding: 70px 0;
scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
.section {
padding: 40px 0;
}
}
/* Helpers */
.shadow-sm {
box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}
.shadow {
box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}
.text-teal {
color: var(--bs-primary) !important;
}
.fw-bold {
font-weight: 700 !important;
}
.cursor-pointer {
cursor: pointer;
}
.x-small {
font-size: 0.75rem;
}
/* Buttons Default */
.btn {
padding: 10px 24px;
background-color: var(--bs-primary);
color: var(--bs-white);
border: 1px solid transparent;
border-radius: 36px;
position: relative;
font-weight: 500;
font-size: var(--body-font)
}
.btn:hover,
.btn:active,
.btn:focus {
color: var(--bs-white);
background-color: var(--bs-primary-hover) !important;
border: 1px solid var(--bs-primary-hover) !important;
}
/* Form Controls */
.form-control {
padding-top: 10px;
padding-bottom: 10px;
border-width: 1px;
font-size: var(--body-font);
background-color: transparent;
border-color: rgba(var(--inverse-color-rgb), 0.1);
}
.form-control:focus {
outline: none;
box-shadow: none;
border-color: var(--bs-primary);
}
/* =========================================
3. NAVBAR
========================================= */
.fbs__net-navbar {
position: fixed !important;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 99999;
background-color: var(--bs-white) !important;
border: none;
transition: 0.3s all ease-in-out;
}
@media (min-width: 992px) {
.fbs__net-navbar {
padding: 0;
}
}
.fbs__net-navbar .navbar-brand {
color: var(--bs-white);
font-size: 30px;
font-weight: bold;
}
.fbs__net-navbar .navbar-brand .logo.dark {
display: none;
}
.fbs__net-navbar .navbar-brand .logo.light {
display: block;
}
/* Nav Links */
.fbs__net-navbar .navbar-nav>li>.nav-link {
position: relative;
padding: 22px 10px;
font-size: var(--nav-font);
color: rgba(var(--inverse-color-rgb), 1);
transition: 0.3s all ease;
}
.fbs__net-navbar .navbar-nav>li>.nav-link:hover,
.fbs__net-navbar .navbar-nav>li>.nav-link.active {
color: var(--bs-primary) !important;
}
/* Animation Underline */
.fbs__net-navbar .navbar-nav>li>.nav-link:before {
content: "";
position: absolute;
width: calc(100% - 20px);
height: 1.5px;
bottom: 0;
left: 10px;
background: var(--bs-primary);
transform: scaleX(0);
transform-origin: bottom right;
transition: transform 0.35s ease-out;
}
.fbs__net-navbar .navbar-nav>li>.nav-link:hover::before,
.fbs__net-navbar .navbar-nav>li>.nav-link.active:before {
transform: scaleX(1);
transform-origin: bottom left;
}
/* Mobile Toggler */
.fbs__net-navbar .fbs__net-navbar-toggler {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--bs-black);
color: var(--bs-white);
border: none;
display: none;
}
@media (max-width: 991.98px) {
.fbs__net-navbar .navbar-nav>li>.nav-link {
padding-top: 10px;
padding-bottom: 10px;
}
.fbs__net-navbar .fbs__net-navbar-toggler {
display: flex;
}
}
/* Navbar Scrolled Active */
.fbs__net-navbar.active {
box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
.fbs__net-navbar.active .navbar-brand {
color: rgba(var(--inverse-color-rgb), 1) !important;
}
/* =========================================
4. HERO SECTION
========================================= */
.hero__v6 {
padding: 10rem 0 !important;
}
.hero__v6 .hero-subtitle,
.subtitle {
background: color-mix(in srgb, var(--bs-secondary-rgb), transparent 80%);
color: var(--bs-primary);
display: inline-block;
padding: 5px 12px;
border-radius: 7px;
font-weight: 600;
font-size: var(--body-font);
margin-bottom: 10px;
}
.hero-description {
color: var(--bs-body-color);
font-size: var(--subheading-font);
margin-bottom: 1rem;
}
.hero__v6 .hero-title {
font-size: 3rem
}
@media (max-width: 1199.98px) {
.hero__v6 .hero-title {
font-size: 2.3rem;
}
}
@media (max-width: 991.98px) {
.hero__v6 .hero-title {
font-size: 2rem;
}
}
/* Images */
.hero-image-wrapper {
position: relative;
height: 400px;
margin-top: -50px;
width: 100%;
}
.arch-img {
position: absolute;
width: 55%;
height: 350px;
object-fit: cover;
border-radius: 200px 200px 0 0;
}
.img-1 {
top: 0;
left: 0;
z-index: 1;
}
.img-2 {
top: 50px;
right: 0;
z-index: 2;
border: 4px solid var(--bs-white);
}
@media (max-width: 991px) {
.hero-image-wrapper {
height: 400px;
margin-top: 30px;
}
.arch-img {
height: 300px;
}
.img-2 {
top: 60px;
}
}
/* =========================================
5. LANDING SECTIONS
========================================= */
.section-buket {
padding-top: 80px;
padding-bottom: 80px;
background-color: rgba(var(--bs-primary-rgb), 0.05);
}
.section-foto {
padding-top: 80px;
padding-bottom: 80px;
background-color: var(--bs-white);
}
/* --- TYPOGRAPHY --- */
.buket-title,
.foto-title {
font-weight: 700;
font-size: var(--heading-font);
color: var(--bs-heading-color);
margin-bottom: 1rem;
}
.buket-desc,
.foto-desc {
color: var(--bs-body-color);
font-size: var(--subheading-font);
margin-bottom: 1rem;
text-align: justify;
}
/* --- COLLAGE WRAPPER --- */
.collage-wrapper {
max-width: 500px;
margin: 0 auto;
}
/* Gambar Besar (2 buah ditumpuk) */
.img-lg {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.3s ease;
}
/* Gambar Sedang/Kecil (1 buah di tengah) */
.img-md {
width: 100%;
height: 220px;
object-fit: cover;
transition: transform 0.3s ease;
}
/* Hover Effect */
.img-lg:hover,
.img-md:hover {
transform: scale(1.03);
}
/* Responsive Fix (Mobile) */
@media (max-width: 767.98px) {
.collage-wrapper {
margin-bottom: 30px;
}
.img-lg,
.img-md {
height: 160px;
}
}
/* --- BUTTONS --- */
.btn-buket,
.btn-foto {
color: var(--bs-white);
padding: 12px 24px;
border-radius: 50px;
font-weight: 500;
display: inline-block;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
/* Tambahan shadow tombol */
}
/* Warna Brick (Buket) */
.btn-buket {
background-color: var(--bs-brick);
border: 1px solid var(--bs-brick);
}
.btn-buket:hover {
background-color: var(--bs-brick-hover) !important;
border-color: var(--bs-brick-hover) !important;
color: var(--bs-white);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(230, 99, 81, 0.3);
/* Shadow warna brick */
}
/* Warna Red (Foto) */
.btn-foto {
background-color: var(--bs-red);
border: 1px solid var(--bs-red);
}
.btn-foto:hover {
background-color: var(--bs-red-hover) !important;
border-color: var(--bs-red-hover) !important;
color: var(--bs-white);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(220, 70, 79, 0.3);
/* Shadow warna red */
}
/* =========================================
6. KATALOG PAGES
========================================= */
.section-katalogbuket,
.section-bookingfoto {
background-color: var(--bs-white);
padding-top: var(--header-spacing);
padding-bottom: 50px;
}
.katalogbuket-title,
.bookingfoto-title {
font-weight: 800;
font-size: var(--heading-font);
color: var(--bs-black);
}
/* Search */
.katalogbuket-search-wrapper {
position: relative;
max-width: 500px;
margin: 0 auto;
}
.katalogbuket-search-input {
background-color: var(--bs-gray-100);
border: none;
border-radius: 50px;
padding: 12px 20px 12px 45px;
font-size: var(--body-font);
}
.katalogbuket-search-input:focus {
background-color: var(--bs-white);
box-shadow: 0 0 0 2px var(--bs-gray-200);
}
.search-icon {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: var(--bs-gray-500);
}
/* Filter Box */
.katalogbuket-filter-box {
border: 1px solid var(--bs-gray-200);
border-radius: 16px;
padding: 24px;
background-color: var(--bs-white);
}
/* =========================================
6. KATALOG PAGES (Update Sidebar Fonts)
========================================= */
/* 1. Judul "Filter" Paling Atas */
.katalogbuket-filter-box h5 {
font-weight: 600 !important;
/* Bold */
font-size: var(--subheading-font);
color: var(--bs-heading-color);
}
.katalogbuket-category-list li {
margin-bottom: 5px;
}
.katalogbuket-category-list a.active {
color: var(--bs-black);
font-weight: 700;
}
/* 3. Judul Accordion (Harga, Ukuran) */
.katalogbuket .accordion-button {
font-family: "Poppins", sans-serif;
font-weight: 600 !important;
font-size: 1rem;
color: var(--bs-heading-color);
}
/* Teks angka range harga (Rp 50.000 - Rp 200.000) */
.katalogbuket-filter-box .small {
font-weight: 500;
font-size: var(--body-font);
}
.katalogbuket-category-list a {
text-decoration: none;
color: var(--bs-gray-600);
font-size: var(--nav-font);
display: flex;
justify-content: space-between;
align-items: center;
transition: color 0.2s;
}
.katalogbuket-category-list a:hover {
color: var(--bs-black);
font-weight: 500;
}
.btn-size {
padding: 0 !important;
width: 36px;
height: 36px;
border-radius: 50%;
border: 1px solid var(--bs-gray-200);
background-color: var(--bs-gray-100);
color: var(--bs-gray-800);
font-size: var(--body-font);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}
.btn-size:hover {
border-color: var(--bs-black);
background-color: var(--bs-black) !important;
}
.btn-size.active {
background-color: var(--bs-black);
color: var(--bs-white);
border-color: var(--bs-black);
}
.btn-katalogbuket-dark {
background-color: var(--bs-black);
color: var(--bs-white);
border-radius: 50px;
padding: 10px;
font-weight: 500;
width: 100%;
border: none;
transition: all 0.3s;
}
.btn-katalogbuket-dark:hover {
background-color: var(--bs-gray-900) !important;
border-color: var(--bs-gray-900) !important;
color: var(--bs-white);
}
/* Grid Cards (Buket) */
.katalogbuket-card {
cursor: pointer;
transition: transform 0.3s;
padding: 10px 12px;
border: 1px solid var(--bs-gray-200);
border-radius: 20px;
}
.katalogbuket-card:hover {
transform: translateY(-5px);
}
.katalogbuket-card .img-wrapper img {
width: 100%;
height: 200px;
object-fit: cover;
background-color: var(--bs-gray-100);
transition: transform 0.5s ease;
border-radius: 10px;
}
.katalogbuket-card:hover .img-wrapper img {
transform: scale(1.03);
}
.katalogbuket-product-title {
font-weight: 600;
font-size: var(--subheading-font);
margin-bottom: 4px;
color: var(--bs-black);
}
.katalogbuket-product-price {
font-size: var(--body-font);
color: var(--bs-gray-600);
font-weight: 500;
margin-bottom: 0;
}
.btn-pagination {
color: var(--bs-black);
background-color: transparent;
border: 1px solid var(--bs-gray-500);
transition: all 0.3s ease;
font-weight: 500;
}
.btn-pagination:hover {
background-color: var(--bs-black) !important;
/* Background jadi Teal */
color: var(--bs-white);
/* Teks jadi Putih */
transform: translateY(-2px);
/* Efek naik dikit */
box-shadow: 0 4px 10px rgba(59, 129, 129, 0.2);
}
/* 2. Angka Halaman */
.pagination-numbers .page-number {
display: inline-block;
padding: 5px 10px;
cursor: pointer;
font-weight: 500;
transition: all 0.2s ease;
border-radius: 5px;
}
/* Hover pada angka */
.pagination-numbers .page-number:hover {
color: var(--bs-black);
background-color: var(--bs-gray-100);
}
/* Angka Aktif (Halaman saat ini) */
.pagination-numbers .page-number.active {
color: var(--bs-black);
font-weight: 700;
border-bottom: 2px solid var(--bs-black);
/* Garis bawah indikator aktif */
border-radius: 0;
/* Biar garis bawahnya kotak */
}
/* Grid Cards (Foto - Clean) */
.bookingfoto-card {
background: transparent;
border: none;
padding: 0;
width: 100%;
max-width: 180px;
margin: 0 auto;
cursor: pointer;
transition: transform 0.3s ease;
}
@media (max-width: 991px) {
.bookingfoto-card {
width: 100% !important;
}
}
.bookingfoto-card:hover {
transform: translateY(-5px);
}
.bookingfoto-card .img-wrapper {
width: 100%;
position: relative;
overflow: hidden;
border-radius: 20px;
}
.bookingfoto-card .img-wrapper img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}
.bookingfoto-card:hover .img-wrapper img {
transform: scale(1.05);
}
.bookingfoto-product-title {
font-weight: 600;
font-size: var(--subheading-font);
margin-bottom: 4px;
color: var(--bs-black);
}
.bookingfoto-product-price {
font-size: var(--body-font);
color: var(--bs-gray-600);
font-weight: 500;
}
/* =========================================
7. DETAIL PAGES
========================================= */
.section-detailbuket,
.section-detailfoto {
background-color: var(--bs-white);
padding-top: var(--header-spacing);
padding-bottom: 80px;
}
.detailbuket-title {
font-weight: 700;
font-size: var(--heading-font);
color: var(--bs-heading-color);
margin-bottom: 10px;
}
.detailbuket-price {
font-weight: 600;
font-size: var(--subheading-font);
color: var(--bs-gray-800);
margin-bottom: 20px;
}
.detailbuket-spec-label {
font-size: var(--body-font);
font-weight: 600;
color: var(--bs-gray-600);
line-height: 1.2;
}
.detailbuket-spec-val {
font-weight: 600;
color: black;
font-size: var(--body-font);
line-height: 1.2;
}
.detailbuket-vr {
width: 1px;
height: 35px;
background-color: var(--bs-gray-400);
opacity: 0.5;
margin: 0 1.5rem;
}
.detailbuket-desc {
font-size: var(--nav-font);
font-weight: 400;
line-height: 1.7;
text-align: justify;
}
.detailbuket-note {
font-size: var(--body-font);
line-height: 1.7;
text-align: justify;
}
.detailbuket-img-frame {
background-color: transparent;
padding: 15px;
border-radius: 20px;
border: 1px solid var(--bs-gray-200);
}
.detailbuket-img-frame img {
width: 100%;
border-radius: 12px;
object-fit: cover;
aspect-ratio: 1 / 1;
}
.detailbuket-specs .icon-box {
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 1.2rem;
background-color: rgba(var(--bs-primary-rgb), 0.1);
color: var(--bs-primary);
display: flex;
align-items: center;
justify-content: center;
}
.vr {
width: 1px;
background-color: var(--bs-black);
}
.detailbuket-note {
font-size: 0.95rem;
color: var(--bs-gray-700);
background-color: var(--bs-gray-100);
padding: 15px;
border-radius: 8px;
border-left: 4px solid var(--bs-primary);
}
.detailfoto-card {
background: var(--bs-white);
border: 1px solid var(--bs-gray-200);
border-radius: 16px;
}
.detailfoto-thumb {
width: 120px;
height: 120px;
object-fit: cover;
aspect-ratio: 1 / 1;
}
.detailfoto-addon-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
margin-bottom: 10px;
border: 1px solid var(--bs-gray-200);
border-radius: 12px;
background: var(--bs-white);
}
.detailfoto-product-title {
font-weight: 700;
font-size: var(--heading3-font);
color: var(--bs-heading-color);
}
.detailfoto-product-price {
font-weight: 600;
font-size: var(--nav-font);
color: var(--bs-gray-800);
margin-bottom: 10px;
}
.detailfoto-product-desc {
font-size: var(--body-font);
color: var(--bs-gray-600);
line-height: 1.6;
margin-bottom: 0;
}
.detailfoto-addons-title {
font-weight: 600;
font-size: var(--heading3-font);
color: var(--bs-heading-color);
margin-top: 20px;
margin-bottom: 10px;
}
.detailfoto-addon-item {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
border: 1px solid var(--bs-gray-200);
border-radius: 12px;
padding: 15px 20px;
margin-bottom: 10px;
transition: all 0.3s ease;
}
.detailfoto-addon-item:hover {
border-color: var(--bs-primary);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.detailfoto-addon-name {
font-weight: 600;
font-size: var(--nav-font);
color: var(--bs-heading-color);
margin-bottom: 2px;
}
.detailfoto-addon-price {
font-size: var(--body-font);
font-weight: 500;
color: var(--bs-gray-600);
}
.detailfoto-counter {
display: flex;
align-items: center;
gap: 4px;
}
.detailfoto-counter input {
width: 40px !important;
border: none;
background: transparent;
text-align: center;
font-weight: 600;
padding: 0;
font-size: var(--nav-font);
}
.btn-counter {
width: 28px;
height: 28px;
border: 1px solid var(--bs-gray-300);
background: var(--bs-white);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 14px;
transition: all 0.2s;
}
.btn-counter:hover {
background: var(--bs-primary);
color: var(--bs-white);
border-color: var(--bs-primary);
}
.detailfoto-date-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
gap: 10px;
}
/* KALENDER */
.detailfoto-calendar-box {
padding: 0px 25px;
border-radius: 20px;
}
/* 1. Teks Peringatan Timer (Kiri Atas) */
.timer-alert-text {
font-size: var(--body-font);
font-weight: 500;
color: var(--bs-heading-color);
padding-top: 0;
}
/* 2. Badge Timer (Kanan Atas - Merah Solid) */
.timer-badge {
display: inline-block;
background-color: #dc3545;
color: #fff;
padding: 4px 12px !important;
border-radius: 50px;
font-weight: 600;
font-size: var(--body-font);
font-family: monospace;
letter-spacing: 0.5px;
box-shadow: 0 2px 5px rgba(220, 53, 69, 0.2);
}
/* 3. Judul Utama "Pilih Tanggal..." */
.schedule-title {
font-weight: 600;
font-size: var(--nav-font);
color: var(--bs-heading-color);
margin-top: 10px;
margin-bottom: 8px;
line-height: 1.2;
}
.schedule-desc {
font-size: var(--body-font);
color: var(--bs-gray-600);
font-weight: 400;
line-height: 1.5;
margin-bottom: 0;
}
.cal-month-label {
font-size: var(--nav-font);
font-weight: 500;
color: var(--bs-heading-color);
}
.cal-nav-btn {
width: 32px;
height: 32px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border: 1px solid var(--bs-gray-300);
color: var(--bs-gray-600);
transition: all 0.3s ease;
}
.cal-nav-btn i {
font-size: 16px;
}
.cal-nav-btn:hover {
background-color: var(--bs-primary);
border-color: var(--bs-primary);
color: #fff;
}
.cal-nav-btn:active {
transform: scale(0.95);
}
/* --- BAGIAN KIRI: KALENDER --- */
.detailfoto-date-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 5px;
text-align: center;
}
.day-name {
font-size: var(--body-font);
font-weight: 500;
color: #aaa;
margin-bottom: 8px;
}
.date-item {
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
font-size: var(--body-font);
font-weight: 500;
border-radius: 50%;
cursor: pointer;
color: var(--bs-heading-color);
transition: 0.2s;
}
.date-item:hover:not(.disabled):not(.selected) {
background-color: var(--bs-gray-100);
color: var(--bs-primary);
}
.date-item.selected {
background-color: var(--bs-primary);
color: #fff;
}
.date-item.disabled {
color: #ddd;
pointer-events: none;
}
/* --- BAGIAN KANAN: JAM --- */
.time-slot-container {
display: flex;
flex-direction: column;
gap: 8px;
max-height: 280px;
overflow-y: auto;
padding-right: 5px;
}
.time-slot-container::-webkit-scrollbar {
width: 3px;
}
.time-slot-container::-webkit-scrollbar-thumb {
background: #ddd;
border-radius: 3px;
}
.btn-time {
width: 90px;
padding: 8px 4px;
font-size: var(--body-font);
font-weight: 500;
border: 1px solid var(--bs-gray-300);
border-radius: 50px;
background: #fff;
color: var(--bs-heading-color);
transition: 0.2s;
}
.btn-time:hover {
border-color: var(--bs-primary);
color: var(--bs-primary);
background: var(--bs-gray-50);
}
.btn-time.active {
background: var(--bs-primary);
color: #fff;
border-color: var(--bs-primary);
}
.btn-time.disabled {
background: var(--bs-gray-100);
color: #ccc;
border-color: var(--bs-gray-200);
pointer-events: none;
text-decoration: line-through;
}
.btn-action-cancel,
.btn-action-submit {
border-radius: 50px;
/* Bentuk Pil Bulat */
padding: 12px 0;
/* Tinggi tombol */
font-weight: 600;
/* Teks Semi-Bold */
font-size: 0.95rem;
/* Ukuran font pas */
text-align: center;
text-decoration: none;
/* Hilangkan garis bawah link */
transition: all 0.3s ease;
/* Animasi halus */
display: inline-block;
/* Biar rapi */
}
.btn-action-cancel {
background-color: #fff;
color: var(--bs-primary);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
font-weight: 500;
font-size: var(--body-font);
border-radius: 50px;
padding: 12px 0;
transition: all 0.3s ease;
}
.btn-action-cancel:hover {
color: var(--bs-white);
}
.btn-action-submit {
background-color: var(--bs-primary);
border: 1px solid var(--bs-primary);
color: #fff;
font-size: var(--body-font);
font-weight: 500;
box-shadow: 0 4px 6px rgba(59, 129, 129, 0.2);
}
/* Hover Pesan Sekarang */
.btn-action-submit:hover {
background-color: var(--bs-primary-hover);
/* Teal Lebih Gelap */
border-color: var(--bs-primary-hover);
color: #fff;
transform: translateY(-2px);
/* Efek Naik Sedikit */
box-shadow: 0 6px 12px rgba(59, 129, 129, 0.3);
/* Bayangan makin nyata */
}
/* Detail Buttons */
.btn-detailbuket-primary,
.btn-detailfoto-primary {
background-color: var(--bs-primary);
border: 1px solid var(--bs-primary);
color: var(--bs-white);
padding: 12px 24px;
border-radius: 50px;
font-weight: 500;
text-align: center;
display: inline-block;
transition: all 0.3s;
}
.btn-detailbuket-primary:hover,
.btn-detailfoto-primary:hover {
background-color: var(--bs-primary-hover);
color: var(--bs-white);
transform: translateY(-3px);
}
.btn-detailbuket-secondary,
.btn-detailfoto-outline {
background-color: var(--bs-white);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
color: var(--bs-primary);
padding: 12px 24px;
border-radius: 50px;
font-size: var(--body-font);
font-weight: 500;
text-align: center;
}
.btn-detailbuket-secondary:hover,
.btn-detailfoto-outline:hover {
background-color: var(--bs-gray-100);
border-color: var(--bs-primary);
}
/* =========================================
8. FORMULIR PAGES
========================================= */
.section-formulirbuket,
.section-formulirfoto {
background-color: var(--bs-white);
padding-top: var(--header-spacing);
padding-bottom: 80px;
}
.formulirbuket-page-title,
.formulirfoto-page-title {
font-weight: 700;
font-size: var(--heading-font);
color: var(--bs-heading-color);
}
.formulirbuket-section-title,
.formulirfoto-section-title {
font-weight: 600;
font-size: var(--heading3-font);
color: var(--bs-heading-color);
}
.formulirbuket-section h6,
.formulirfoto-section h6 {
font-weight: 600;
font-size: var(--nav-font);
color: var(--bs-heading-color);
}
.formulirbuket-section p,
.formulirfoto-section p {
font-weight: 500;
font-size: var(--nav-font);
color: var(--bs-gray-700) !important;
}
/* Inputs & Cards */
.formulirbuket-input,
.formulirfoto-input {
border: 1px solid var(--bs-gray-300);
border-radius: 10px;
padding: 12px 15px;
font-size: 0.95rem;
width: 100%;
}
.formulirbuket-input:focus,
.formulirfoto-input:focus {
border-color: var(--bs-primary);
box-shadow: 0 0 0 4px rgba(59, 129, 129, 0.1);
}
.formulirbuket-payment-box h5,
.formulirfoto-payment-box h5 {
font-weight: 600;
color: var(--bs-black);
font-size: var(--subheading-font);
}
.formulirbuket-payment-box .text-muted,
.formulirfoto-payment-box .text-muted {
font-weight: 500;
font-size: 0.95rem;
color: black !important;
}
/* 3. Teks Instruksi ("Transfer ke Rekening Berikut", "Upload Bukti") */
.formulirbuket-payment-box p.small,
.formulirfoto-payment-box p.small {
font-weight: 600;
/* Bold */
color: var(--bs-heading-color);
font-size: var(--subheading-font);
margin-bottom: 10px;
display: block;
}
.formulirbuket-payment-box .d-flex.justify-content-between.mb-4 {
border-bottom: 1px solid var(--bs-gray-300);
padding-bottom: 10px;
margin-bottom: 10px !important;
}
.formulirfoto-payment-box .d-flex.justify-content-between.mb-4 {
border-bottom: 1px solid var(--bs-gray-300);
border-top: 1px solid var(--bs-gray-300);
padding-bottom: 10px;
padding-top: 10px;
margin-bottom: 10px !important;
}
.formulirfoto-card,
.formulirbuket-card,
.formulirfoto-payment-box,
.formulirbuket-payment-box,
.formulirbuket-product-summary {
background: var(--bs-white);
border: 1px solid #e0e0e0;
border-radius: 12px;
padding: 20px;
}
.formulirbuket-product-summary {
padding: 10px;
}
.formulirbuket-product-summary img {
width: 60px;
height: 60px;
object-fit: cover;
}
/* Bank & Upload */
.formulirbuket-bank-card,
.formulirfoto-bank-card {
border: 1px solid #e0e0e0;
border-radius: 10px;
padding: 12px;
background: var(--bs-white);
}
.formulirbuket-upload-area,
.formulirfoto-upload-area {
border: 1.5px dashed var(--bs-gray-300);
border-radius: 12px;
background-color: var(--bs-gray-100);
transition: all 0.3s;
}
.formulirbuket-upload-area:hover,
.formulirfoto-upload-area:hover {
border-color: var(--bs-primary);
background-color: var(--bs-gray-200);
}
.formulirbuket-upload-area i {
font-size: 2rem;
color: var(--bs-gray-400);
margin-bottom: 5px;
display: inline-block;
transition: color 0.3s;
}
.formulirbuket-upload-area p.small {
font-weight: 600;
color: var(--bs-gray-600) !important;
font-size: 0.9rem;
margin-bottom: 2px;
}
.formulirbuket-upload-area p.x-small {
color: var(--bs-gray-500) !important;
font-size: var(--body-font);
}
p.x-small.text-muted.mb-4 {
font-size: var(--body-font);
color: var(--bs-gray-600) !important;
margin-top: 10px;
font-style: italic;
}
.bank-num {
font-weight: 700;
font-size: var(--nav-font) !important;
color: var(--bs-heading-color);
}
.bank-name {
font-weight: 500;
font-size: var(--body-font) !important;
color: var(--bs-gray-600);
}
.form-label.small {
font-weight: 600;
color: var(--bs-heading-color);
font-size: var(--subheading-font);
margin-bottom: 6px;
display: block;
}
.formulirbuket-input,
.formulirfoto-input {
background-color: #fff;
border: 1px solid var(--bs-gray-300);
border-radius: 12px;
padding: 12px 16px;
font-size: 0.95rem;
color: var(--bs-body-color);
width: 100%;
transition: all 0.3s ease-in-out;
}
.formulirbuket-input:focus,
.formulirfoto-input:focus {
background-color: #fff;
border-color: var(--bs-gray-500);
outline: none;
}
.formulirbuket-input::placeholder,
.formulirfoto-input::placeholder {
color: var(--bs-gray-600);
/* Abu muda */
font-size: 0.9rem;
font-weight: 400;
}
textarea.formulirbuket-input {
resize: vertical;
min-height: 80px;
}
input[type="date"].formulirbuket-input,
input[type="time"].formulirbuket-input {
cursor: pointer;
color: var(--bs-gray-600);
font-size: 0.9rem;
}
.summary-item {
display: flex;
flex-direction: column;
width: 100%;
margin-bottom: 8px;
}
.summary-row {
display: flex;
justify-content: space-between;
align-items: flex-start;
width: 100%;
}
.row-left {
display: flex;
gap: 5px;
text-align: left;
}
.summary-qty {
font-weight: 500;
white-space: nowrap;
font-size: var(--nav-font);
}
.summary-value {
text-align: right;
white-space: nowrap;
font-weight: 600;
margin-left: 10px;
font-size: var(--nav-font);
color: var(--bs-heading-color);
}
.summary-label {
display: block;
font-weight: 600;
font-size: var(--nav-font);
color: var(--bs-heading-color);
}
.summary-subtext {
text-align: left;
font-size: var(--nav-font);
padding-right: 15px;
flex: 1;
}
/* --- TOTAL ROW --- */
.summary-total {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid var(--bs-gray-300);
padding-top: 10px;
}
.total-price {
font-weight: 800;
font-size: 1.4rem;
color: var(--bs-primary);
/* Warna Teal */
margin-bottom: 0;
}
.formulirbuket-btn-submit,
.formulirfoto-btn-submit {
background-color: var(--bs-primary);
color: var(--bs-white);
width: 100%;
padding: 12px;
border-radius: 50px;
border: none;
font-weight: 500;
}
.formulirbuket-btn-submit:hover,
.formulirfoto-btn-submit:hover {
background-color: var(--bs-primary-hover);
}
.formulirbuket-btn-cancel,
.formulirfoto-btn-cancel {
background-color: var(--bs-white);
color: var(--bs-primary);
font-weight: 500;
width: 100%;
font-size: var(--body-font);
padding: 12px;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
display: block;
}
.formulirbuket-btn-cancel:hover,
.formulirfoto-btn-cancel:hover {
background-color: var(--bs-gray-100);
color: var(--bs-white);
}
/* =========================================
9. FAQ SECTION (Fixes)
========================================= */
.faq__v2 h2 {
font-weight: 600;
font-size: 1.7rem;
color: var(--bs-heading-color);
}
.faq__v2 .subtitle {
background-color: rgba(var(--bs-secondary-rgb), 0.2);
color: var(--bs-primary);
padding: 5px 10px;
border-radius: 7px;
font-weight: 600;
font-size: 0.75rem;
}
.faq__v2 .custom-accordion .accordion-item {
border: none;
margin-bottom: 6px;
border-radius: 10px;
overflow: hidden;
transition: 0.3s all ease-in-out;
border: 1px solid var(--bs-gray-200);
}
.faq__v2 .custom-accordion .accordion-button {
font-size: 1rem;
font-weight: 500;
color: var(--bs-heading-color);
padding: 12px 20px;
border: none;
outline: none;
}
.faq__v2 .custom-accordion .accordion-button:focus {
box-shadow: none !important;
border-color: transparent;
}
.faq__v2 .custom-accordion .accordion-button:not(.collapsed) {
background-color: transparent;
color: black;
box-shadow: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
/* Icon */
.faq__v2 .custom-accordion .accordion-button::after {
content: "\f4fe";
font-family: "bootstrap-icons";
color: black;
font-size: 30px;
background-image: none;
transform: rotate(0deg);
width: auto;
height: auto;
}
.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
content: "\f2ea";
transform: rotate(0deg);
}
/* =========================================
10. FOOTER & UTILS
========================================= */
.footer {
background-color: rgba(var(--bs-primary-rgb), 0.05);
color: var(--bs-heading-color);
font-size: 0.9rem;
}
.footer-menu li {
margin-bottom: 10px;
}
.footer-menu li:last-child {
margin-bottom: 0;
}
.footer-menu a {
color: var(--bs-black);
text-decoration: none;
}
.footer-menu a:hover {
color: var(--bs-primary-hover);
}
.copyright-bar {
background-color: var(--bs-primary);
color: var(--bs-white);
}
/* --- SOCIAL ICONS --- */
.social-icon {
font-size: 1.2rem;
color: var(--bs-heading-color);
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
}
.social-icon:hover {
color: var(--bs-heading-color);
background-color: var(--bs-white);
transform: translateY(-3px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* =========================================
11. BACK TO TOP BUTTON
========================================= */
.back-to-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 996;
background: var(--bs-primary);
width: 44px;
height: 44px;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s;
}
.back-to-top i {
font-size: 28px;
color: var(--bs-white);
line-height: 0;
}
.back-to-top:hover {
background: var(--bs-primary-hover);
transform: translateY(-3px);
}
.back-to-top.active {
visibility: visible;
opacity: 1;
bottom: 30px;
}
/* SLIDER RANGE FIX (Black Handles & Track) */
.noUi-connect {
background: var(--bs-black);
/* Batang Hitam */
}
.noUi-horizontal {
height: 6px;
border: none;
background: var(--bs-gray-200);
/* Track Abu */
}
.noUi-handle {
background: var(--bs-black);
border: 2px solid var(--bs-white);
border-radius: 50%;
width: 18px !important;
height: 18px !important;
right: -9px !important;
top: -6px !important;
/* Fix Posisi Vertikal */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
cursor: pointer;
}
.noUi-handle:before,
.noUi-handle:after {
display: none;
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.fade-in-right {
animation: slideInRight 0.5s ease forwards;
}