@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    line-height: 1.4;
    font-size: 24px;
    color:#f08c00;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff9db;
    background-image: url('head1.png'); /* Add your background image here */
    background-position: 50% 0%; /* Center the background */
    background-repeat: repeat-x; /* Repeat the image horizontally */
    
    display: flex;
    justify-content: center;
    align-items: center;
   
    margin: 0;
}


.text-avatar div {
    color: #f08c00;
    font-family: 'Merriweather',serif;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
}

/* Container styling */
.container {
 
    padding: 20px;
   
    text-align: center;
    width: 100%;
            max-width: 820px;
}

/* Profile image styling */
.profile-img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Header styling */
header {
    margin-bottom: 5px;
       
}



/* Bio and contact styling */
.bio, .contact {
    font-size: 17px;
    color: #341e00;
    margin-bottom: 5px;
    font-family: 'Merriweather',serif;
    font-weight: 400;
}

/* Links container styling */
.links {
    margin-top: 20px;
}

.extra {
        text-align: center;
    line-height: 1.45;
    font-size: 14px;
    letter-spacing: 0;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
color:#341e00;
    max-width: 500px;
    margin: 0 auto;
}




/* Individual link styling */
.link {
    display: block;
    font-size: 18px;
    color: #0077b5;
    text-decoration: none;
    margin: 10px 0;
    padding: 12px;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Link hover effect */
.link:hover {
    background-color: #0077b5;
    color: #fff;
}

/* Footer styling */
footer {
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}


.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;

}

.line {
    width: 30%;
    height: 1px;
      background: linear-gradient(to right, rgba(122, 122, 122, 0) 0%, #341e00 100%);
    margin: 0 10px; /* Space between the line and the arrow */
}

.reverse {
    background: linear-gradient(to right, #341e00 0%, rgba(122, 122, 122, 0) 100%);
    /* Reversed gradient from solid color to transparent */
}

.arrow {
    font-size: 14px; /* Set the size of the arrow */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px; /* Space around the arrow */
}

.arrow svg {
    width: 17px; /* Set the SVG size */
    height: 17px; /* Set the SVG size */
    fill: #341e00 ; /* Icon color matching the lines */
}


.social-buttons {
    display: flex;
    flex-direction: column; /* Keeps buttons in a vertical stack */
    align-items: center;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left (icon on the left) */
    width: 300px;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 3px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0px 10px 30px 0px rgb(51 51 51 / 52%) !important;
}

.social-btn i {
    margin-right: 10px; /* Space between icon and text */
    font-size: 22px;
}

.social-btn span {
    text-align: center; /* Ensures text is centered in the button */
    font-weight: bold;
        flex-grow: 1;
    margin-right: 22px;
}

.social-btn.email {
    background-color: #000;
}

.social-btn.avia {
    background-color: #116cc0;
}

.social-btn.instagram {
    background-color: #f00075;
}

.social-btn.tiktok {
    background-color: #000;
}

.social-btn.youtube {
    background-color: #DB4141;
}

.social-btn:hover {
opacity: 0.9;
}
