:root {
    --light-green: #8ec893;
    --light-purple: #c39dc9;
}

body {
    background: white;
    background-image: linear-gradient(to bottom right, rgba(142, 200, 147, 0.3),rgba(195, 157, 201, 0.3));
    min-height: 100vh;
    padding-top: 76px;
    position: relative;
}

.writen {
    font-family: "Caveat", sans-serif;
    color: black;
}

.contact-btn {
    margin: auto;
    padding: 10px 20px;
    background-color: var(--light-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.background-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    filter: blur(0.5px);
    transition: opacity 1s ease;
}

.path-green, .path-purple {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round; 
    filter: blur(0.5px);
    stroke-dasharray: 1500; 
    stroke-dashoffset: 1500;
    transition: all 0.8s ease;
}

.path-green {
    stroke: var(--light-green);
    stroke-width: 2;
    opacity: 0.7;
}

.path-purple {
    stroke: var(--light-purple);
    stroke-width: 2;
    opacity: 0.7;
}

.path-green, .path-purple {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.navbar {
    background: rgba(221, 221, 221, 0.4) !important;
    backdrop-filter: blur(10px);
    padding: 0 1rem;
    height: 60px;
}

.navbar-brand {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 25px 25px;
    padding: 25px 35px;
    margin-top: -5px;
    margin-bottom: -25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1060;
    overflow: visible;
}

.navbar-brand:hover {
    transform: translateY(20px);
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--light-green), var(--light-purple));
    border-radius: 25px 25px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1061;
}

.navbar-brand:hover::after {
    opacity: 0.8;
}

.navbar-nav {
    height: 60px;
    align-items: center;
}





.nav-link {
    padding: 0.5rem 1rem !important;
}

.dropdown-menu {
    background: rgba(221, 221, 221, 0.4) !important;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.dropdown-item {
    padding: 0.5rem 1rem !important;
    margin-bottom: 6px;
    margin-top: 6px;
}

.dropdown-item:hover {
    background: rgba(212, 212, 212, 0.3) !important;
    border-radius: 10px;
}

/* Mobile-only navbar tweaks */
@media screen and (orientation: portrait){
    .navbar-nav {
        height: fit-content;
        align-items: center;
        background: #fff;
        border-color: #8ec893;
        border-radius: 20px;
        border-style: solid;
        margin-right: 25px;
        width: fit-content;
    }

    .dropdown-menu {
        background: #fff !important;
        width: inherit;
    }
}

.curved-border {
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.curved-border:hover {
    transform: scale(1.02);
}

.section {
    position: relative;
    padding: 40px 4rem;
    scroll-margin-top: 120px;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: aliceblue;
    background-image: linear-gradient(to bottom right, rgb(255, 255, 255), rgb(255, 255, 255));
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.quote {
    position: relative;
    font-size: 1.2rem;
    font-style: italic;
    color: #303030;
    border-left: 4px solid var(--light-purple);
}

.quote::before {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: var(--light-green);
    opacity: 0.3;
}

.quotetext {
    color: #0a0a0a;
    font-style: normal;
    text-align: left;
}

.quote-author {
    color: #616161;
    font-style: normal;
    font-size: 15px !important;
    text-align: right;
}

.container {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}


