@import "bootstrap";

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d0d0d !important;
    color: #c9ac43 !important;
    font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif !important;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.05);
}

.btn-gold {
    border: 2px solid #b99a3c;
    color: #b99a3c;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-gold:hover {
    background-color: #b99a3c;
    color: #000;
    box-shadow: 0 4px 8px #b99a3c;
    transform: scale(1.1);
}

.dyn-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dyn-card-r:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px #b99a3c;
}

.dyn-card-l:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px #b99a3c;
}

.dyn-card-c:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px 5px #b99a3c;
}

.icon-size {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.text-link-gold {
    color: #b99a3c;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.text-link-gold:hover {
    color: #ffd34f;
}

.text-link-white {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.text-link-white:hover {
    color: rgb(255, 255, 255, .8);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .5) !important;
    opacity: 1 !important;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: rgba(255, 255, 255, .8) !important;
}

.modal-content {
    color: #b99a3c !important;
}

.upload-btn {
    cursor: pointer;
    border: 2px dashed #b99a3c;
    border-radius: 1rem;
    padding: 1rem 2.5rem;
    color: #b99a3c;
    font-weight: 500;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.upload-btn:hover,
.upload-btn:focus {
    background-color: rgba(185, 154, 60, 0.15);
    box-shadow: 0 0 10px #b99a3c;
    outline: none;
}

.dragover {
    background-color: rgba(185, 154, 60, 0.15);
    box-shadow: 0 0 10px #b99a3c;
    outline: none;
}

.upload-text {
    font-size: 1rem;
}

.bg-gold {
    background-color: #b99a3c !important;
    color: #0d0d0d !important;
}