.Navbar-module__title__XMhj8 {
  font-family: "myFont", serif;
  font-size: 2rem;
  text-align: center;
  margin: 0;
}

.Navbar-module__titleContainer__uz_UM {
  text-align: center;
  padding: 0 2rem;
}
.Navbar-module__tagline__MsAhL {
  font-size: 1rem;
  font-style: italic;
  color: #d4af37;
}

.Navbar-module__cta__foaBO {
  display: flex;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #b35200; /* Deep orange */
  color: white;

  white-space: nowrap; /* Prevents text from wrapping */
}

.Navbar-module__cta__foaBO:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #993e00;
}

.Navbar-module__nav__Osl8o {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  list-style: none;
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.Navbar-module__link__P8vrA {
  color: inherit; /* Keeps the link color consistent with the rest of the text */
  text-decoration: none; /* Removes underline */
}

.Navbar-module__logo__G9E4s {
  width: 9rem;
  height: auto;
}

.Navbar-module__navLinks__nBHBp {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.Navbar-module__menuIcon__aqvCg {
  display: none;
}

.Navbar-module__logoJS__NRSJI {
  display: flex;
  align-items: center;
}

.Navbar-module__textLine1__OvX3w {
  font-size: 1.9rem;
  color: #ffffff;
  letter-spacing: 0.1em; /* Space out the letters */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Slight shadow for depth */
  margin: 0;
}

.Navbar-module__underline__iyqEA {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin: 2px 0;
}

.Navbar-module__textLine2__ezymX {
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding-top: 4px;
}

@media (max-width: 1485px) {
  .Navbar-module__nav__Osl8o {
    width: 80%;
  }
}

@media (max-width: 1250px) {
  .Navbar-module__nav__Osl8o {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .Navbar-module__logo__G9E4s {
    display: none;
  }
  .Navbar-module__nav__Osl8o {
    justify-content: center;
  }

  .Navbar-module__mobile__ra67X {
    display: block; /* Show the button on smaller screens */
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the screen */
    right: 20px; /* Distance from the left of the screen */
    z-index: 1000; /* Ensure it stays above other content */
  }
}

@media (max-width: 900px) {
  .Navbar-module__tagline__MsAhL {
    display: none;
  }
  .Navbar-module__logo__G9E4s {
    width: 7rem;
    height: auto;
  }
  .Navbar-module__navLinks__nBHBp {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%; /* Position the dropdown menu just below the nav */
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    width: 100vw; /* Span the full viewport width */
    text-align: center;
    padding: 1rem 0;
    border-radius: 0.25rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure the menu appears above other content */
  }

  .Navbar-module__menuIcon__aqvCg {
    display: block;
    font-size: 2rem;
    cursor: pointer;
  }

  .Navbar-module__showMenu__0PvMp {
    display: flex;
  }
}

@media (max-width: 550px) {
  .Navbar-module__logo__G9E4s {
    grid-column: 1/3;
    margin: 0 auto;
  }
}

@media (max-width: 450px) {
  .Navbar-module__textLine1__OvX3w {
    font-size: 1.5rem;
  }
  .Navbar-module__textLine2__ezymX {
    font-size: 1rem;
  }
}

.carousel-container {
  width: 100%;
  margin: 0 auto;
}

.coin-slide {
  background: #4f3f2f; /* Dark brown background for elegance */

  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a nice shadow effect */
  color: #f8f4e3; /* Off-white text for readability */

  display: flex; /* Enable Flexbox */
  flex-direction: column; /* Stack children vertically */
  justify-content: space-between; /* Distribute space between top and bottom */

  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.coin-slide h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd700; /* Gold color for headings */
}

.coin-slide p {
  margin: 5px 0;
}

.coin-slide:hover {
  transform: scale(1.05); /* Slight zoom on hover for effect */
}

.coin-slide strong {
  color: #ffd700; /* Gold for key details like country, metal, etc. */
}

.Main-module__container__Q33rU {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2rem;
  gap: 5rem 3rem;
  width: 70%;
  margin: 0 auto;
}

.Main-module__exampleImg___RLWb {
  width: 400px;
  max-width: 400px;
  min-width: 200px;
  height: auto;
}

.Main-module__two__o6hhB,
.Main-module__four__T2xkK,
.Main-module__six__DVopL {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Main-module__three__JJXPy {
  grid-column: 1/3;
  grid-row: 1/2;
}

.Main-module__five__CQXAJ {
  grid-column: span 2;
}

.Main-module__seven__kAS_1 {
  grid-column: 1/3;
  grid-row: 3/4;
}

.Main-module__featureContainer__mMESg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: 1/3;
  margin-top: 5rem;
}

.Main-module__featureContainer__mMESg > h2 {
  font-weight: 500;
  font-size: 2rem;
}

.Main-module__three__JJXPy > h2,
.Main-module__five__CQXAJ > h2,
.Main-module__seven__kAS_1 > h2 {
  margin-top: 0;
}

.Main-module__three__JJXPy > p,
.Main-module__five__CQXAJ > p,
.Main-module__seven__kAS_1 > p {
  line-height: 2;
}

@media (max-width: 1485px) {
  .Main-module__container__Q33rU {
    width: 80%;
  }
}

@media (max-width: 1250px) {
  .Main-module__container__Q33rU {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .Main-module__container__Q33rU {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .Main-module__one__0FW64 {
    margin-bottom: 0;
  }
  .Main-module__one__0FW64 > h2,
  .Main-module__three__JJXPy > h2,
  .Main-module__five__CQXAJ > h2,
  .Main-module__seven__kAS_1 > h2 {
    text-align: center;
  }

  .Main-module__two__o6hhB {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .Main-module__three__JJXPy {
    grid-row: 3/4;
    grid-column: 1/3;
  }
  .Main-module__four__T2xkK {
    grid-row: 4/5;
    grid-column: 1/3;
  }
  .Main-module__five__CQXAJ {
    grid-row: 5/6;
    grid-column: 1/3;
  }
  .Main-module__six__DVopL {
    grid-row: 6/7;
    grid-column: 1/3;
  }
  .Main-module__seven__kAS_1 {
    grid-row: 7/8;
    grid-column: 1/3;
  }
  .Main-module__featureContainer__mMESg {
    margin-top: 0;
  }
  .Main-module__three__JJXPy > p,
  .Main-module__five__CQXAJ > p,
  .Main-module__seven__kAS_1 > p {
    line-height: 1.2;
  }
}

/* Footer Styling */
.footer {
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  margin: 0 auto;
  flex-wrap: wrap;
  width: 70%;
}

.footer-about,
.footer-contact,
.footer-map {
  flex: 1;
  margin: 0 20px;
}

.logo {
  width: 9rem;
  height: auto;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.footer p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-special {
  color: #ffd700;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-map iframe {
  border: 0;
  width: 100%;
  max-width: 300px;
  height: 200px;
}

/* Responsive Styling */
@media (max-width: 1250px) {
  .footer-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* Stack sections vertically */
    align-items: center;
  }

  .footer-about,
  .footer-contact,
  .footer-map {
    margin: 20px 0;
    text-align: center;
  }

  .footer-map iframe {
    width: 100%;
    height: 250px;
  }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/6d4ccc7374e437835bef.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/a4e97f5a2a64f0ab1323.eot);
    src: url(/a4e97f5a2a64f0ab1323.eot?#iefix) format('embedded-opentype'), url(/295183786cd8a1389865.woff) format('woff'), url(/c94f7671dcc99dce43e2.ttf) format('truetype'), url(/2630a3e3eab21c607e21.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*reset */
html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}

@font-face {
  font-family: "TrajanBolded";
  src: url(/3f14e0ffe7b54e407289.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Trajan";
  src: url(/7b34a885eb3b7f74c691.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: white;
  color: #2c2c2c; /* Charcoal Black Text */
  font-family: "Trajan", serif; /* Classy serif font */
}

h1,
h2,
h3 {
  font-family: "TrajanBolded", serif; /* Classy serif font */
  color: #d4af37; /* Gold for Headings */
}

h2 {
  color: #b87333;
}

a {
  color: #b87333; /* Copper for links */
}

footer {
  background-color: #2c2c2c; /* Dark Gray for footer */
  color: #f8f4e3; /* Off-white text in footer */
}

