/* =============================================================================
   SiDDiQUiE.NET — Globale Stylesheet
   Alle CSS geconsolideerd uit de afzonderlijke pagina's.
   Elke sectie vermeldt op welke pagina('s) de stijl wordt gebruikt.
   ============================================================================= */


/* =============================================================================
   GLOBAAL — Alle pagina's
   ============================================================================= */

html, body {
    overflow-x: hidden;
    max-width: 100%;
    background: #0c0c0c; /* Zorgt dat lege ruimte onder footer donker is */
}

:root {
    --gold:  #c9922a;
    --gold2: #e8b84b;
}

.gold { color: var(--gold); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: .75rem 2.5rem;
    font-size: 1rem;
    transition: .2s;
}
.btn-gold:hover { opacity: .9; color: #fff; transform: translateY(-1px); }


/* =============================================================================
   NAVBAR — page/inc/navbar.php
   ============================================================================= */

@media screen {
    body {
        padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}

.sh-navbar {
    background: linear-gradient(135deg, #080808 0%, #111111 60%, #1a0f00 100%) !important;
    border-bottom: none;
    height: calc(env(safe-area-inset-top, 0px) + 60px);
    padding-top: env(safe-area-inset-top, 0px) !important;
    align-items: flex-end !important;
}
.sh-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9922a 30%, #e8b84b 50%, #c9922a 70%, transparent);
}
.sh-navbar .navbar-brand img { height: 42px; }
.sh-navbar .navbar-brand span {
    font-family: 'Calibri', 'Candara', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.2rem;
    background: linear-gradient(90deg, #c9922a, #e8b84b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px rgba(201,146,42,.4);
}

.sh-navbar-toggle {
    background: rgba(201,146,42,.15);
    border: 1px solid rgba(201,146,42,.35);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9922a;
    font-size: 1.15rem;
    cursor: pointer;
    transition: .2s;
}
.sh-navbar-toggle:hover {
    background: rgba(201,146,42,.28);
    color: #e8b84b;
}

/* Sidebar (rechts uitschuivend menu) */
#sh-Modal-RightSidebar .modal-dialog {
    margin: 0;
    margin-left: auto;
    max-width: 300px;
    height: 100%;
    min-height: 100%;
}
#sh-Modal-RightSidebar .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
    background: #0d0d0d;
    border-left: 2px solid rgba(201,146,42,.25);
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}
#sh-Modal-RightSidebar .modal-header {
    background: linear-gradient(135deg, #080808, #1a0f00);
    border-bottom: 1px solid rgba(201,146,42,.25);
    padding: 1.2rem 1.5rem;
}
#sh-Modal-RightSidebar .modal-title {
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #c9922a, #e8b84b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#sh-Modal-RightSidebar .btn-close {
    filter: invert(1) brightness(1.5);
    opacity: .6;
}
#sh-Modal-RightSidebar .btn-close:hover { opacity: 1; }
#sh-Modal-RightSidebar .modal-body {
    padding: 1.2rem 1rem;
    overflow-y: auto;
}
#sh-Modal-RightSidebar .modal-footer {
    background: #080808;
    border-top: 1px solid rgba(201,146,42,.15);
    padding: 1rem 1.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    font-weight: 500;
    transition: .18s;
    margin-bottom: 4px;
}
.sidebar-link:hover {
    background: rgba(201,146,42,.12);
    color: #e8b84b;
}
.sidebar-link .si-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(201,146,42,.1);
    border: 1px solid rgba(201,146,42,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9922a;
    font-size: .85rem;
    flex-shrink: 0;
    transition: .18s;
}
.sidebar-link:hover .si-icon {
    background: rgba(201,146,42,.25);
    border-color: rgba(201,146,42,.5);
    color: #e8b84b;
}
.sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.07);
    margin: 10px 0;
}


/* =============================================================================
   HOME PAGE — page/Home.php
   ============================================================================= */

@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
.hero-float { animation: heroFloat 4s ease-in-out infinite; display: inline-block; }

.dienst-card {
    border: 2px solid transparent;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: .25s;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.dienst-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(201,146,42,.18);
    color: inherit;
}
.dienst-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}
.pakket-logo {
    height: 44px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: .2s;
}
.pakket-logo:hover { filter: grayscale(0%); transform: scale(1.05); }


/* =============================================================================
   CONTACT PAGE — page/nl/Contact.php
   ============================================================================= */

.contact-card {
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    transition: .22s;
}
.contact-card:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(201,146,42,.15); }
.contact-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(201,146,42,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(201,146,42,.2);
}
.form-control {
    border-radius: 10px;
    border: 1.5px solid #dee2e6;
    padding: .65rem 1rem;
}


/* =============================================================================
   TAXI DIENST — page/nl/TaxiDienst.php
   ============================================================================= */

@keyframes floatIcon {
    0%,100% { transform: translateY(0) rotate(-8deg); }
    50%      { transform: translateY(-10px) rotate(-8deg); }
}
.taxi-float { animation: floatIcon 3s ease-in-out infinite; display: inline-block; }

.tarief-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: .2s;
}
.tarief-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }

.badge-gold {
    background: rgba(201,146,42,.15);
    color: var(--gold);
    border: 1px solid rgba(201,146,42,.3);
}
.usp-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}


