
:root {
  --header-image: url('https://i.postimg.cc/xqrX5QVZ/Screenshot_2026_02_03_at_9_12_07_AM.png');
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: #fceaff;
  background-color: #000;
  background-image: url('https://i.postimg.cc/LXYv9s4h/IMG_7643.jpg');
  background-attachment: fixed;
  background-size: 100%;
}

/* FONTS */
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
  font-weight: bold;
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
  font-style: italic;
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
  font-weight: bold;
  font-style: italic;
}

/* LAYOUT */
#container {
  max-width: 1250px;
  margin: 0 auto;
}

#header {
  height: 150px;
  background-image: var(--header-image);
  background-size: cover;
  background-position: center;
}

#navbar {
  padding: 2px;
   margin-bottom: 13px;
    background: linear-gradient(
    to bottom,
    #446036,
    #324A25
  );
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

#navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  margin: 5px;
}

#navbar li a {
  display: inline-block;
  padding: 2px 50px 2px;
margin-top: 3px;
margin-bottom: 3px;
  background: linear-gradient(
    to bottom,
    #324A25,
    #1C2D14
  );

  border-radius: 5px;

  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 2px #E6CF9E,
    0 0 0 3.5px #31140C;

  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
}


#navbar li a:hover {
  filter: brightness(2);
}

#navbar li a:active {
  transform: translateY(1px);
  filter: brightness(0.95);
}


#flex {
  display: flex;
  gap: 20px;
}

aside {
  width: 200px;
  background: linear-gradient(
    to bottom,
     #9C7258,
    #815A41,
    #744D34
  );
  padding: 20px;
  font-size: smaller;
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

main {
  flex: 1;
  align-items: center; 
  background: #f80000;
  padding: 20px;
    background: linear-gradient(
    to bottom,
     #9C7258,
    #815A41,
    #744D34
  );
  
  background: linear-gradient(to bottom, #446036, #324A25 );
  padding: 20px;
  font-size: smaller;
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

#leftSidebar { order: 1; }
main { order: 2; }
#rightSidebar { order: 3; }

footer {
  width: 100%;
  padding: 10px;
  text-align: center;
    margin-top: 40px;
      background: linear-gradient(
    to bottom,
    #446036,
    #324A25
  );
}




/* CONTENT */
h1, h2, h3 {
  color: #31140C;
  text-align: center;
}

.box {
  background: #000;
  border: 1px solid #fff;
  padding: 10px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }

  aside,
  main {
    width: 100%;
  }

  main { order: 1; }
  #leftSidebar { order: 2; }
  #rightSidebar { order: 3; }

  #navbar ul {
    flex-wrap: wrap;
  }
}

@font-face {
  font-family: 'CutCrap';
  src: url('https://dreamerslost.neocities.org/texthome/Cut%20the%20crap.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.cutcrap {
  font-family: 'CutCrap', sans-serif;
  font-size: 2.5em;
  text-align: center;
}


/* Make sidebar links fully styled like buttons */
#sideNav li a {
  display: block;
  padding: 12px 20px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #446036, #324A25);
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

#sideNav li a:hover {
  filter: brightness(1.5);
}

#sideNav li a:active {
  filter: brightness(0.95);
}

#sideNav ul {
  list-style: none; /* removes bullets */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.image-box {
  justify-content: center;
  width: 500px;
  height: 300px;
  border: 2px solid #fff;
  border-radius: 12px;

  background-image: url('https://i.postimg.cc/7hSVzQ2k/IMG_7644.jpg');
  background-size: 100% auto; /* resize image inside box */
  background-position: center bottom -80px; /* position inside box */
  background-repeat: no-repeat;
}


.card1 {
  display: inline-block;
  padding: 2px 50px 2px;
margin-top: 3px;
margin-bottom: 3px;
  padding: 5px 30px 5px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #446036, #324A25);
  border-radius: 12px;
  box-shadow: 
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.boxgreen {
  display: block;
  padding: 2px 50px 2px;
margin-top: 3px;
margin-bottom: 3px;
  padding: 5px 30px 5px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #446036, #324A25);
  border-radius: 8px;
  box-shadow: 
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.boxbrown {
  display: block;
  padding: 2px 50px 2px;
margin-top: 3px;
margin-bottom: 3px;
  padding: 5px 30px 5px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #9C7258, #815A41, #744D34);
  border-radius: 8px;
  box-shadow: 
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

/* Make sidebar links fully styled like buttons */
#sideNav2 li a {
  display: block;
  padding: 12px 20px;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #446036, #324A25);
  border-radius: 12px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
  color: #FFF7BA;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

#sideNav2 li a:hover {
  filter: brightness(1.5);
}

#sideNav2 li a:active {
  filter: brightness(0.95);
}

#sideNav2 ul {
  list-style: none; /* removes bullets */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



#dog-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dog-card {
  width: 250px;
  text-align: center;
  border: 2px solid #E6CF9E;
  border-radius: 8px;
  background: linear-gradient(
    to bottom,
    #324A25,
    #1C2D14
  );
  color: #FFF7BA;
  box-shadow: 0 0 5px #000;
}
.dog-card img {
  border-radius: 6px;
}
.dog-card a {
  color: inherit;
  text-decoration: none;
}

#capture-message {
  background: #eee;
  color: #111;
  padding: 10px 14px;
  margin: 10px auto 20px;
  max-width: 600px;
  border: 1px solid #ccc;
  font-size: 14px;
}
#capture-message a {
  color: #0044cc;
  text-decoration: underline;
}

#dog-profile img {
  display: block;
  max-width: 500px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

#dog-canvas {
  position: relative;
  width: 500px;
  height: 420px;
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

#dog-canvas img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* breeding */
#breeding-dog-profile img {
  display: block;
  max-width: 250px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

#breeding-dog-canvas {
  position: relative;
  width: 250px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow:
    0 0 0 1.5px #31140C,
    0 0 0 3px #E6CF9E,
    0 0 0 4.5px #31140C;
}

#breeding-dog-canvas img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}