/* styles.css */

/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

@font-face {
    font-family: "Righteous-Regular";
    src: url('Righteous-Regular.ttf') format('truetype');

}

h1, h2, h3 {
    color: #333;
    font-family: "Righteous-Regular";
}

p {
    color: #555;
}

#founders {
    width: 40%;
}

.signatureblock {
    width: 20%;
}

@media screen and (max-width: 768px) {
    #founders {
    width: 90%;
    }
    .signatureblock {
    width: 90%
    }
}

/* Navigation */
nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

nav .logo h1 {
    color: #fff;
    margin: 0;
}

.menu {

margin-right: 4%;    

}

nav .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav .menu li {
    margin-left: 20px;
}

nav .menu a {
    text-decoration: none;
    color: #fff;
}
#home {
    min-height: 310px;
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    color: #fff;
}
.hero::before {
    content: "";
    background-image: url('logo-depracated.png');
    background-size: cover;
    background-position: center;
    opacity: 1; /* Adjust the opacity value (0 to 1) */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .hero::before {
    background-image: url('logo-transparent-small.png');
    background-size:100% auto;
    }
}

/* About Section */
.about-container {
    padding: 25px 50px;
    text-align: center;
}

.no-bullets {
    list-style-type: none;  
    padding-left: 0;

}

/* Investing Section */
.investing-container {
    padding: 25px 50px;
    text-align: center;
}

.no-bullets {
    list-style-type: none;  
    padding-left: 0;

}

/* Products Section */
.products-container {
    padding: 25px 50px;
    text-align: center;
    margin-left:auto;
    margin-right:auto;
}

.product-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

/*subsection product category */

.category {
    width: 300px;
}

.category img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-container {
    max-width: 50%;
    padding: 25px 50px;
    text-align: center;
    margin-left: auto;
    margin-right:auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label, input, textarea {
    width: 100%;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.menu-toggle img {
    display: none;
    width:0;
    padding:0;
    margin:0;
}
/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    nav .menu ul {
        flex-direction: column;
        position: fixed;
        top: 2em;
        right: 0;
        background-color: #333;
        display: none;
    }
.menu-toggle img {
    display: block;
    width:25px;
    padding:0 50px 0 20px;
}
    nav .menu li {
        margin-left: 0;
        padding:0.75em;
    }

    nav .menu ul.show {
        display: block;

        
    }

    .product-categories {
        flex-direction: column;
    }
    
	.category img {
	    width: 80%;
	    height: auto;
	}
	
	.contact-container {
    max-width: 90%;
	}
	
	
}

    .popup {
            opacity: 0;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #f1f1f1;
            border: 1px solid #ccc;
            padding: 50%;
            font-size: 18px;
            text-align: center;
            z-index: 100;
            transition: opacity 5s ease-out;
        }

        .visible {
            opacity: 1;
        }
.display_none {
    display:none;
}