/* =============================================================================
   OPENINGSTIJDEN — page/nl/Openingstijden.php
   PAKKETDIENSTEN — page/nl/Pakketdiensten.php  (hours-card gedeeld)
   ============================================================================= */

.hours-card {
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    overflow: hidden;
    transition: .22s;
}
.hours-card:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(201,146,42,.15); }
.hours-card .card-head {
    background: linear-gradient(135deg,#1a1a1a,#2a1a00);
    color: #fff;
    padding: .85rem 1.25rem;
}
.hours-card .card-head .address { color: var(--gold2); font-size:.8rem; font-weight:500; }
.hours-table td { padding: .45rem .75rem; font-size: .9rem; border: none; }
.hours-table tr:nth-child(even) { background: rgba(201,146,42,.04); }
.hours-table .closed { color: #adb5bd; font-style: italic; }

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,146,42,.3), transparent);
    margin: 0;
}


/* =============================================================================
   PAKKETDIENSTEN — page/nl/Pakketdiensten.php
   ============================================================================= */

.carrier-card {
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transition: .22s;
    height: 100%;
}
.carrier-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,146,42,.14); }
.carrier-card .logo-wrap {
    height: 70px;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.carrier-card .logo-wrap img { max-height: 50px; max-width: 120px; object-fit: contain; }
.carrier-card .action-link {
    display: flex; align-items: center; gap: .4rem;
    font-size: .85rem; color: var(--gold); font-weight: 600;
    text-decoration: none;
    padding: .3rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.carrier-card .action-link:last-child { border-bottom: none; }
.carrier-card .action-link:hover { color: var(--gold2); }

.tip-box {
    border-radius: 14px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    background: #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,.06);
}


/* =============================================================================
   LAPTOP REPARATIE — page/nl/LaptopReparatie.php
   ============================================================================= */

@keyframes floatLaptop {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.laptop-float { animation: floatLaptop 4s ease-in-out infinite; display: inline-block; }

.price-table td { vertical-align: middle; padding: .65rem .75rem; }
.price-table tr:hover { background: rgba(201,146,42,.04); }
.price-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}


/* =============================================================================
   WEBHOSTING — page/nl/WebHosting.php
   REMOTE DESKTOP — page/nl/RemoteDesktop.php  (usp-box & feat-card gedeeld)
   ============================================================================= */

@keyframes floatServer {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.server-float { animation: floatServer 4s ease-in-out infinite; display: inline-block; }

@keyframes floatScreen {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.screen-float { animation: floatScreen 4s ease-in-out infinite; display: inline-block; }

.usp-box {
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,.06);
    transition: .2s;
}
.usp-box:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.10); }

.feat-card {
    border: 2px solid transparent;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: .25s;
}
.feat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(201,146,42,.15);
}
.feat-card .icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

/* Remote Desktop specifiek */
.screen-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
}
.screen-wrap img { display: block; width: 100%; }


/* =============================================================================
   PACKET TRACKING — page/nl/PacketTracking.php
   ============================================================================= */

.track-input {
    border: 2px solid rgba(201,146,42,.4);
    border-radius: 12px 0 0 12px;
    padding: .8rem 1.2rem;
    font-size: 1rem;
    outline: none;
    transition: .2s;
}
.track-input:focus { border-color: var(--gold); box-shadow: none; }

.btn-track {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    padding: .8rem 1.6rem;
    font-weight: 700;
    font-size: 1rem;
    transition: .2s;
    white-space: nowrap;
}
.btn-track:hover { opacity: .9; color: #fff; }

.status-card {
    border-radius: 18px;
    border: 2px solid transparent;
}
.status-card.available {
    border-color: rgba(25,135,84,.4);
    background: rgba(25,135,84,.06);
}
.status-card.notfound {
    border-color: rgba(201,146,42,.3);
    background: rgba(201,146,42,.05);
}


/* =============================================================================
   LINKS PAGINA — page/nl/Links.php
   ============================================================================= */

.link-card {
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transition: .22s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.link-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(201,146,42,.15);
    color: inherit;
}
.link-card .icon-wrap {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,.07);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.link-card .icon-wrap img {
    width: 32px; height: 32px;
    object-fit: contain;
}
.link-card .arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(201,146,42,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: .2s;
}
.link-card:hover .arrow {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
}

@keyframes floatChain {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-12px) rotate(-5deg); }
}


/* =============================================================================
   SLEUTELMAKER — page/nl/Diensten/SleutelMaker.php
   ============================================================================= */

.bg-gold { background: var(--gold); }

@keyframes key-float {
    0%,100% { transform: translateY(0) rotate(-10deg); }
    50%      { transform: translateY(-14px) rotate(-5deg); }
}
.key-hero {
    font-size: 9rem;
    line-height: 1;
    display: inline-block;
    animation: key-float 3s ease-in-out infinite;
}

.type-card {
    border-left: 4px solid transparent !important;
    transition: .25s;
}
.type-card:hover {
    border-left-color: var(--gold) !important;
    transform: translateX(4px);
}

@keyframes badge-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.float-badge { animation: badge-float 2s ease-in-out infinite; }

.step-num { position: relative; }
.step-wrap + .step-wrap .step-num::before {
    content: '';
    position: absolute;
    top: 50%; left: -100%;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
