@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", Helvetica;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: fadeInAnimation ease 0.7s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
    
}

.header{
    background-color: magenta;
    color: white;
    padding: 60;
    border-bottom: 1px solid black;
}


.row{
    background-color: purple;
}

li a{
    text-decoration: none;
    color: white;
}

li{
    display: inline-block;
    padding: 10;
}

.row li:hover{
    background-color: rgba(0, 0, 0, 0.389);
    transition: 0.3s 0.1s ease-out;
}

ul{
    display: inline-block;
    text-align: center;
}

.footer{
    background-color: black;
    color: white;
    pointer-events: none;
    padding: 15; 
    text-align: center;
    margin-top: auto;
}




/* Log In Page */




.login-section{
    display: grid;
    padding: 100px;
    align-items: center;
    justify-content: center;
}

.log-btn{
    width: 90;
}

.login-section h3{
    text-align: center;
    font-size: 40px;
    padding-bottom: 20;
    pointer-events: none;
}

.login-section input{
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3px;
}


.login-form a, label, span{
    display: block;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
}

.login-form label{
    margin-top: 20;
    margin-bottom: 0;
}

.login-form [type="submit"]{
    margin-top: 20px;
    border: 1px solid black;
    background-color: violet;
    border-radius: 3px;
    cursor: pointer;
}

.login-form a{
    color: black;
    text-decoration: none;
}

.login-form a:hover{
    color: rgb(240, 78, 216);
    text-decoration: underline;
}




/* About Us */




.about-us{
    padding: 20px;
    margin-bottom: 200;
    margin-top: 200;
    width: 300px;
}

.about-us h1{
    font-size: 40px;
}

.about-us p{
    font-size: 17px;
}


.customers-service{
    padding: 20px;
    margin-bottom: 245;
    margin-top: 178;
}


/* Home - Customer Service */


.report-wrapper{
    background: #b61f9db0;
    padding: 30;
    max-width: 400px;
    border: 1px rgb(0, 0, 0) solid;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: rgba(55, 55, 55, 0.534) 1px 5px 10px;
}

.report-form label{
    margin-bottom: -10;
    font-size: 17px;
    font-weight: 300px;
}


.report-form span{
    display: inline-block;
    border: 2px solid rgba(0, 0, 0, 0);
    min-width: 300px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin-left: -3;
}

.report-form .r-btn{
    padding: 8;
    width: 90px;
    border-radius: 8px;
    border: 0.7px black solid;
    background-color: #cb00b7;
    color: white;
}

.report-form .r-btn:hover{
    color: white;
    background-color: #ee98e6;
    border: 0.7px black solid;
}




/* Register */




#register{
    margin-top: -8px;
    margin-bottom: 30px;
}

#register:hover{
    color: #cb00b7;
}



/* Sign-up Form */


.signup-form{
    display: flex;
    margin: 100px;
    align-items: center;
    justify-content: center;
}

.signup-form h3{
    font-size: 40px;
    padding-bottom: 30;
    padding-top: -80px;
    pointer-events: none;
    text-align: center;
}

.signup-form a, label, span{
    display: block;
    font-size: 15px;
    margin-top: 14px;
    margin-bottom: 25px;
}

.signup-form span{
    pointer-events: none;
}

.signup-form input{
    margin-top: 1px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.wrapper input{
    min-width: 300px;
    padding: 10px;
}

.signup-form [type="submit"]{
    display: grid;
    margin-top: 10;
    background-color: violet;
    padding: 3;
    cursor: pointer;
    width: 90;
    border-radius: 5px;
}

div [type="submit"]:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px #cb00b7 solid;
} 

.signup-form label{
    float: none;
    display: flex;
}

.signup-form a{
    color: black;
    text-decoration: none;
}

.signup-form a:hover{
    text-decoration: underline;
    color: #cb00b7;
}



/* Forgot Password */



.forgot-pw{
    display: grid;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
    min-width: 40vw;
}

