/* General Styles */
body {
    font-family: 'Heebo', sans-serif;
    background-color: #FFF0F5; /* Lavender Blush */
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    direction: rtl;
}

header h1 a {
    color: #FF69B4; /* Hot Pink */
    text-decoration: none;
    font-size: 2.5rem;
}

main {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

/* Landing Page */
.landing-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.partner-inputs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

input[type="text"] {
    border: 2px solid #FFC0CB; /* Pink */
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    width: 250px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus {
    outline: none;
    border-color: #FF69B4; /* Hot Pink */
    box-shadow: 0 0 8px rgba(255, 105, 180, 0.3);
}

.btn-primary {
    background-color: #FF69B4; /* Hot Pink */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #FF1493; /* Deep Pink */
}

.session-links {
    text-align: center;
    margin-top: 30px;
}

.session-links h3 {
    color: #333;
}

.session-links a {
    color: #FF1493;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin: 10px 0;
    word-wrap: break-word;
}

/* Kink Form Page */
.kink-form h2 {
    text-align: center;
    color: #FF69B4;
}

.kink-category details {
    margin-bottom: 15px;
    border: 1px solid #FFC0CB;
    border-radius: 10px;
}

.kink-category summary {
    padding: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #FFF5F8;
    border-radius: 10px;
}

.kink-item {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px; /* Added gap for spacing */
    border-bottom: 1px solid #eee;
}

.kink-item:last-child {
    border-bottom: none;
}

.kink-info {
    flex: 1; /* Allow text container to grow and shrink */
}

.kink-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.kink-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    word-wrap: break-word; /* Ensure long words don't overflow */
}

/* Custom Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #FF69B4;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* General Message Styles */
.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 100;
}

.message-box {
    font-size: 1.5rem;
    color: #FF1493;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Results Page */
.results-container ul {
    list-style: none;
    padding: 0;
}

.results-container li {
    background-color: #FFF5F8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.results-container h3 {
    margin: 0 0 10px 0;
    color: #FF69B4;
}

.results-container p {
    margin: 0;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 700px) {
    main {
        padding: 20px;
    }

    .partner-inputs {
        flex-direction: column;
        align-items: center;
    }

    input[type="text"] {
        width: 90%;
    }
}