
/* =====================
   FEEDBACK WALL SECTION
   ===================== */
  /* =======================
   FEEDBACK WALL
======================== */

.feedback-wall-wrapper {
    height: 100vh;
    overflow: hidden;
    background: #130f1e;
    position: relative;
    border-bottom: 10px solid #3a3a3a;
}

.feedback-wall {
    position: relative;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    background-image: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
    background-repeat: repeat;
    background-color: #050000;
background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

@media (min-width: 768px) {
    .feedback-wall {
        cursor: none;
    }
    .sticky-note {
        cursor: none;
    }
    .add-feedback-btn {
        cursor: none;
    }
}

/* Horizontal Track */
.feedback-track {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 80px;
    width: max-content;
    height: 100%;
    background-color: #050000;
  background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

/* Sticky Note */
.sticky-note {
    width: 200px;
    min-height: 180px;
    padding: 15px;
    background: var(--note-color);
    color: #222;
    border-radius: 6px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transform: rotate(var(--rotate));
    position: relative;
    flex-shrink: 0;
}

.sticky-note span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

/* Number Badge */
.sticky-note::before {
    content: attr(data-num);
    position: absolute;
    top: -12px;
    left: -12px;
    background: #000;
    color: #fff;
    font-size: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed Add Button */
.add-feedback-btn {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 10;
    background: linear-gradient(90deg, #FFC107, #dccd39);
    color: #000000;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
    cursor: crosshair !important;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 100;
    display: none;
    transition: transform 0.1s ease;
}

/* Popup Overlay */
.feedback-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 20;
    align-items: center;
    justify-content: center;
}

/* Feedback Note Form */
.feedback-note {
    width: 260px;
    background: #fff36a;
    padding: 20px;
    border-radius: 8px;
    color: #222;
}

.feedback-note textarea {
    width: 100%;
    height: 100px;
    border: none;
    resize: none;
    margin-bottom: 10px;
}

.feedback-note input {
    width: 100%;
    border: none;
    margin-bottom: 10px;
}

.feedback-actions {
    display: flex;
    justify-content: space-between;
}

/* Read Popup */
.feedback-note.read {
    background: #fffdc4;
}

.feedback-title {
    margin: 0;
    text-align: center;
    font-size: 42px;
    padding: 100px 0 20px;
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    background-clip: text;
    color: transparent;
    font-weight: 700;
    border-bottom: 10px solid #3a3a3a;

}


