/* ========================================
   WILDCOCK RESPONSIVE BOOTSTRAP STYLESHEET
   ======================================== */

/* Root Styles */
:root {
    --primary-color: #fa4c29;
    --primary-dark: #d03f22;
    --bg-dark: #0b0b0b;
    --text-light: #aaa;
    --text-white: #fff;
    --border-warning: #ffc107;
}

/* ========================================
   BASE STYLES
   ======================================== */

html, body {
    height: 100%;
}

body {
    color: var(--text-light);
    font: 14px/1.6 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    background-color: var(--bg-dark);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', 'OpenSansExtrabold', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 1rem;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 15px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

#navbarMenu > ul > li.nav-item.mr-3  {
    margin-right: 0em !important;
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

#header {
    background-color: #1a1a1a !important;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#header .navbar-brand {
    padding: 0.5rem 0 !important;
    margin-right: 2rem;
}

#header .navbar-brand img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

#header .navbar-brand:hover img {
    transform: scale(1.05);
}

#navbarMenu {
    justify-content: flex-end;
}

#navbarMenu .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

#navbarMenu .nav-link:hover,
#navbarMenu .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

/* Hamburger menu styling */
.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23fa4c29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   FOOTER
   ======================================== */

#footer {
    background-color: #1a1a1a !important;
    border-top: 2px solid var(--primary-color);
    margin-top: 50px;
}

#footer a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-color);
}

#footer .copyright {
    font-size: 12px;
    color: #666;
    margin-top: 1rem;
}

/* ========================================
   PAGE HEADER
   ======================================== */

#page-header {
    background-color: #1a1a1a;
}

#page-header .page-title {
    font-size: 36px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

#page-header .page-subtitle {
    font-size: 18px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn, button, input[type="submit"] {
    font-family: 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-weight: 800;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-warning, .btn-primary {
    background: linear-gradient(to bottom, #ffb37c 0%, #fa4c29 4%, #d03f22 100%);
    border-color: #1b1b1b;
    color: var(--text-white);
    font-weight: 800;
}

.btn-warning:hover, .btn-primary:hover {
    background: linear-gradient(to bottom, #ffb37c 0%, #ea401e 4%, #bb3317 100%);
    border-color: #1b1b1b;
    color: var(--text-white);
}

.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

#main-content {
    min-height: 400px;
}

.content-body {
    line-height: 1.8;
    color: var(--text-light);
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body h2,
.content-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ========================================
   LIST GROUPS & CARDS
   ======================================== */

.list-group-item {
    background-color: #1a1a1a;
    border-color: #333;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #252525;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.list-group-item h5 {
    color: var(--text-white);
}

.card {
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(250, 76, 41, 0.2);
}

.card-body {
    background-color: #1a1a1a;
}

.card-title {
    color: var(--text-white);
    font-weight: 800;
}

.card-text {
    color: var(--text-light);
}

/* ========================================
   GALLERY GRID
   ======================================== */

.gallerij {
    margin-top: 30px;
}

.fotoalbum {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.fotoalbum:hover {
    transform: scale(1.02);
}

/* ========================================
   IMAGE GALLERY COMPONENT
   ======================================== */

.image-gallery {
    margin: 30px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background: #333;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(250, 76, 41, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   LIGHTBOX STYLES
   ======================================== */

[x-cloak] {
    display: none !important;
}

/* ========================================
   FORMS & INPUTS
   ======================================== */

input, textarea, select {
    background-color: #1a1a1a;
    color: var(--text-light);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    background-color: #252525;
    color: var(--text-white);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 76, 41, 0.1);
}

/* ========================================
   BADGES
   ======================================== */

.badge-warning {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 800;
    font-size: 16px;
    padding: 0.5rem 1rem;
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
    border-radius: 4px;
}

.alert-info {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: var(--text-light);
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */

/* Extra Small (Mobile) */
@media (max-width: 575.98px) {
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    h3 { font-size: 16px; }

    #header .navbar-brand {
        margin-right: 0;
    }

    #navbarMenu .navbar-nav {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    #navbarMenu .nav-item {
        width: 100%;
    }

    #navbarMenu .nav-item:first-child {
        display: flex;
        justify-content: center;
    }

    #main-content {
        padding: 15px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    #footer {
        margin-top: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .list-group-item .row {
        flex-direction: column;
    }

    .text-sm-right {
        text-align: left;
        margin-top: 10px;
    }
}

/* Small (Landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    #navbarMenu .nav-link {
        font-size: 14px;
    }
}

/* Medium (Tablets) */
@media (min-width: 768px) {
    #header .navbar-brand {
        margin-right: 3rem;
    }

    #navbarMenu {
        margin-top: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Large (Desktops) */
@media (min-width: 992px) {
    .page-title {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Extra Large (Large desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-muted {
    color: #666 !important;
}

.border-warning {
    border-color: var(--border-warning) !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.mt-5, .my-5 {
    margin-top: 3rem !important;
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    #header, #footer, .no-print {
        display: none;
    }

    body {
        background-color: white;
        color: #000;
    }
}
