* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #574e48;
    overflow: hidden;
}

.content {
    flex: 1;
}

.nav-wrapper {
    background-color: #4A4440;
    padding: 15px 20px;
}

.navbar {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.navbar a {
    color: #C9A97A;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    filter: drop-shadow(8px 7px 6px black)
}

.navbar a:hover {
    color: #8B6030;
}



.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/Assets/IMG/Bigtree.jpeg');
    background-size: cover;
    background-position: center;
    transition: filter 0.4s ease;
    z-index: 0;
}

.hero:hover::before {
    filter: blur(3px);
}

.hero-logo {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: bold;
    color: #ffffffb6;
    z-index: 1;
}

.footer {
    background-color: #3b3c2e;
    color: #e0cdb0;
    text-align: center;
    padding: 5px;
    margin-top: auto;
    box-sizing: border-box;
    filter: drop-shadow(8px 7px 6px black)
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #e0cdb0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    opacity: 0.8;
}

/* layout af billede + tekst */
.carousel-component {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* main bilelder på karuseelen */
.carousel-display img {
  width: 439px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  
}

/* baren under */
.carousel-slider {
  -webkit-appearance: none;
  appearance: none;

  width: 360px;
  display: block;

  margin: 10px auto 20px auto; 
  outline: none;
}

/* line/bar */
.carousel-slider::-webkit-slider-runnable-track {
  height: 12px;
  background: #4A4440;
  border-radius: 999px;
}

/* moving log image */
.carousel-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;

  width: 70px;
  height: 70px;

  background-image: url("/Assets/IMG/removed.png");
  background-size: cover;
  background-position: center;

  border: none;
  cursor: pointer;

  margin-top: -29px; 
  transform: rotate(var(--thumb-rotate, 0deg));
}
.homies {
  display: block;
  margin: 30px auto;
  width: auto;
  max-width: 100%;
  height: auto;
}
.homies-text {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: #ffffffb6;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #8a6d58;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  margin: 10px;
  font-size: 18px;
}

.product-card p {
  margin: 0 10px 10px;
  color: #d8ba8e;
  font-size: 14px;
}

.price {
  display: block;
  margin: 0 10px 15px;
  font-weight: bold;
  color: #111;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  text-decoration: none;
}

.social-icon i {
  font-size: 50px;
  color: #111;
  line-height: 1;
  display: block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover i {
  transform: scale(1.15);
  color: #E1306C;
}

a.social-icon,
a.social-icon:hover,
a.social-icon:visited,
a.social-icon:active {
  text-decoration: none !important;
  border-bottom: none !important;
  background: transparent !important;
}