/* Font Definitions */
@font-face {
    font-family: 'Roboto Reg';
    src: url('Roboto-Regular.ttf') format('truetype');
    font-weight: 100; /* Book */
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Thin';
    src: url('Roboto-Thin.ttf') format('truetype');
    font-weight: 200; /* Medium */
    font-style: normal;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Roboto Reg', sans-serif;
    font-weight: 100; /* Default to Medium weight */
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    flex-direction: column;
}

.page-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 70px;
    padding-bottom: 50px;
}

.page-containerb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px; /* Padding to prevent overlap with navbar/footer */
}

.content {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Navbar*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF; /* White background */
    height: 60px;
    display: flex;
    justify-content: space-between; /* Space between sections */
    align-items: center; /* Align items vertically */
    padding: 0 20px;
    border-bottom: 1px solid #CCCCCC;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Logo Section */
.navbar-brand {
    display: flex;
    align-items: center; /* Vertically center the logo */
    gap: 8px; /* Space between logo and text */
}

.navbar-brand img {
    width: 100px; /* Adjust size */
    height: auto;
}

.navbar-brand .title {
    font-family: 'Roboto Reg', sans-serif;
    font-size: 1.5rem;
    font-weight: 400; /* Regular weight */
    color: #000000;
}

/* Centered Button */
.navbar-center {
    position: absolute; /* Absolute positioning for precise centering */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
}

/* Centered Button Styling */
.navbar-center .cta-button {
    font-family: 'Roboto Reg', sans-serif; /* Use Roboto for consistency */
    font-weight: 400; /* Lighter weight for elegance */
    font-size: 0.9rem; /* Slightly smaller text */
    color: #FFFFFF; /* White text */
    background-color: #000000; /* Black background */
    border: 1px solid #000000; /* Subtle border */
    border-radius: 5px; /* Subtle rounding */
    padding: 6px 18px; /* Compact padding */
    text-decoration: none; /* No underline */
    text-transform: uppercase; /* Bold, clean text style */
    letter-spacing: 0.5px; /* Slight spacing for readability */
    transition: all 0.3s ease; /* Smooth transitions */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover Effect for the Button */
.navbar-center .cta-button:hover {
    background-color: #FFFFFF; /* Invert to white */
    color: #000000; /* Black text */
    border-color: #000000; /* Maintain black border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Enhance shadow */
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Active State for the Button */
.navbar-center .cta-button:active {
    background-color: #F0F0F0; /* Subtle gray for pressed state */
    color: #000000; /* Black text */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Dim shadow */
    transform: translateY(1px); /* Press effect */
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto; /* Push links to the right */
}

.navbar-nav a {
    font-family: 'Roboto Reg', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none; /* Remove underline */
    color: #000000; /* Black text */
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #666666; /* Lighter color on hover */
}

/* Toggler Styles */
.navbar-toggler {
    display: none; /* Hidden by default (desktop) */
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.navbar-toggler div {
    background-color: #000000; /* Black lines */
    height: 3px;
    width: 100%;
    border-radius: 2px; /* Slight rounding */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        display: none; /* Hide links initially */
        flex-direction: column; /* Stack links */
        background-color: #FFFFFF; /* White background */
        position: absolute;
        top: 60px; /* Below navbar */
        right: 0;
        width: 100%; /* Full width */
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }

    .navbar-nav.active {
        display: flex; /* Show links when toggled */
    }

    .navbar-toggler {
        display: flex; /* Visible on mobile */
    }
}

/* Footer */
.footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #F9F9F9;
    color: #666666;
    border-top: 1px solid #CCCCCC;
}

/* Logo Section */
.logo {
    width: 150px; 
    height: auto;
    display: block;
    margin: 20px auto;
    background-color: transparent; 
}

.logo-about {
    width: 250px; /* Default size for main logo */
    height: auto;
    display: block;
    margin: 20px auto;
    background-color: transparent; /* Or your desired color */
}

/* Intro Section */
.intro-section {
    background-color: #F9F9F9;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-section h1 {
    font-family: 'Roboto Thin', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #000;
}

.intro-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}


/* Process Engine Section */
.methodology-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.methodology-section h2 {
    font-family: 'Roboto Thin', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.4rem;
    color: #000;
}

.methodology-section .steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.step {
    background-color: #F9F9F9;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 20px;
    flex: 1; /* Equal size boxes */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step h3 {
      font-family: 'Roboto Reg', sans-serif;
    font-size: 1.3rem;
        text-transform: uppercase; /* Bold, clean text style */
        font-weight: 300;
    margin-bottom: 10px;
}

.step p {
      font-family: 'Roboto Thin', sans-serif;
    font-size: 1.1rem;
    font-weight: 100;
    line-height: 1.5;
}


/*.methodology-icon {
    width: 60px;
    height: 60px;
    fill: #000;
    margin-bottom: 1rem;
}
*/

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #eceff1;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Problem Section */
.problem-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.problem-section h2 {
    font-family: 'Roboto Thin', sans-serif;
    font-size: 1.8rem;
        font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.problem-section ul {
    font-family: 'Roboto Reg', sans-serif;
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* Features Section */


.features-section {
    background-color: #F9F9F9;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.features-section h2 {
    font-family: 'Roboto Thin', sans-serif;
    font-size: 1.8rem;
        font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.features-section ul {
        font-family: 'Roboto Reg', sans-serif;
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Call to Action Section */
.cta-section {
    background-color: #EEEEEE;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Roboto Thin', sans-serif;
    font-size: 1.8rem;
        font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-section p {
        font-family: 'Roboto Reg', sans-serif;
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}   


/* Privacy and Register Pages */
.privacy-content, .form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #F9F9F9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-content h1, .form-container h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #000;
}

.privacy-content p, .privacy-content ul, .form-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
    color: #333;
}

.privacy-content ul li, .form-container input, .form-container textarea {
    font-size: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 20px;
        background-color: #FFFFFF;
        padding: 10px;
        border-radius: 8px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .intro-section h1, .methodology-section h2, .benefits-section h2 {
        font-size: 1.8rem;
    }
}


/* Universal Button Styling */
button, .cta-button, .form-container button {
    font-family: 'Roboto Reg', sans-serif;
    font-weight: 400;
    font-size: 0.9rem; /* Match navbar button size */
    color: #FFFFFF;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 8px 16px;
    text-transform: uppercase;
    text-decoration: none; /* No underline */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Hover Effect */
button:hover, .cta-button:hover, .form-container button:hover {
    color: #FFFFFF; /* Switch to white text */
    background-color: #000000; /* Black background */
    border-color: #000000; /* Black border */
    transform: scale(1.02); /* Slight enlargement */
}

/* Active State */
button:active, .cta-button:active, .form-container button:active {
    transform: scale(0.98); /* Press effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Dim shadow */
}

/* Disable State */
button:disabled, .cta-button:disabled, .form-container button:disabled {
    background-color: #F5F5F5; /* Light gray */
    color: #AAAAAA; /* Muted text */
    border-color: #DDDDDD; /* Light border */
    cursor: not-allowed;
    box-shadow: none; /* No shadow */
}

.cta-button.small {
    font-size: 0.9rem;
    padding: 8px 16px;
}


.privacy-content ul {
    padding-left: 1.5rem; /* Adds indentation to align bullets */
    margin: 1rem 0; /* Adds vertical spacing */
}

.privacy-content li {
    margin-bottom: 0.5rem; /* Adds spacing between list items */
    line-height: 1.6; /* Improves readability */
}