

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Main Content */

/* Hero Section */
.body-part{
    margin-top:80px;
}


.user-name h1 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top:-20px;
    font-weight: bold;
}

.hero-text p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.8;
   
}

.rating {
    display: flex;
    align-items:center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.rating-text {
    color: #cccccc;
    font-size: 14px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

a.request-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.request-btn:hover,.request-btn:focus{
    color: #ffd700;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: bold;
    background:black;
    border:2px solid #ffd700; 
}

/* Contact Form Section */
.contact-section {
    margin-bottom: 50px;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:5px;
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #cccccc;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #ffffff;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 50px;
    padding:0px 25px;
}

.gallery-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #cccccc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item:first-child img {
    height: 415px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }

    .gallery-item:first-child img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.profile-image{
    height: 300px;
    width: 250px;
    left:0px;
    margin-top:-250px;
  
    padding:0;
}
.profile-image img{
    height:100%;
    width:100%;
    object-fit: contain;
  box-shadow: 0px 0px 5px rgba(255,255,255,0.7);
}


/* Comments Container */
.comments-container {
    max-width: 800px;
  
}

/* Comments Header */
.comments-header {
    margin-bottom: 20px;
}

.comments-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Comment Input Section */
.comment-input-section {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.comment-input {
    flex: 1;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
    resize: none;
    min-height: 40px;
}

.comment-input::placeholder {
    color: #888;
}

.send-btn {
    background-color: #6c5ce7;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #5a4fcf;
}

/* Comment Thread */
.comment-thread {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height:400px;
    scrollbar-width: none;
    padding: 20px;
    overflow-y: auto;
    background-image:radial-gradient(rgba(255,255,255,0.1),rgba(255,255,255,0.4));
}

/* Individual Comment */
.comment {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.comment-author {
    font-weight: 600;
    font-size: 14px;
}

.verified-badge {
    background-color: #1da1f2;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.comment-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #e1e1e1;
}

.comment-emojis {
    margin: 5px 0;
    font-size: 16px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
}

.comment-action {
    cursor: pointer;
    transition: color 0.3s;
}

.comment-action:hover {
    color: #ffffff;
}

.comment-timestamp {
    color: #666;
    font-size: 11px;
    margin-top: 3px;
}

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #ff4757;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
    margin-left: 5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .comment-input-section {
        flex-direction: column;
        gap: 10px;
    }

    .comment-input {
        width: 100%;
    }

    .send-btn {
        align-self: flex-start;
    }

    .comment-avatar {
        width: 35px;
        height: 35px;
    }

    .comment-actions {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .comments-title {
        font-size: 16px;
    }

    .comment-text {
        font-size: 13px;
    }

    .comment-actions {
        gap: 10px;
        font-size: 11px;
    }
}

.divider{
    margin:20px 0px;
    content:"";
    border:1px solid rgba(255,255,255,0.8);
}

/* messenger */

.email-compose-window {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    color:white;
    border:1px solid white;
}

.email-header {
    background-color: #4a4a4a;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    background: none;
    border: none;
    color: white;
    padding: 4px;
    cursor: pointer;
    font-size: 14px;
}

.header-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.email-form {
    padding: 0;
}

.form-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    min-height: 40px;
}

.form-label {
    width: 100px;
    padding: 12px 16px;
    font-size: 14px;
    color: #0e0e0e !important;
    font-weight: 400;
    background-color: #fafafa;
    border-right: 1px solid #e5e5e5;
    margin: 0;
}

.form-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.form-control {
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    background: transparent;
    flex: 1;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-actions {
    position: absolute;
    right: 16px;
    display: flex;
    gap: 12px;
}

.form-action-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.form-action-btn:hover {
    color: #007bff;
}

.email-body {
    min-height: 300px;
    padding: 16px;
}

.email-body textarea {
    width: 100%;
    height: 280px;
    border: none;
    resize: none;
    font-size: 14px;
    font-family: inherit;
    background: transparent;
}

.email-body textarea:focus {
    outline: none;
}

.email-footer {
    padding: 16px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-send {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-send:hover {
    background-color: #0056b3;
}

.send-dropdown {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 6px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.send-dropdown:hover {
    background-color: #0056b3;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-icon {
    color: #888;
    font-size: 16px;
    cursor: pointer;
}

.footer-icon:hover {
    color: #333;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-right .footer-icon {
    font-size: 14px;
}

.send-button-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.send-button-group .btn-send {
    border-radius: 0;
}