<<<<<<< HEAD
/* ============================
   GLOBAL PAGE STYLE
=============================== */
body.edit-profile-page {
    background: linear-gradient(135deg, #f9a8d4, #f472b6);
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}


/* ============================
   PROFILE CARD
=============================== */
.edit-profile-card {
    background: rgba(255, 255, 255, 0.0); /* fully transparent */
    border-radius: 16px;
    position: relative;
    overflow: visible;
    max-width: 700px;
    width: 100%;
    padding: 2.5rem;
    /* Add subtle shadow on hover for floating effect */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* ============================
   HOME ICON
=============================== */
.home-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 1.6rem;
    color: #ff5864;
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.home-icon:hover {
    color: #ff3b53;
    transform: scale(1.15);
}

/* ============================
   FORM STEPS
=============================== */
.form-step {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.form-step.active {
    display: flex;
}

/* Step Headings */
.form-step h3 {
    text-align: center;
    color: #222;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
    letter-spacing: 0.5px;
}

.form-step h3::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #ff5864;
    margin: 0.5rem auto 0 auto;
    border-radius: 3px;
}

/* ============================
   INPUTS
=============================== */
.form-input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    transition: all 0.3s ease;
    font-size: 15px;
    background: #fafafa;
}

.form-input:focus, select:focus, textarea:focus {
    border-color: #ff5864;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 88, 100, 0.25);
}

/* ============================
   PROFILE IMAGE SECTION
=============================== */
.profile-image-group {
    text-align: center;
    margin-bottom: 1.5rem;
}

.image-preview-container {
    display: inline-block;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
=======

body.edit-profile-page {
    background: radial-gradient(circle at top, #2a1e47, #181326);
    font-family: "Inter", sans-serif;
    margin: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

/* ---------------------- TOAST ---------------------- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
    z-index: 9999;
    font-weight: 500;
    min-width: 180px;
    text-align: center;
    pointer-events: none; /* allows clicks through toast */
    color: #fff;
    background: rgba(0, 0, 0, 0.85); /* default */
}

/* show toast */
.toast.show {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
}

/* toast types */
.toast.success {
    background: #28a745; /* green */
}

.toast.error {
    background: #dc3545; /* red */
}

.toast.warning {
    background: #ffc107; /* yellow */
    color: #000;
}

.edit-profile-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 8rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2.5rem 3rem;
}

.edit-profile-card {
    flex: 1 1 35%;
    max-width: 350px;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;       
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    border: none;
    margin-top: 3rem;
}

.form-step {
    display: none;
    flex-direction: column;
    align-items: center;      
    gap: 1rem;
    padding-top: 1rem;
}

.form-step.active {
    display: flex;
}

.form-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -2rem;
    margin-bottom: 1rem;
    position: relative;
}

.form-step h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 0.5rem auto 0;
    background: #fff;
    border-radius: 3px;
}

.edit-profile-card label {
    color: #fff !important;
    font-weight: 500;
    margin-top: 1rem;
    display: flex;
}

.form-input,
select,
textarea {
    width: 100%;
    max-width: 400px;
    padding: 0.85rem 1.5rem;
    font-size: 15px;
    border-radius: 50px;
    border: 1px solid rgba(239, 234, 234, 0.2);
    background: rgba(255, 255, 255, 0.05);       
    color: #ffffff !important; 
    font-weight: 500;
    outline: none;
    text-align: center;
    transition: all 0.3s ease;
}

textarea {
    width: 100%;
    max-width: 400px;
    height: 40px;          
    padding: 0.85rem 1.5rem;
    font-size: 15px;
    border-radius: 50px;
    border: 1px solid rgba(239, 234, 234, 0.2);
    background: rgba(255, 255, 255, 0.05);       
    color: #ffffff; 
    font-weight: 500;
    outline: none;
    text-align: center;
    transition: height 0.3s ease;  
    resize: none;                  
    overflow: hidden;          
}

textarea:focus {
    height: 120px;  
    text-align: left; 
}

.form-input:hover,
.form-input:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
    background: #d2e5f6;  
    color: #000000 !important; 
    border-color: #000;  
}

