* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; overflow-x: hidden; }

/* Navbar */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between;
    padding: 20px 40px; z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background: #9e6e07;
}

.logo { font-size: 24px; font-weight: bold; color: #fff; }

/* Hamburger Button */
#menu-toggle { display: none; }
.hamburger { cursor: pointer; display: flex; flex-direction: column; gap: 6px; z-index: 1001; }
.bar { width: 30px; height: 3px; background-color: #fff; transition: 0.3s; }

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #1a1a1a;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.5s;
}
.menu-overlay ul { list-style: none; text-align: center; }
.menu-overlay ul li a {
    text-decoration: none; color: #fff; font-size: 48px;
    font-weight: bold; display: block; padding: 15px;
    transition: 0.3s;
}
.menu-overlay ul li a:hover { color: #f0a; }

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.close-bar {
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.close-bar:nth-child(1) {
    transform: rotate(45deg);
}

.close-bar:nth-child(2) {
    transform: rotate(-45deg);
}

.close-menu:hover .close-bar {
    background-color: #f0a;
}

/* Toggle Active State */
#menu-toggle:checked ~ .menu-overlay { opacity: 1; visibility: visible; }
#menu-toggle:checked + .hamburger .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
#menu-toggle:checked + .hamburger .bar:nth-child(2) { opacity: 0; }
#menu-toggle:checked + .hamburger .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Hero Section */
.hero {
    height: 100vh; width: 100%;
    background: #9e6e07; color: #fff;
    background-image: url('./img/background-hare.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; justify-content: center; align-items: center;
    text-align: center;
}
.hero-content h1 { font-size: 96px; margin-bottom: 20px; }
.btn { padding: 10px 20px; background: #f0a; color: #fff; text-decoration: none; }

.hard-btn {
  background-color: #feca57; /* Mustard yellow */
  color: #000;
  border: 3px solid #000;
  padding: 15px 30px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  /* The hard shadow */
  box-shadow: 8px 8px 0px #000;
  transition: all 0.1s ease;
}

.hard-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px #000;
}

.hard-btn:active {
  transform: translate(6px, 6px); /* Moves down to meet the shadow */
  box-shadow: 2px 2px 0px #000;
}

/* Links Section */
.links-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.links-container {
    width: 100%;
    margin-left: 40px;
    margin-right: 40px;
}

.links-container h2 {
    color: #000;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.scroll-links {
    list-style: none;
}

.link-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    border-bottom: 1px solid #cccccc;
}

.link-item:first-child {
    /*border-top: 1px solid #cccccc;*/
}

.link-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.link-item a {
    display: block;
    padding: 40px 0px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 4em;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.3s ease;
}

.link-item a:hover {
    background: #f5f5f5;
    color: #9e6e07;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .link-item a {
        font-size: 2em;
    }
    .hero-content h1 { font-size: 36px; margin-bottom: 20px; }
}
