/* CV Utami — professional theme overrides */

:root {
    --utami-charcoal: #1a1d23;
    --utami-ink: #2a2e36;
    --utami-burgundy: #9b1b30;
    --utami-burgundy-dark: #7a1526;
    --utami-gold: #c9a227;
    --utami-gold-soft: #e8d48b;
    --utami-muted: #6b7280;
    --utami-line: #e8e4df;
    --utami-paper: #f7f4ef;
    --utami-white: #ffffff;
}

body {
    font-family: 'Source Sans 3', 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.navbar-fixed-top .navbar-nav > li > a,
.btn-white,
.btn-white-border {
    font-family: 'Cormorant Garamond', 'Cabin', Georgia, serif;
}

/* ---------- NAVBAR ---------- */

.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}

.navbar-brand {
    letter-spacing: 0.5px;
    font-weight: 600;
}

.navbar-brand i {
    color: var(--utami-gold);
    margin-right: 8px;
    font-size: 22px;
}

.navbar-fixed-top.opaque {
    padding: 10px 0;
    box-shadow: 0 8px 24px rgba(26, 29, 35, 0.08);
    border-bottom: 1px solid var(--utami-line);
}

.navbar-fixed-top.opaque .navbar-brand {
    color: var(--utami-charcoal) !important;
}

.navbar-fixed-top.opaque .navbar-brand i {
    color: var(--utami-burgundy);
}

.navbar-fixed-top #navbar-collapse-02 .current a,
.navbar-fixed-top .navbar-nav > li > a:hover {
    color: var(--utami-gold-soft) !important;
}

.navbar-fixed-top.opaque #navbar-collapse-02 .current a,
.navbar-fixed-top.opaque .navbar-nav > li > a:hover {
    color: var(--utami-burgundy) !important;
}

.navbar-fixed-top .navbar-nav > li > a {
    font-size: 13px !important;
    letter-spacing: 1px;
    padding: 8px 14px !important;
}

.navbar-fixed-top .navbar-nav > li > a.discover-btn {
    background: var(--utami-burgundy);
    border: 1px solid var(--utami-burgundy);
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 18px !important;
}

.navbar-fixed-top .navbar-nav > li > a.discover-btn:hover,
.navbar-fixed-top.opaque .navbar-nav > li > a.discover-btn {
    background: var(--utami-burgundy);
    border-color: var(--utami-burgundy);
    color: #fff !important;
}

.navbar-fixed-top.opaque .navbar-nav > li > a.discover-btn:hover,
.navbar-fixed-top.opaque #navbar-collapse-02 .current a.discover-btn {
    background: var(--utami-burgundy-dark);
    color: #fff !important;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-fixed-top.opaque .navbar-toggle .icon-bar {
    background-color: var(--utami-charcoal);
}

/* ---------- HERO ---------- */

.home-section {
    padding-top: 200px;
    padding-bottom: 180px;
}

.home-section-overlay {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.88) 0%, rgba(155, 27, 48, 0.72) 100%);
    background-size: cover;
    animation: none;
    opacity: 1;
}

.home-section h1 {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: none;
    margin-bottom: 18px;
}

.home-section p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.home-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--utami-gold-soft);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.btn-white,
.btn-white-border {
    border-radius: 4px;
    letter-spacing: 0.6px;
    font-size: 16px;
}

.btn-white {
    color: var(--utami-burgundy);
}

.btn-white:hover {
    color: #fff;
    background: transparent;
}

.btn-white-border:hover {
    color: var(--utami-burgundy);
}

/* ---------- SERVICES ---------- */

#services.section-grey {
    background: var(--utami-paper);
}

h2.section-title {
    font-weight: 600;
    letter-spacing: 0.4px;
}

p.section-subtitle {
    color: var(--utami-muted);
}

.main-services {
    position: relative;
    margin-top: 30px;
    padding: 0 0 32px;
    background: var(--utami-white);
    border: 1px solid var(--utami-line);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(26, 29, 35, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-services:hover {
    margin-top: 30px;
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(26, 29, 35, 0.1);
}

.main-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    background: var(--svc-accent, var(--utami-burgundy));
}

.service-visual {
    position: relative;
    height: 188px;
    overflow: hidden;
}

.main-services .service-visual img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0 !important;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.main-services:hover .service-visual img {
    transform: scale(1.06);
}

.service-visual::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.28), transparent);
}

