:root{
  --bs-font-sans-serif: "Roboto", system-ui;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-weight: 400;
  --navbar-height: 64px;    /* you already use this concept in #navbar */
  --first-header-gap: 28px; /* breathing room under navbar */
}

h1, h2{
    font-weight: 400;
}

body {
    background-color: #c9a137;
}

#img-div {
    display: flex;
    align-items: center;
    justify-content: center;
}
#two-col-img {
    max-height: 100%;
    max-width: 100%;
}
.first-header {
    padding-top: calc(var(--navbar-height) + var(--first-header-gap));
    text-align: center;
    padding-bottom: 16px;
    color: #333;
}

body, html {
    margin: 0;
    padding: 0;
}

.parallax {
    /* The image used */
    background-image: url('https://lh3.googleusercontent.com/pw/AJFCJaW3ATsp_1V99tiBvgnw6OMFFcnJHDB9-GQ172tq73nvODNYYjkF1Y4n85J0AH2pdR_w3IZv0r7FV-q4BQt4qunXdzmIzwuRIFS5KQmhvQeLp2WHMYgJlykMNYugTdMKwj0qBVq7uE8O1zeAtOmVx0qNBQ=w1024-h768-s-no?authuser=0');

    /* Set a specific height */
    min-height: 100vh; /* Use vh for full viewport height */

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center; /* This aligns the child vertically */
    justify-content: center; /* This aligns the child horizontally */
}

/* Media query for horizontal mobile view */
@media screen and (max-width: 932px) and (orientation: landscape) {
    .parallax {
        min-height: 150vh; /* Increase the height for horizontal view */
        /* Additional styling if needed */
    }
}

.parallax-content {
    /* Position and style your content */
    position: relative;
    z-index: 1;
    padding: 100px;
    background: rgba(255, 255, 255, 0.3);
    max-width: 80%; /* or whatever width you want */
    margin: 0 auto;
    text-align: center;
}

#main-logo {
    width: 100%; /* You can set this to 100% if you want it full width */
    max-width: 100%; /* Make sure it's responsive */
    height: auto; /* Keep the aspect ratio */
}

/* Container for the shop button on the home page */
.button-container {
    margin-top: 20px; /* Adjust the space between the logo and the button */
    text-align: center; /* Center-align the button */
}

@media (max-width: 767px) {
    #two-col-img {
        padding-bottom: 25px;
    }
}

/* Message Alerts */
.alert {
    margin-top: 65px;
}
  
/* Tables */
.table{
  --bs-table-bg: #c9a137;
  --bs-table-striped-bg: rgba(255,255,255,0.08);
  --bs-table-hover-bg: rgba(0,0,0,0.06);
  --bs-table-border-color: rgba(34,34,45,0.25);
  color: #22222d;
}

table tr {
    color: #22222d;
    border-color: #22222d;
}

/* Forms */
.form-group {
    padding-bottom: 5px;
}

/* BTN */
.btn {
    background-color: white;
    color: #22222d;
    border: 0px solid #234d34;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 25px;
    box-shadow: 3px 3px 5px 0.8px gray;
    margin-bottom: 15px;
    padding: 0.8rem 1.4rem;   /* more space around text */
    line-height: 1.4;         /* prevents cramped vertical feel */
}

.btn:hover {
    background-color: #234d34;
    color: white;
}

.btn:active {
    box-shadow: 3px 3px 2px 0.5px gray;
}

/* NAVBAR */
/* ******************************* */
:root {
    --navbar-bg-color: #22222d;
    --navbar-text-color: white;
    --navbar-text-color-focus: #22222d;
    --navbar-bg-contrast: orange;
}

#navbar {
    --navbar-height: 64px;
    position: fixed;
    height: var(--navbar-height);
    background-color: var(--navbar-bg-color);
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.home-link,
.navbar-link {
    color: var(--navbar-text-color);
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    font-weight: bold;
    align-items: center;
    transition: background-color 0.2s ease-in-out,
                color 0.2s ease-in-out;
}

