
@font-face {
    font-family: 'Memesique';
    src: url('fonts/Memesique-Regular.ttf') format(truetype);
}

body {
    background-color: #fcfbd9;
    color: rgb(18, 6, 6);
    font-family: 'Inter Tight', sans-serif; /* Default Font */
    text-align: left; /* Align all body content to the left */
    margin: 0;
    padding: 0;
    cursor: url('images/cursorsmol.png'), auto;

}


/*navbar styling*/
.navbar {
    background-color: #fcfbd9;
    mix-blend-mode: normal;
}
.navbar-nav .nav-link {
    font-family: 'Inter Tight', sans-serif; 
    font-weight: bold;
    font-size: medium;
    color: #f5006e;
    position: relative;
    right: -13px;
    transition: color 0.3s ease; 
}
.navbar-nav .nav-link:hover {
    color: #f5d521; 
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #f5d521;
    bottom: 7px; 
    left: 8px;
    right: 0;
    transform: scaleX(0); 
    transform-origin: left;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}
.navbar-nav .nav-item {
    margin-right: 20px; 
}
.navbar-nav .dropdown-menu {
    opacity: 0; 
    transform: translateY(-100px); 
    background-color: transparent;
    border: none; 
    box-shadow: none; 
    right: -20px;
    left: auto;
    text-align: right;
}
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block; 
    opacity: 1; 
    transform: translateY(0); 
}
.navbar-nav .dropdown-item {
    color: #ff2e8c; 
    position: relative;
    transition: color 0.3s ease; 
    background-color: transparent; 
    border: none; 
    font-family: 'Inter Tight';
    font-size: medium;
    font-weight: bold;

}
.navbar-nav .dropdown-item:hover {
    color: #f5d521; 
}
.navbar-nav .dropdown-item::after {
    content: '';
    position: absolute;
    right: 17px;
    bottom: -3px; 
    width: 0;
    height: 2px; 
    background-color: #f5d521; 
    transition: width 0.3s ease; 
}
.navbar-nav .dropdown-item:hover::after {
    width: 43%; 
}


/*navbar brand*/
.navbar-brand {
    color: #f5006e;
    font-family: 'Inter Tight', sans-serif;
    font-size: medium;    
    font-weight:bold;
    padding-left: 11px;

}
.navbar-brand::after{
    content: " :3";
    opacity: 0;
}
.navbar-brand:hover {
    color: #f5d521;
    transform: skew(3deg,2deg);
    transition: all 0.2qes ease;
}
.navbar-brand:hover::after {
    opacity: 1;
}


/*homepage*/
.landing {
    position: relative;
    height: 100vh; 
    display: flex;
    flex-direction: column; 
    justify-content: flex-end; 
    padding-left: 20px; 
    padding-top: 925px;
    
}
.landing .subtitle-banner {
    font-family: 'Inter Tight', sans-serif; 
    font-size: 2rem;
    color: #f5d521;
    font-weight: bold;
    margin-bottom: 11.9cm;
    padding-left: 5px;
}
.landing .name-banner {
    color: rgb(255, 58, 143);
    font-family: 'Memesique';
    font-size: 25rem;
    font-weight: normal;
    text-transform: lowercase;
    margin-top: -17cm; 
    margin-bottom: 0;
    display: inline-block;
}
#nameText {
    background-image: url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExazN6ejZhbHI1b3pnZGQ1ZGF5bGg1cWV3ZzczY3M0cnNpZnU5M3ZuciZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/aJcT9U5loQ0me296ss/giphy.gif); /* Replace with your GIF */
    background-size: 1200px;  
    background-clip: text; 
    background-position: center center;
    color: transparent;  
    -webkit-background-clip: text; 
    position: relative;
    z-index: 1;
}
.homepage-image {
    position: absolute;
    top: -20px; 
    right: -1000px; 
    width: 150px; 
    z-index: 1; 
}
.image-overlay {
    position: absolute;
}
.image-1 {
    top: 200px; 
    right: 80px; 
    z-index: 2; 
    width: 470px; 
}
.image-2 {
    top: 85px; 
    right: 80px;
    z-index: 2; 
    width: 200px;
}
.image-1:hover {
    transform: scale(0.95);
    transition: all 0.2s ease;
}
.image-2:hover{
    transform: scale(0.95);
    transition: all 0.2s ease;
}


/*contents*/
section {
    padding: 80px 0; 
    margin-bottom: 20px; 
}


/*profile*/
#profile {
    background-color: #fcfbd9;
}
section h1 {
    color: #f5006e;
    font-family: 'Inter Tight';
    font-size: 50pt;
    padding-top: 5px;
    font-weight: bold;
}
section p {
    text-align: left;
    max-width: 1000px;
    margin: 0px;
    margin-top: 30px;
    font-family: 'Inter Tight';
    color: #f5006e;
    font-weight: 0;
    font-size: 1.5rem;
}
.btn-custom {
    padding: 0;
    margin-top: 40px;
    font-family: 'Inter Tight';
    font-weight: bolder;
    font-size: 1.5rem;
    color: #f5006e;
    position: relative;
    transition: color 0.3s ease;
}
.btn-custom:hover {
    color: #f5d521; 
}
.btn-custom::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 3px;
    background-color: #f5d521;
    bottom: 7px; 
    left: 1px;
    right: 11px;
    bottom: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.btn-custom:hover::after {
    transform: scaleX(1); 
    width: 100%
}
.profile-img {
    max-width: 32%; 
    height: auto;
    border-radius: 0;
    margin-top: 0;
}
@media (min-width: 768px) {
    .container .row:nth-child(odd) .profile-img {
        margin-left: auto;
    }

    .container .row:nth-child(even) .profile-img {
        margin-right: auto;
    }
}
.profile-img:hover {
    transform: scale(0.95);
    transition: all 0.2s ease;
}


/*gallery pictures*/
section h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 100px;
    font-family: 'Inter Tight';
    font-weight: bold;
    color: #f5006e;
}
#portfolio {
    background-color: #fcfbd9; 
    height: max-content;
    padding-top: 0; 
    padding-bottom: 20px;
    margin-top: 0;
}
.thumbnail {
    position: relative;
    display: flex; 
    flex-direction: column;
    justify-content: flex-end; 
    overflow: hidden;
    margin-bottom: 15px; 
}
.thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover; 
    transition: transform 0.3s ease, filter 0.3s ease; 
}
.thumbnail-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background:#f5d521;
    color: #ff2e8c;
    text-align: center;
    opacity: 0; 
    padding: 10px;
    transition: opacity 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}
.thumbnail:hover img {
    transform: scale(1.1); 
    filter: brightness(0.7);
}
.thumbnail:hover .thumbnail-description {
    opacity: 1;
    font-family: 'Inter Tight';
}



.full-screen {
    padding-top: 50px; 
    padding-bottom: 50px;
}
.full-screen {
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    padding: 0 20px; 
}
html {
    scroll-behavior: smooth;
}
section {
    margin: 0;
    padding-top: 20px; 
}



/*scrolling animation*/
.fade-in-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.fade-in-out.visible {
    opacity: 1;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0; 
}


/*copyright 2024*/
#footer {
    background-color: #f5d2d2;
}
#footer h1 {
    margin: 0;
    color: #f5006e;
    font-weight: 500;
    font-size: medium;
    text-align: center;
}