.profile-image-group {
    text-align: center;
    margin-bottom: 1.5rem;
}
.image-preview-container {
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
>>>>>>> be8a9c60c6a7058bb718895ca3f39a8d200eef8d
}
.image-preview {
<<<<<<< HEAD
    width: 240px;
    height: 170px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.image-preview-container,
.form-actions {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-preview-container:hover .image-preview {
    transform: scale(1.03);
}

/* ============================
   IMAGE ACTION BUTTONS
=============================== */
.image-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.btn.edit-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.edit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn.remove-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.remove-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* ============================
   FORM ACTION BUTTONS
=============================== */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 0.8rem;
}

.next-btn, .prev-btn, .save-button {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

/* Next Button */
.next-btn {
    background: linear-gradient(45deg, #ff5864, #ff758c);
    color: #fff;
}

.next-btn:hover {
    background: linear-gradient(45deg, #ff3b53, #ff647d);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 88, 100, 0.3);
}

/* Prev Button */
.prev-btn {
    background: #e0e0e0;
    color: #333;
}

.prev-btn:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* Save Button */
.save-button {
    background: linear-gradient(45deg, #28a745, #4dd067);
    color: #fff;
=======
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    /* margin-left: 80px; */
}
.image-preview-container:hover .image-preview {
    transform: scale(1.05);
}

.image-buttons {
    margin-top: 1rem;
    display: inline-flex;       
    justify-content: flex-start; 
    gap: 15px;                  
    flex-wrap: nowrap;          
}

.image-buttons .btn {
    display: inline-flex;        
    align-items: center;
    justify-content: center;
    height: auto;                            
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;       
    cursor: pointer;
    color: whitesmoke;            
    background: none;           
    border: none;               
    transition: color 0.3s ease;
}

.image-buttons .edit-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 0.65rem 2.2rem; 
}
.image-buttons .edit-btn:hover {
    background-color: plum;
    transform: translateY(-2px);
}
.image-buttons .remove-btn {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 0.65rem 2.2rem;  
}
.image-buttons .remove-btn:hover {
    transform: translateY(-2px);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 0.8rem;
}
.next-btn {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.prev-btn,
.save-button {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
>>>>>>> be8a9c60c6a7058bb718895ca3f39a8d200eef8d
}

.preview-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #ff758c;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.next-btn {

    background:  #ff758c;
    color: #fff;
}
.prev-btn {
    background: #ff758c;
    color: #fff;
}
.next-btn:hover,
.prev-btn:hover {
    background: #ff758c;
    box-shadow: 0 6px 14px rgba(255, 88, 100, 0.3);
}
.save-button {
    background: #ff758c;
    color: #fff;
}
.save-button:hover {
<<<<<<< HEAD
    background: linear-gradient(45deg, #218838, #3db95a);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(40, 167, 69, 0.3);
}

/* ============================
   ANIMATIONS
=============================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   RESPONSIVE
=============================== */
@media (max-width: 480px) {
    .edit-profile-card {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .next-btn, .prev-btn, .save-button {
        width: 100%;
    }

    .image-preview {
        width: 100%;
        height: auto;
    }

    .image-buttons {
        flex-direction: column;
        gap: 6px;
    }
=======
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 88, 100, 0.25);
}

.photo-section {
    flex: 1 1 40%;
    background: rgba(0,0,0,0.25);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-items: center;
    align-items: start;
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
}
.photo-slot {
    position: relative;
    width: 150px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}
.photo-slot:hover {
    border-color: #ff4f6a;
    box-shadow: 0 0 12px rgba(255, 79, 106, 0.4);
    transform: translateY(-3px);
}
.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.photo-slot .remove-photo-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0; 
    transition: opacity 0.3s ease;
}

.photo-slot:hover .remove-photo-btn {
    opacity: 1;
}

.photo-slot .remove-photo-btn:hover {
    background: rgba(255, 0, 0, 1);
}

.add-photo-btn,
.edit-photo-btn {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.add-photo-btn {
    background: #ff4f6a;
    color: #fff;
}
.add-photo-btn:hover,
.edit-photo-btn:hover {
    transform: scale(1.1);
}
.edit-photo-btn {
    background: #fff;
    color: #000;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .edit-profile-container {
        flex-direction: column;
        padding: 2rem;
    }
    .edit-profile-card,
    .photo-section {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .photo-slot {
        width: 120px;
        height: 150px;
    }
    .form-actions {
        flex-direction: column;
    }
>>>>>>> be8a9c60c6a7058bb718895ca3f39a8d200eef8d
}