.home-link:focus,
.home-link:hover {
    color: var(--navbar-text-color-focus);
}

.navbar-link {
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;    
}

.navbar-link:focus,
.navbar-link:hover {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
}

.navbar-logo {
    /*background-color: var(--navbar-text-color-focus);*/
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 0.5em;
}

.navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 2px;
    transition: background-color 0.2s ease-in-out,
                transform 0.2s ease-in-out,
                opacity 0.2s ease-in-out;
    background-color: var(--navbar-text-color);
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
    background-color: white;
    /*background-color: var(--navbar-text-color-focus);*/
}


#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
    position: absolute;
    margin: 0;
    width: 30px;
}

#navbar.opened .navbar-toggle .icon-bar:first-child {
    transform: rotate(45deg);
}

#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0;
}

#navbar.opened .navbar-toggle .icon-bar:last-child {
    transform: rotate(-45deg);
}

#navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    bottom: 0;
    transition: opacity 0.2s ease-in-out,
                visibility 0.2s ease-in-out,
                left 0.2s ease-in-out,
                right 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

#navbar-menu.attached {
    left: 0;
    right: 0;
}

#navbar.opened #navbar-menu {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
    visibility: visible;
}

.navbar-links {
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#navbar.opened .navbar-links {
    padding: 1em;
    max-height: none;
}

.sidebar .navbar-links {
    top: 0;
    bottom: 0;
}

.attached .navbar-links {
    left: 0;
    right: 0;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4);
}

.navbar-item {
    margin: 0.4em;
    width: 100%;
}

@media screen and (min-width: 700px) {
    .navbar-toggle {
        display: none;
    }
    
    #navbar #navbar-menu,
    #navbar.opened #navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: block;
        height: 100%;
    }

    #navbar .navbar-links,
    #navbar.opened .navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        list-style-type: none;
        max-height: max-content;
        width: 100%;
        height: 100%;
    }

    #navbar .navbar-link:last-child {
        margin-right: 0;
    }
}

/* === VERTICAL CENTER FIX FOR DESKTOP/TABLET (put at end) === */
@media (min-width: 768px) {
  /* Make the right area a flex row and center its contents vertically */
  #navbar #navbar-menu {
    display: flex;
    align-items: center;
    height: auto;                 /* override earlier height:100% */
  }

  /* The list itself should be a centered flex row, not full-height */
  #navbar .navbar-links {
    display: flex;
    align-items: center;
    height: auto;                 /* override earlier height:100% */
    margin: 0;
  }

  /* Each item and link are flex-centered; remove vertical margins */
  #navbar .navbar-item {
    display: flex;
    align-items: center;
    margin: 0 0.4rem;             /* was 0.4em all around */
    width: auto;
  }

  #navbar .navbar-link {
    display: flex;
    align-items: center;
    line-height: 1;               /* avoids odd baseline alignment */
    padding: .5rem .75rem;
    width: auto;                  /* don't stretch */
  }

  /* Logo stays perfectly centered */
  #navbar .navbar-container { display: flex; align-items: center; }
  #navbar .navbar-logo img { display: block; }
}


/* ************************* */
/* NAVBAR */

/* FOOTER */
/* ************************* */

footer a{ color: #22222d !important; }

/* Footer social icons: match your dark text and remove underline artifacts */
.footer-icon-link{
  color: #22222d !important;
  text-decoration: none !important;
}

.footer-icon-link:hover,
.footer-icon-link:focus{
  color: #22222d !important;
  text-decoration: none !important;
}

/* Ensure the <i> inherits correctly and stays clean */
.footer-icon-link i{
  color: inherit !important;
  text-decoration: none !important;
}


/* Policies */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
    line-height: 1.6;
}

.policy-container h1, .policy-container h2 {
    color: #333;
    margin-bottom: 0.3em;
}

.policy-container p {
    margin-bottom: 1.2em;
}

/* ************************* */
/* FOOTER */