/* CSS styles for the Hopp Link-in-Bio Page */
body {
    font-family: 'Avenir', 'Kantumruy Pro', 'kulankoulen', sans-serif; /* Updated font family */
    background-color: #ffffff; /* Updated background color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-image: url('Image/MASTER PLAN.jpg'); /* Your specified background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps background fixed when scrolling */
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #003B49; /* Updated container background color */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    text-align: center;
    backdrop-filter: blur(5px); /* Adds a subtle blur effect to the background behind the container */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
    /* Added for internal scrolling */
    max-height: 90vh; /* Limits the height of the container to 90% of the viewport height */
    overflow-y: auto; /* Adds scrollbar only when content overflows vertically */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.container::-webkit-scrollbar {
    display: none;
}

.profile {
    margin-bottom: 20px;
    position: relative; /* Needed for absolute positioning of video */
    display: flex; /* Use flexbox to center content */
    flex-direction: column;
    align-items: center;
}

.profile-video-wrapper {
    /* This wrapper is for the video to ensure it's circular */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden; /* Ensures video stays within the circle */
    margin-bottom: 10px;
    border: 4px solid #fff; /* Thicker white border around video */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow for profile video */
    display: flex; /* For centering video inside wrapper */
    justify-content: center;
    align-items: center;
}

.profile-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire circular area */
    transform: scale(1.05); /* Slightly zoom in to avoid edges */
}

.profile-pic { /* This style is for the image tag, if you decide to use it instead of video */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow for profile pic */
    /* If you're using the video, this specific .profile-pic might not be directly applied to anything */
}


.profile-name {
    font-size: 1.6em; /* Slightly larger font */
    margin: 0;
    color: #ffffff; /* Updated text color */
    font-weight: 700; /* Bolder */
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
}

.social-links a {
    color: #ffffff; /* Updated icon color */
    font-size: 1.8em; /* Larger icons */
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out; /* Smooth transition with transform */
}

.social-links a:hover {
    color: #006882; /* Updated hover color */
    transform: translateY(-3px); /* Slight lift on hover */
}

.links-section {
    padding-top: 25px; /* More padding */
    border-top: 1px solid #eee; /* Lighter border */
    margin-top: 25px; /* More margin from profile section */
}

.search-bar {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 30px; /* More rounded */
    overflow: hidden;
    margin-bottom: 25px; /* More margin */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Subtle shadow for search bar */
}

.search-bar input {
    flex-grow: 1;
    border: none;
    padding: 12px 20px; /* More padding */
    outline: none;
    font-size: 1.05em; /* Slightly larger text */
    background-color: #f9f9f9; /* Light background for input */
}

.search-bar button {
    background-color: #003B49;
    color: #fff;
    border: none;
    padding: 12px 25px; /* More padding */
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease-in-out;
}

.search-bar button:hover {
    background-color: #006882;
}

.section-title {
    font-size: 1.2em; /* Larger font */
    font-weight: normal;
    color: #ffffff; /* Updated text color */
    margin: 20px 0; /* More margin */
}

/* Styles for property cards */
.property-card {
    background-color: #fff; /* Card background remains white for contrast */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 15px;
    text-align: left; /* Align text within card to left */
    overflow: hidden; /* Ensures image corners are rounded */
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #003B49; /* Card title color */
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center; /* Center card title */
}

.card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers the area without distortion */
    border-radius: 8px; /* Slightly rounded corners for image */
    margin-bottom: 15px;
}

.card-details p {
    font-size: 14px;
    color: #003B49; /* Card detail text color */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* Update this section for social media icons */
.social-links a {
    color: #ffffff;
    font-size: 1.5em; /* Change from 1.8em to 1.5em */
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.card-details p i {
    margin-right: 8px;
    color:#003B49;
    /* Add this line to make the icons larger and consistent */
    font-size: 12px; 
}

.card-button {
    display: block;
    background-color: #003B49; /* A blue color for the button */
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
    text-align: center;
}

.card-button:hover {
    background-color: #006882; /* Darker blue on hover */
}