.service-icon {
    position: absolute;
    left: 50%;
    bottom: -28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 0 0 -28px;
    border-radius: 50%;
    background: #fff;
    color: var(--svc-accent, var(--utami-burgundy));
    border: 2px solid var(--svc-accent, var(--utami-burgundy));
    box-shadow: 0 8px 18px rgba(26, 29, 35, 0.12);
}

.service-icon i {
    font-size: 20px;
}

.service-body {
    padding: 42px 26px 0;
}

.main-services h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.main-services p {
    min-height: 84px;
    color: var(--utami-muted);
    font-size: 15px;
    line-height: 1.65;
}

.svc-catering { --svc-accent: #9b1b30; --svc-soft: rgba(155, 27, 48, 0.1); }
.svc-dekorasi { --svc-accent: #b8860b; --svc-soft: rgba(201, 162, 39, 0.14); }
.svc-florist { --svc-accent: #3d7a4a; --svc-soft: rgba(61, 122, 74, 0.12); }
.svc-jurnal { --svc-accent: #8b3a4a; --svc-soft: rgba(139, 58, 74, 0.12); }
.svc-penerbit { --svc-accent: #3f4f7a; --svc-soft: rgba(63, 79, 122, 0.12); }
.svc-website { --svc-accent: #2f4858; --svc-soft: rgba(47, 72, 88, 0.12); }

.btn-service {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 22px;
    border: 1px solid var(--svc-accent, var(--utami-burgundy));
    border-radius: 4px;
    color: var(--svc-accent, var(--utami-burgundy));
    background: transparent;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}

.btn-service:hover,
.btn-service:focus {
    color: #fff;
    background: var(--svc-accent, var(--utami-burgundy));
}

.btn-service i {
    margin-right: 6px;
}

/* ---------- TESTIMONIALS ---------- */

#testimonials.section-lyla {
    position: relative;
    background: var(--utami-charcoal) !important;
}

#testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.82), rgba(155, 27, 48, 0.55));
}

#testimonials .container {
    position: relative;
    z-index: 1;
}

.testim-inner {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 36px 28px 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.testim-inner p,
.testim-inner h6 {
    color: var(--utami-ink) !important;
    text-shadow: none !important;
}

.testim-img {
    border: 3px solid var(--utami-gold);
}

/* ---------- FEATURES ---------- */

.feature-box i {
    border-radius: 12px;
    background: var(--utami-burgundy);
}

.feature-box.light-green i,
.feature-box.light-blue i,
.feature-box.orange i,
.feature-box.dark-green i,
.feature-box.dark-blue i,
.feature-box.light-red i {
    background: var(--utami-burgundy);
}

.feature-box.light-blue i { background: #8b3a4a; }
.feature-box.orange i { background: #b8860b; }
.feature-box.dark-green i { background: #3d7a4a; }
.feature-box.dark-blue i { background: #3f4f7a; }
.feature-box.light-red i { background: #2f4858; }

/* ---------- TEAM ---------- */

.team-item {
    padding: 24px 16px;
    border: 1px solid var(--utami-line);
    border-radius: 10px;
    background: #fff;
}

.team-img {
    border: 3px solid var(--utami-line);
}

.team-item h3 {
    font-size: 22px;
    letter-spacing: 0.6px;
}

/* ---------- FAQ ---------- */

#faq .faq-visual {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(26, 29, 35, 0.08);
}

.panel-default {
    border: 1px solid var(--utami-line);
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: none;
}

.panel-title a,
.panel-title a:hover,
.panel-title a:focus {
    color: var(--utami-charcoal);
}

.panel-icon {
    color: var(--utami-burgundy) !important;
    margin-right: 8px;
}

/* ---------- FOOTER ---------- */

.footer {
    background: var(--utami-charcoal);
    border-top: 3px solid var(--utami-burgundy);
    padding: 40px 0;
}

.footer p {
    color: #c5c7cc;
    margin-bottom: 12px;
}

.footer p a {
    color: var(--utami-gold);
    text-decoration: none;
}

.footer p a:hover {
    color: var(--utami-gold-soft);
}

ul.footer_social li a i {
    font-size: 22px !important;
    color: #c5c7cc;
}

ul.footer_social li a i:hover {
    color: var(--utami-gold);
}

@media (max-width: 767px) {
    .home-section {
        padding-top: 150px;
        padding-bottom: 110px;
    }

    .home-section h1 {
        font-size: 34px;
    }

    .main-services p {
        min-height: 0;
    }

    .service-visual {
        height: 168px;
    }

    .navbar-fixed-top .navbar-nav > li > a.discover-btn {
        margin: 8px 15px 12px;
        display: inline-block;
    }
}
