/* Custom styles for Bootstrap starter page */

/* Color scheme */
:root {
    --primary: #1a1843;      /* Deep Blue Shadow */
    --secondary: #e048c4;     /* Vibrant Pink */
    --success: #fff7c7;       /* Cream Yellow */
    --danger: #db2a23;        /* Fire Red */
    --warning: #f3964f;       /* Soft Orange */
    --info: #86cad8;          /* Sky Teal */
}

/* Navbar styles */
.navbar {
    background-color: var(--secondary) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand,
.navbar-nav .nav-link {
    color: rgb(0, 0, 0) !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--success) !important;
    transition: color 0.3s ease;
}

/* Active state for navigation links */
.navbar-nav .nav-link.active {
    color: var(--success) !important;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler {
    border-color: white !important;
}

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

/* Font imports */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: "lieberuth", sans-serif;
    font-style: normal;
}

/* Heading styles */
h1, h2, h3 {
    font-family: "jumble", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}
.logo-font{
    font-family: "jumble", sans-serif !important;
     font-weight: 400;
    font-style: normal;
}

.title {
    font-family: "jumble", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    color: var(--secondary);
    font-size: 5rem;
}

.cover {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #ff4500 100%);
    color: rgb(0, 0, 0);
    padding: 0;
    margin: 5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monster-image {
    width: 85%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.cover-content {
    padding: 2rem;
    text-align: left;
    font-family: "lieberuth", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo-image {
    max-width: 100%;
    height: auto;
}

.card {
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} 