﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@font-face {
    font-family: "Acme", sans-serif;
    src: url('Acme-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

/* Provide sufficient contrast against white background */
.btn-primary {
    color: #B18904;
    background-color: #2A0A0A;
    border-color: #B18904;
    
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

/*.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
*/
button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}


body {
    background-image: url(../images/GrassBackground.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    color: white;
    text-shadow: 3px 3px black;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.transparent {
    background: #7f7f7f;
    background: rgba(0,0,0,0.5);
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}


a.navbar-brand {
    white-space: normal;
    text-align: left;
    word-break: break-all;
}


/* Modify brand and text color */
.navbar-brand,
.navbar-text,
.navbar-nav,
.navbar-toggler,
.icon-bar,
.navbar-toggler-icon,
.navbar-toggleable-sm,
.navbar-expand-sm,
.nav-link,
.nav-dropdown,
.dropdown-menu,
.collapse.navbar-text {
    font-size: 28px;
    color: #B18904;
    background-color: #2A0A0A;
    border-color: #B18904;
}

.navbar-brand:hover {
    color: goldenrod;
    background-color: #2A0A0A;
}

.nav-pills .nav-pills .show {
    color: goldenrod;
    background-color: #2A0A0A;
    border-color: #2A0A0A;
}

.nav-link:hover {
    color: goldenrod;
    background-color: #3C1D1E;
}

.navbar-custom {
    background-color: #2A0A0A;
    color: #B18904;
    border-color: #B18904;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(177, 137, 4, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.card {
    color: white;
    background-color: #2A0A0A;
    border: solid;
    border-color: darkgoldenrod;
    border-radius: 10px; /* Add this line to round the corners */
    overflow: hidden; /* Add this to ensure content doesn't overflow rounded corners */
}

.card-body {
    color: white;
    background: linear-gradient(to bottom, #2A0A0A, #401010); /* Dark brown to slightly lighter brown */
    border-radius: 10px;
}

.card-title {
    color: #B18904;
    background-color: #2A0A0A;
    font-size: 20px;
    text-align: center;
    border: solid;
    border-color: black;
    border-width: thin;
    border-radius: 10px;
}

.card-text {
    font-size: 16px;
    text-align: center;
    color: black;
    background-color: white;
}

thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
    background-color: #2A0A0A;
    color: goldenrod;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

.currency-input {
    text-align: right;
}

/* CKEditor content: force readable font, color, remove inherited text-shadow */
.ck-editor__editable,
.ck-editor__editable_inline,
.ck-content {
    color: #000 !important;           /* use dark text */
    text-shadow: none !important;     /* remove large shadows inherited from body */
    font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    background: transparent;          /* keep editor background consistent */
}

