/* Add this to your style.css */
.secret-link {
  color: #ff5722;
  text-decoration: underline;
  cursor: pointer;
}

.secret-link:hover {
  color: #e64a19;
}









/* General page styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Styling for the horizontal pink box */
.pink-box {
  background-color: #ff66b2;  /* Pink background */
  color: white;               /* White text */
  padding: 10px 20px;         /* Smaller padding (top/bottom and left/right) */
  width: 100%;                /* Full width of the page */
  position: fixed;            /* Keeps the box fixed at the top */
  top: 0;                     /* Aligns it to the top of the page */
  left: 0;                    /* Aligns it to the left of the page */
  z-index: 10;                /* Keeps the box above other content */
  display: flex;              /* Flexbox for alignment */
  justify-content: space-between; /* Space out the logo and text */
  align-items: center;        /* Vertically center the content */
  box-sizing: border-box;     /* Ensure padding doesn't affect width */
}

/* Styling for the logo */
.logo-img {
  height: 30px;               /* Adjust logo size */
  width: auto;                /* Keep aspect ratio */
}

/* Styling for the header text */
.header-text p {
  font-size: 1.2em;           /* Adjust text size */
  margin: 0;                  /* Remove margin around the text */
  text-align: right;          /* Align text to the right */
}

/* Main content styling below the pink header */
.main-content {
  display: flex;              /* Flexbox layout for image and text */
  justify-content: center;    /* Center content horizontally */
  align-items: center;        /* Center content vertically */
  gap: 40px;                  /* Space between the image and text */
  margin-top: 120px;           /* Push down the content below the pink box */
  padding: 20px;
}

/* Left Side: Image */
.image-container {
  flex: 1;                    /* Take up equal space on the left */
}

.miku-image {
  max-width: 300px;           /* Set the image size */
  width: 100%;                /* Image takes full width */
  border-radius: 10px;        /* Optional: rounded corners */
}

/* Right Side: Text and Buttons */
.text-container {
  flex: 1;                    /* Take up equal space on the right */
  display: flex;
  flex-direction: column;     /* Stack the text and buttons */
  align-items: flex-start;    /* Align to the left */
  gap: 20px;                  /* Space between title and buttons */
}

h1 {
  font-size: 2rem;            /* Adjust heading size */
  color: #ff66b2;             /* Piapro's pink */
  font-weight: bold;
}

.button-container {
  display: flex;
  flex-direction: column;     /* Stack buttons vertically */
  gap: 10px;
}

.main-button {
  background-color: #ff66b2;  /* Pink background for buttons */
  color: white;               /* White text */
  padding: 12px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;        /* Rounded corners */
  text-decoration: none;      /* Remove underline */
  width: 200px;               /* Set button width */
  text-align: center;
  transition: background-color 0.3s, transform 0.2s; /* Smooth transitions */
}

.main-button:hover {
  background-color: #ff3399;  /* Darker pink on hover */
  transform: scale(1.05);     /* Slight button enlargement on hover */
}



/* peachy luigi (orenji gif) */ 
.bottom-left-secret {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* left side */
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 20px; /* tiny spacing from the edge */
}

.secret-gif {
    max-width: 180px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.secret-gif:hover {
    transform: scale(1.05);
}