.forgot-pw .frame{
    border: 1px rgb(187, 187, 187) solid;
    margin: 40px 0 50px 0;
}
.forgot-pw h3{
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.forgot-pw p{
    display: block;
}

.forgot-pw input{
    margin-top: 40px;
    width: 200px;
    border-radius: 5px;
}

.forgot-pw button{
    padding: 6px;
    background-color: violet;
    color: black;
    border-radius: 5px;
    cursor: pointer;
}

.find-acc{
    margin-bottom: 130px;
}


.cancel a{
    text-decoration: none;
    color: black;
}

.cancel:hover{
    background-color: #ffffff;
    color: #000000;
    border: 2px #cb00b7 solid;
    cursor: pointer;
}



/* Home page */



.footer-home{
    background-color: black;
    color: white;
    pointer-events: none;
    padding: 15; 
    text-align: center;
    margin-top: 0;
}


.profile{
    padding-left: 20px;
    padding-bottom: 40px;
}

.profile h2{
    font-size: 40px;
    padding-top: 70px;


    @media screen and (max-width: 600px) {
        font-size: 30px;
    }
}

.profile h2, .profile p{
    padding-left: 50px;
}


.row-home{
    background-color: purple;
    overflow: hidden;
}   

.row-home li:hover{
    background-color: rgba(98, 1, 98, 0.712);
    text-shadow: #fff 3px 0 10px;
}

.row-home a{
    color: white;
}

.header-home{
    background-color: #cb00b7;
    color: white;
}

.header-home h1{
    font-size: 30px;
    text-align: center;
    margin: 3px 0 3px 0;
}

.header-home p{
    float: none;
    text-align: center;
    margin: -7px 0 5px;

}

.navright a{
    float: right;
    color: white;
}

.float{
	position:fixed;
	width: 60px;
	height: 60px;
    bottom: 40px;
	right: 40px;
	color:#434343;
    background-color: #434343;
	border-radius: 50px;
    text-align: center;
	box-shadow: 2px 2px 3px #363636;
}

.fa-chevron-up{
    align-items: center;
    color: rgb(200, 200, 200);
    font-size: 30px;
    padding-top: 14px;
}

.fa-chevron-up:hover{
    text-shadow:  #fff 1px 0 10px;
    color: white;
}

/* Home page, slideshow */

.slideshow-container{
    border: 1px #000 solid;
    margin: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #000;

    @media screen and (max-width: 400px) {
        height: 100vh;
        margin: 5px;
    }
}



.slideshow {
    width: 100%;
    max-width: 100%; 
    height: 500px;
    overflow: hidden;
    position: relative;
    margin: 0 auto; /* Center the slideshow */
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
  
  /* Container for all the slides */
  .slides {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition when changing slides */
    height: 100%;
    position: relative;
}
  
  /* Each individual slide */
  .slide {
    width: 100%; /* Ensure only one slide is shown at a time */
    height: 100%; /* Fill the entire height */
    position: relative;
    display: none; /* Initially hide all slides */
}
  
  /* Show only the active slide */
  .slide.active {
    display: block; /* Show the active slide */
}
  
  /* Ensures images cover the entire slide container */
  .slide img {
    width: 100%; /* Image takes up the full width */
    height: 100%; /* Image takes up the full height */
    object-fit: cover; /* Ensure the image covers the slide area without distortion */
    object-position: center center; /* Center the image to ensure the key part is visible */
    display: block;
}
  
  /* Dark overlay to help with text visibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Transparent dark background */
    z-index: 1; /* Overlay sits above the image but below the text */
}
  
  /* Text container styling */
.text-overlay {
    position: absolute;
    top: 50%; /* Vertically center text */
    left: 50%; /* Horizontally center text */
    transform: translate(-50%, -50%); /* Truly center the text */
    width: 80%; /* Optional width for text container */
    text-align: center; /* Center-align the text */
    color: white;
    z-index: 2; /* Text sits above the overlay */
}
  
  /* Title styling */
  .quote-title {
    font-size: 36px; /* Large font size for the title */
    font-weight: bold;
    margin-bottom: 20px; /* Space between title and quote */
}
  
  /* Quote styling */
  .quote-text {
    font-size: 20px; /* Smaller font for the quote */
    font-style: italic;
    line-height: 1.5;
}
  
  /* Navigation buttons */
.slideshow button {
    position: absolute;
    top: 50%;
    background: rgb(189, 54, 189);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
    transition: 0.5s ease-in-out;
}

  
.prev {
    left: 10px;
}
  
.next {
    right: 10px;
}
  
.slideshow button:hover {
    background-color: #eee;
    color: rgb(189, 54, 189);
}
  
  /* Media Query for responsiveness */
@media (max-width: 800px) {
    .slideshow {
      max-width: 100%;
    }
  
    .quote-title {
      font-size: 28px;
    }
  
    .quote-text {
      font-size: 16px;
    }
}
  



/* Product Planning */

.product-planning-page{
    height: auto;
    background-color: #ffffff;
    color: black;
    min-height: 300px;
}

.product-planning{
    height: 70rem;
    min-width: 300px;
    padding: 90px;

    @media screen and (max-width: 600px) {
        padding: 30px;
        border-radius: 25px;
    }

    @media screen and (max-width: 400px) {
        padding: 20px;
        border-radius: 15px;
    }
}



/* Name Generator */


.generator-wrapper{
    box-sizing: border-box;
    border: 1px #000 solid;
    border-radius: 20px;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    box-shadow: 0px 4px 8px #000;

    @media screen and (max-width: 400px) {
        margin: 3px;
        margin-bottom: 400px;
    }


}

.planning{
    .input-section{
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        width: 100%;
        max-width: 600px;
    }

    h1{
        font-size: 2.5rem;
        padding-top: 30px;
        color: #000000;
    }

    p{
        font-size: 1rem;
        color: #555;
    }

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    textarea, input{
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    button{
        padding: 12px 24px;
        background-color: #ff39fc;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    button:hover{
        background-color: #a6189d;
    }

    .results-section{
        max-width: 600px;
        width: 100%;
    }

    h2{
        margin-bottom: 10px;
    }  
    
    ul{
        list-style: none;
        padding: 0;
    }

    li{
        background-color: #fff;
        padding: 12px;
        margin-bottom: 10px;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }


    @media (max-width: 768px){
        .input-section {
          padding: 15px;
        }
      
        button {
          width: 100%;
        }
    }

}




/* Product Planning Page Content */




.product-planning-page .content{
    padding: 100px;
    margin-bottom: -50;
}



/* Sales Calculator */

.calc{
    height: auto;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.sales-calculator-page{
    height: 70rem;
    min-width: 300px;
    padding: 90px;
    color: #000;

    @media screen and (max-width: 600px) {
        padding: 30px;
    }
}



.calc-wrapper{
    margin: 0px 10px;
    padding: 10px;
    padding-bottom: 300px;
    border: 1px black solid;
    border-radius: 30px;
    display: block;
    flex-direction: row;
    align-items: center;

    @media screen and (max-width:400px) {
        display: flex;
        flex-direction: column;
    }
}

.calc-wrapper h1{
    color: white;
    padding-left: 50px;
}

.scalc-content{
    padding: 100px;
}

#calc-wrapper{
    background-image: linear-gradient(to bottom right,#996b94, #fb8eff, #d431c4);
    width: 100vw;
    height: auto;
    margin-bottom: 100px;
    max-width: 100vw;
    justify-content: center;
    align-items: center;
    display: flex;

    @media screen and (max-width: 400px) {
        display: flex;
        flex-direction: column;
        background: #cb00b7;
    }
}


#c-wrapper{
    background-color: #a032a3;
    border: 1px solid #000;
    margin: 20px;
    border-radius: 20px;
    padding: 20px;
}


/* Calculator styling */
.calculator {
    margin-left: 20px;
    width: 100%;
    max-width: 350px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 400px) {
        margin: 0;
    }
}

/* Display field */
#display {
    width: 100%;
    height: 50px;
    font-size: 30px;
    text-align: right;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f7f7f7;
}

