/* Dark Theme (default) */
:root {
    --bg-color: #121212;
    --bg-secondary: #081825;
    --text-color: #f8f9fa;

    --navbar-bg: #000000;
    --navbar-text: #f8f9fa;

    --header-bg: #0e2a41; /* Primary color for header */

    --card-bg: #1e1e1e;
    --card-text: #f8f9fa;
    --card-border: rgba(255, 255, 255, 0.253);

    --footer-bg: #000000;
    --footer-text: #f8f9fa;

    --primary-color: #2368a0; /* 297dc2 primary color */
    --primary-color-hover: #174c77; /* Hover color for primary elements */
}

/* Light Theme */
[data-theme="light"] {
    

    --bg-color: #ffffff;
    --bg-secondary: #d5dfe9;
    --text-color: #212529;

    --navbar-bg: #232d36;
    --navbar-text: #ffffff;

    --header-bg: #2368a0; /* Primary color for header */

    --card-bg: #ffffff;
    --card-text: #212529;
    --card-border: rgba(0, 0, 0, 0.125);

    --footer-bg: #232d36;
    --footer-text: #ffffff;

    --primary-color: #16476e; /* 16476e primary color */
    --primary-color-hover: #1d6096; /* Hover color for primary elements */
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.txt-color-global {
    color: var(--text-color) !important;
}

.btn-primary:hover {
    background-color: var(--primary-color-hover) !important;
    /* Replace #123456 with your desired hover color */
    border-color: var(--primary-color) !important;
    /* Match the border color to the hover background */
}

#photography .card-img-top {
    border-radius: 0.3rem;
    /* Adjust the value as needed */
}