/* full-profile.css - For profile.php only */

.full-profile-page {
    /*margin-top: 20px;*/
}

/* Header Section */
.full-header {
    padding: 15px !important;
    text-align: center;
}

.h1 {
    text-align: center;
    font-family: 'Poppins', 'Roboto', sans-serif;
    }

.full-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0px;
    
}

.featured-message {
    font-size: 1.1em;
    color: rgb(254, 67, 101);
    font-weight: 500;
    text-align: center;
}

/* Contact button icons - applies to all screen sizes */
.full-contact-button::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.full-contact-button.primary::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.full-contact-button.secondary::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z'/%3E%3C/svg%3E");
}

/* Profile Content Layout */
.full-profile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0;
}

/* Main Image Section */
.full-profile-main-image {
    position: relative;
}

.full-profile-main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Contact Buttons */
.full-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.full-contact-button {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.full-contact-button.primary {
    background-color: #1E90FF;
    color: #FFFFFF;
}

.full-contact-button.secondary {
    background-color: #FF6347;
    color: #FFFFFF;
}

.full-contact-button:hover {
    opacity: 0.9;
}

/* Profile Details Grid */
.full-profile-details {
    padding: 15px !important;
}

.full-profile-details h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFF;
    text-align: center;
}

.full-info-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    text-align: left;
}

.full-info-item {
    background: #0a0a0a;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.admin-edit-bar {
    grid-column: 1 / -1;
    background: #4CAF50;
    color: #fff;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.05em;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}
.admin-edit-bar:hover {
    background: #43a047;
    color: #fff;
    text-decoration: none;
}

.full-info-label {
    color: rgb(153, 153, 153);
    font-size: 0.9em;
    margin-bottom: 4px;
}

.full-info-value {
    color: #FFFFFF;
    width: 90%;
    font-size: 1.05em;
    font-weight: 500;
}

/* Gallery Grid */
.full-profile-gallery {
    */margin-top: 30px;*/
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.full-gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* About Sections */
.full-profile-about {
    line-height: 1.6;
}

.full-profile-about h2 {
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 15px;
    text-align: center;
}

/* Shows & Services Section */
.full-profile-services h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFF;
    text-align: center;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .full-profile-content {
        grid-template-columns: 450px 1fr;
    }
}

@media (max-width: 768px) {
    .full-profile-page {
        padding: 10px 20px 20px;
    }

    .full-profile-content {
        gap: 0 !important;
    }

    .full-section-box {
        width: 100%;
        padding: 0;
    }

    .full-profile-header.full-section-box {
        padding: 10px 8px !important; /* Reduced side padding for more text space */
    }

    .full-header {
        padding: 0 0 0 0 !important;
        margin-top: 0;
        margin-bottom: 0;
    }

    .full-header h1 {
        font-size: clamp(18px, 5vw, 26px); /* Auto-scale: min 18px, max 26px */
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .featured-message {
        font-size: 15px;
        padding: 0 5px 12px 5px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .full-profile-about h2 {
        font-size: 20px;
    }

    .full-profile-about {
        padding: 15px;
    }

    .full-contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 15px !important;
        margin-bottom: 0;
    }

    .full-contact-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        margin-right: 0 !important;
        font-size: 16px;
    }

    .full-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .full-section-box {
        margin-bottom: 20px;
    }

    .full-profile-services,
    .full-profile-details {
        padding: 15px !important;
    }

    .photo-gallery-grid {
        margin-bottom: 20px;
    }

    .video-gallery-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .full-contact-buttons {
        flex-direction: column;
    }

    .full-gallery-grid {
        grid-template-columns: 1fr;
    }

    .full-info-grid {
        grid-template-columns: 2fr;
    }
}