@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --font-normal: #908e91;
    --background-color: #fff0e9;
    --font-red: #ea5858;
    --color-yellow: #fdcc63;
    --font-normalDark: #3c3835;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
}

body, html {
    width: 100%;
    height: 100%;
    /* overflow-x: hidden;  */
    background-color: var(--background-color);
    font-family: "Josefin Sans", sans-serif;
}

#root {
    padding: 0 5rem; 
    max-width: 100%; 
}

@media (max-width: 768px) { 
    #root {
        padding: 0 1rem;
    }
}

/* Navigation Bar */
.navigation-bar {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem; 
    font-family: "Dancing Script", cursive;
}

#logo-text {
    color: var(--font-normalDark);
    margin-top: 1.5rem;
}

.links-nav > ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    font-size: 1rem;
}

.links-nav > ul > li > a {
    color: var(--font-normalDark);
    text-decoration: none;
}

.login-signup > ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    font-size: 1rem;
}

#signup-btn {
    border: 2px solid var(--font-red);
    border-radius: 30px;
    padding: 0.5rem 1rem;
}

#signup-btn > a {
    color: var(--font-red);
    text-decoration: none;
}

#signup-btn:hover {
    background-color: var(--font-red);
}

#signup-btn:hover > a {
    color: var(--background-color);
}

/* Animations */
.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 3s linear forwards;
    animation-iteration-count: 1;
    animation-delay: 1s;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

#arrow {
    animation: arrow 2s linear forwards;
    opacity: 0;
}

@keyframes arrow {
    to {
        opacity: 1;
    }
}

.dashed {
    stroke-dasharray: 5, 12;
}

/* Hero Section */
.hero-text {
    font-family: "Dancing Script", cursive;
}

.hero-para-text, h2 {
    font-family: "Montserrat", sans-serif;
}

.ifrm {
    border: none;
    width: 100%;
    margin-top: 50px;
}
.loader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
.image {

    width: 200px;
    height: 200px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.error-container{
    width: 100%;
    height: 100%;

}
.error-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    color: var(--font-normalDark);
}
.about-text{
    font-family: "Open Sans", serif;

}

/* Customize the scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 2px;  
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;  /* Set the background of the scrollbar track */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #888;  /* Set the color of the scrollbar thumb */
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #555;  /* Change color of the thumb when hovered */
  }
  