/* Button grid layout */
.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

button {
    padding: 20px;
    font-size: 24px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f4f4f4;
    transition: background-color 0.2s;
    cursor: pointer;
}

button:hover {
    background-color: #e0e0e0;
}

button:active {
    background-color: #ccc;
}

/* History section */
.history {
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#history-list {
    list-style-type: none;
    padding: 0;
}

#history-list li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}

/* Responsive design */
@media (max-width: 400px) {
    .calculator {
        padding: 15px;
        width: 90%;
    }

    button {
        font-size: 20px;
        padding: 15px;
    }

    #display {
        font-size: 28px;
    }
}



/* Frame Home Page */


.frameHome{
    border: 2px rgba(161, 161, 161, 0.781) solid;
    width: inherit;
    margin: 50px;

    @media screen and (max-width: 300px) {
        margin: 2px;
    }
}


/* Sales Quota */


.sales-quota-page{
    height: 100%;
    background-color: #ffffff;
    color: black;

    @media screen and (max-width: 600px) {
        padding: 30px;
        border-radius: 25px;
    }
}

.quota-wrapper{
    padding: 20px;
    border: 1px #000 solid;
    display: flex;
    flex-direction: row;
    margin: 10px;
    border-radius: 20px;
    background-color: #eee;
}

.sales{
    padding: 60px;
}





/* Customer's service, about */



#about{
    padding-bottom: 200px;
}



/* Sales Table - Quota */
