@font-face {
    font-family: Shoulders-regular;
    src: url('../Fonts/Big_Shoulders_Stencil/static/BigShouldersStencil-Regular.ttf');
}
@font-face {
    font-family: Shoulders-bold;
    src: url('../Fonts/Big_Shoulders_Stencil/static/BigShouldersStencil-Bold.ttf');
}
@font-face {
    font-family: Shoulders-light;
    src: url('../Fonts/Big_Shoulders_Stencil/static/BigShouldersStencil-Light.ttf');
}
*{
    font-family: 'Shoulders-regular';
    margin: 0;
    box-shadow: 0;
    color: #b99a45; /* Default text color */
}
/* Website Color Palette */

/* Background Colors */
body {
    background-color: #000000; /* Main background */
    background-image: url("../Images/front_page_title.webp");
}

.navbar {
    background-color: #000000; /* Navbar background */
}

.dropdown-menu {
    background-color: #1a1a1a; /* Submenu background */
    color: #C7AE6A;
}
.dropdown-menu .dropdown-item {
    color: #C7AE6A;
}
.dropdown-menu .dropdown-item:hover {
    color: #000;
}
.dropdown-menu .dropdown-item:active {
    background-color: #b99a45;
    color: #000;
}

/* Text Colors */
h1, h2, h3 {
    color: #C7AE6A; /* Headings */
}
h4, h5, h6 {
    color: #d5c28f; /* Subheadings */
}
p {
    color: #b99a45; /* Paragraph text */
}
/* Links */
a {
    color: #C7AE6A; /* Link color */
    text-decoration: none;
}
a:hover {
    color: #d5c28f; /* Lighter shade on hover */
}

/* Buttons */
.btn-primary {
    background-color: #C7AE6A;
    border-color: #C7AE6A;
    color: #000000;
}

.btn-primary:hover {
    background-color: #d5c28f;
    border-color: #d5c28f;
}

/* Heder submenus */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInLeft 0.4s ease-in-out forwards;
    /* top: 45px; */
}
/* Keyframes for fade-in from left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Optional: Adjust submenu positioning */
.dropdown-menu {
    display: none;
    opacity: 0; /* Initially hidden */
    transform: translateX(-15px); /* Start position */
}
.custom-card {
    background-color: #474747; /* Light grey card background */
    border-radius: 20px; /* Rounded corners for cards */
    padding: 20px;
    height: 100%; /* Full height for consistent layout */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}
/* Footer */
.footer {
    background-color: #000000;
    color: #b99a45;
    padding: 20px;
    text-align: center;
}