/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Apply base styles to body */
body {
    font-family: "Noto Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(131, 112, 105);
    margin: 0;
    position: relative;
    overflow-x: hidden; /* Prevents horizontal scrolling, but allows vertical scrolling */
}

/* Pseudo-element for blurred background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(assets/itsdarly1.jpg); /* Replace with the path to your image */
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    z-index: -1; /* Places the blurred background behind all other content */
    opacity: 0.35; /* Optional: Adjust opacity for subtle effect */
}

/* Container for all elements */
.container {
    position: relative;
    z-index: 1; /* Brings the content above the blurred background */
    background: rgba(255, 255, 255, 0.85); /* Optional: slight transparency for better readability */
    width: 100%;
    max-width: 600px;    
    background-color: rgb(53, 38, 33);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 20px; /* Adds spacing from the edges of the viewport */
}


/* Profile Image */
.profile-image {
    width: 100%;
    /* border-radius: 8px; */
}

/* Name and Social Media Section */
.info-box {
    margin-top: 20px;
    text-align: center;
}

.model-name {
    font-size: 40px;
    font-weight: bold;
    color: rgb(237, 231, 227);
    margin-bottom: 30px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.icon {
    width: 24px;
    height: 24px;
    color: white; /* Change color if needed */
    transition: color 0.3s ease;
}

/* Social Media Links - remove underline */
.social-media a {
    text-decoration: none;
}

.social-media a:hover .icon {
    color: rgb(223, 214, 209); /* Adjust hover color if desired */
}

/* Link Buttons */
.links {
    margin-top: 20px;
}

.link-button {
    display: block;
    width: 100%;
    padding: 30px;
    /* margin-bottom: 10px; */
    text-decoration: none;
    background-color: rgb(237, 231, 227);
    color: rgb(53, 38, 33);
    font-size: 32px;
    font-weight: bold;
    /* border-radius: 8px; */
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: rgb(223, 214, 209);
}

/* Center content on larger screens */
@media (min-width: 768px) {
    .container {
        width: 600px;
        margin: auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}
