@charset "utf-8";
/* CSS Document */

/* Brown – rgba(157, 121, 94, 255)

Dark Green – rgba(53, 103, 69, 255)

Orange – rgba(199, 109, 40, 255)

Goldenrod – rgba(238, 159, 33, 255)

Bright Yellow – rgba(253, 191, 34, 255)

 Pink rgba(207, 77, 72, 1)

Cream – rgba(247, 242, 216, 255) */

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

body {
  background-color: #ffb6c1;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
}

.wrapper {
 max-width: 1400px;
 font-family: "Signika", sans-serif;
 font-optical-sizing: auto;
 font-style: normal;
 font-variation-settings:
    "GRAD" 0;
 align-content: center;
 margin: 0 auto;
	background-color: rgba(255, 204, 153, 1);
 
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}


.nav-links ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(199, 109, 40, 255);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links ul li a:hover {
  color: rgba(199, 109, 40, 255);
}

.nav-links ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  width: 80px; 
}


.tarot-btn {
  background-color: rgba(199, 109, 40, 255);
  color: black;
  border: none;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Signika", sans-serif;
}

.tarot-btn:hover {
  background-color: rgba(253, 191, 34, 255);
}

.tarot-card {
  position: absolute;
  top: 80px;
  right: 40px;
  background: white;
  border: 2px solid rgba(207, 77, 72, 1);
  border-radius: 10px;
  padding: 20px;
  max-width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
  font-family: "Signika", sans-serif;
  color: #333;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background-color: #ffcce0;
  position: relative;
}

.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background-color: #e260b0;
}

.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile-img {
  width: 200px;
  border-radius: 15px;
  border: 5px solid white;
  box-shadow: 5px 5px 0px #000;
}

.name {
  margin-top: 15px;
  background-color: #00d4c0;
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 24px;
  color: black;
  box-shadow: 5px 5px 0px #000;
}

.section-title {
  background-color: #00d4c0;
  display: inline-block;
  padding: 5px 15px;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 5px 5px 0px #000;
  margin-bottom: 15px;
}

.about-section,
.contact-section {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 5px 5px 0px #000;
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
}

.about-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 18px;
}

.icon {
  margin-right: 10px;
  font-size: 20px;
}

.portfolio-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ffeb3b;
  color: black;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 5px 5px 0px #000;
  transition: transform 0.2s ease;
}

.portfolio-link:hover {
  transform: translateY(-2px);
}


.site-footer {
  background-image: url("images/footer-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: #000;
  text-align: center;
  font-family: "Signika", sans-serif;
  position: relative;
}

.footer-content {
  background-color: rgba(255, 241, 230, 0.8); 
  display: inline-block;
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: 4px 4px 0px hotpink;
}

.site-footer a {
  color: #c74d48;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: hotpink;
}

.footer-hr {
  border: none;
  height: 6px;
  width: 80%;
  margin: 2rem auto;
  background-image: linear-gradient(
    to right,
    rgba(207, 77, 72, 1),    
    rgba(253, 191, 34, 1),   
    rgba(199, 109, 40, 1)    
  );
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4); 
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-links ul li {
    width: 100%;
  }

  .nav-links ul li a {
    display: block;
    width: 100%;
    padding: 10px;
  }

  .nav-right {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
  }

  .logo img {
    width: 180px;
    height: auto;
  }
}

