/* profile.css */

/* Fonts loaded via /styles/vendor/google-fonts/fonts.css */


/* =========================================================
   2. Global Styles
   ========================================================= */

/* Ensure Images are Responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   3. Profile Page Container
   ========================================================= */

.profile-page {
    margin-top: 40px;
    padding: 20px;
    background-color: #262626; /* Dark background to match vip.css */
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
}


/* =========================================================
   4. Profile Header
   ========================================================= */

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.profile-header p {
    font-size: 18px;
    margin: 5px 0;
    color: #FFC300; /* Gold color for emphasis */
}


/* =========================================================
   5. Profile Gallery
   ========================================================= */

/* Gallery Container */
.profile-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0; /* Removed gap for touching images */
    justify-content: center;
    margin-bottom: 30px;
}

/* Masonry Grid Styling */
.masonry-grid {
    margin: 0 auto;
    width: 100%;
    /* No extra padding so items can be flush */
}

/* Masonry Item Styling */
.masonry-item {
    margin: 0;
    width: 300px; /* Adjust or remove if you want variable widths */
    box-sizing: border-box;
    float: left;
    position: relative; /* For overlay positioning */
}

/* Profile Image Styling */
.profile-gallery .profile-image {
    width: 100%;
    height: auto;
    border-radius: 0; /* Removed rounded corners */
    object-fit: cover;
    box-shadow: none;
    transition: filter 0.3s ease; /* For Brightness Filter */
}

/* Hover Effect: Overlay */
.profile-gallery .image-wrapper {
    position: relative;
    display: block;
}

.profile-gallery .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Hover Effects */
.profile-gallery .image-wrapper {
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
}

.profile-gallery .profile-image {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.profile-gallery .overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-gallery .image-wrapper:hover .profile-image {
    transform: scale(1.05);
}

.profile-gallery .image-wrapper:hover .overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}



/* =========================================================
   6. Profile Bio
   ========================================================= */

.profile-bio {
    background-color: rgba(38, 38, 38, 0.8); /* Semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
}

.profile-bio h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFC300; /* Gold color for headings */
}

.profile-bio p {
    font-size: 16px;
    color: #FFFFFF;
}


/* =========================================================
   7. Responsive Design
   ========================================================= */

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
    .profile-gallery .profile-image {
        width: 45%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .profile-gallery .profile-image {
        width: 100%;
    }

    .profile-page {
        padding: 15px;
    }

    .profile-header h1 {
        font-size: 28px;
    }

    .profile-header p {
        font-size: 16px;
    }

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

    .profile-bio p {
        font-size: 14px;
    }
}

/* Smallest Screens */
@media (max-width: 480px) {
    .profile-header h1 {
        font-size: 24px;
    }

    .profile-header p {
        font-size: 14px;
    }

    .profile-bio h2 {
        font-size: 18px;
    }

    .profile-bio p {
        font-size: 13px;
    }
}


/* =========================================================
   8. Button Styling
   ========================================================= */

/* Contact or Book Now Buttons */
.profile-page .contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF5A5F; /* Vibrant color for call-to-action */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.profile-page .contact-button:hover {
    background-color: #E04848;
}


/* =========================================================
   9. Social Media Icons
   ========================================================= */

/* Social Media Container */
.profile-page .social-media {
    margin-top: 20px;
    text-align: center;
}

/* Social Media Links */
.profile-page .social-media a {
    color: #FFFFFF;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.profile-page .social-media a:hover {
    color: #FFC300; /* Gold color on hover */
}


/* =========================================================
   10. Back to Top Button
   ========================================================= */

/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF5A5F;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    display: none; /* Hidden by default */
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #E04848;
}


/* =========================================================
   11. Masonry Item Overrides
   ========================================================= */

/* Ensure Masonry Images Have No Rounded Corners and No Shadows */
.masonry-item img {
    border-radius: 0; 
    box-shadow: none;
}


/* =========================================================
   12. Optional: Additional Styling
   ========================================================= */

/* You can add any additional customizations below */

/* Example: Adding a subtle border on hover */
.profile-gallery .image-wrapper:hover {
    /*border: 2px solid #FFC300;*/ /* Gold border on hover */
}


/* =========================================================
   13. Breadcrumb Navigation
   ========================================================= */

/* Mobile: Horizontal scroll for breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-container {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar Firefox */
        -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    }

    .breadcrumb-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
}
