/* Base */
:root {
  --brand-brown: #6d3b1c;
  --brand-accent: #f6930b;
}

body {
  background: #fff;
}

/* Main container ring */
.container {
  width: 75%;
  margin: 10px auto;
  padding: 10px 0;
  box-shadow: 20px 0 20px -20px #864d25, -20px 0 20px -20px #864d25;
  background-color: transparent !important;
}
.contain {
  width: 75%;
  margin: 10px auto;
  padding: 10px 0;
  background-color: transparent !important;
}

/* Navbar */
.mynav {
  background: transparent !important;
  margin-top: 20px;
}

.navbar-brand {
  background: transparent !important;
}

.navbar-brand img {
  width: 100px;
  height: 60px;
}

.nav-link,
.dropdown-toggle {
  margin-right: 16px;
  color: var(--brand-brown) !important;
  background: #fff;
  border: 2px solid #fff !important;
  border-radius: 6px;
  padding: 2px 8px;
}

.nav-link:hover,
.dropdown-toggle:hover {
  background: var(--brand-accent);
  color: #fff !important;
  border-color: transparent !important;
}

.dropdown-menu {
  border: none;
}

/* Hero */
.home-section {
  text-align: center;
  padding: 20px;
  margin: 20px;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.welcome-message {
  flex: 2 1 360px;
  text-align: left;
  order: 1;
}

.hero-media {
  flex: 1 1 280px;
  order: 2;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  padding-top: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.hero-image:hover {
  transform: scale(1.03);
}

/* Store badges */
.store-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  height: 48px;
}

.store-badge img {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 380px) {
  .store-badge {
    height: 42px;
  }
}

/* Footer / Social */
footer {
  background: transparent !important;
  color: #000;
  text-align: center;
  padding-bottom: 10px;
}

.social-media {
  display: inline-flex;
  gap: 16px;
  font-size: 24px;
}

.social-media a {
  text-decoration: none;
  transition: transform 0.3s;
}

.social-media a:hover {
  transform: scale(1.1);
}

.social-media a.facebook {
  color: #0a399e;
}
.social-media a.twitter {
  color: #1da1f2;
}
.social-media a.instagram {
  color: #e4405f;
}

/* Remove default margins on figure in some browsers */
figure {
  margin: 0;
}
