/* Global Overrides */
body {
    font-family: 'Jost', sans-serif;
    /* Exact font from site */
    background-color: #fff;
}

/* Header */
.navbar {
    background-color: rgba(0, 0, 0, 0.8) !important;
    /* Semi-transparent dark */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    position: absolute;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
    height: 50px;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: top center;
    /* Focus on the face */
    height: 600px;
    /* Taller hero */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Typography */
h1 {
    font-weight: 700;
    color: #333;
}

/* Slick Slider Customization */
.slick-prev:before,
.slick-next:before {
    color: #333;
}

.slick-slide {
    height: auto;
    margin: 0 10px;
    /* Spacing between cards */
}

.profile-slider .card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border-radius: 10px;
    overflow: hidden;
}

/* Buttons */
.btn-success {
    background-color: #25d366 !important;
    /* WhatsApp Green */
    border-color: #25d366 !important;
    font-weight: 500;
}

.btn-danger {
    background-color: #ff3b30 !important;
    /* Exact Red */
    border-color: #ff3b30 !important;
    font-weight: 500;
}

.btn {
    border-radius: 5px;
    padding: 8px 15px;
}

/* Footer */
footer {
    background-color: #111 !important;
    /* Darker footer */
}

.hover-white:hover {
    color: #fff !important;
}

/* Form */
.card.shadow-sm {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px;
}

.form-control,
.form-select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    box-shadow: none;
    border-color: #ddd;
}