﻿/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: bold;
}


/* Parallax Section */
.parallax {
    position: relative;
    height: 100vh;
    width: 100vw; /* Ensure full width */
    overflow: hidden;
}


.parallax-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: -1;
}


.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%; /* Ensure full width for centering */
}


.logo {
    max-width: 200px;
    width: 40vw;
    max-width: 400px;
    min-width: 150px;
}


/* Section Titles Centered */
.about h3, .intro h3, .wallet h3 {
    font-size: 1.5rem;
    color: black;
    line-height: 2.8;
    margin-bottom: 1rem;
    text-align: center;
}


/* Consistent Spacing for All Sections */
section {
    padding: 7rem 10%;
}


/* About Section */
.about p, .about ul {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 1rem 0;
    text-align: left;
}


.about ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}


.about {
    background-color: white;
    text-align: center;
}


.about img {
    max-width: 100px; /* Reduced to match other icons */
    display: block;
    margin: auto;
    margin-bottom: 1rem;
}


/* Intro Section */
.intro p, .intro ul {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 1rem 0;
    text-align: left;
}


.intro ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}


.intro {
    background-color: #F2F3F4;
}


.intro img {
    max-width: 100px; /* Consistent size */
    display: block;
    margin: auto;
    margin-bottom: 1rem;
}


/* Wallet Section */
.wallet p, .wallet ul {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 1rem 0;
    text-align: left;
}


.wallet ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}


.wallet {
    background-color: white;
}


.wallet img {
    max-width: 100px; /* Consistent size */
    display: block;
    margin: auto;
    margin-bottom: 1rem;
}


.highlight {
    color: black;
    font-weight: bold;
}


/* Centered list styling */
.parent {
    text-align: center;
}


.centered-list {
    display: inline-block;
    text-align: left;
    margin: 0;
    padding: 0;
}


.centered-sentence p {
    font-style: italic;
    text-align: center;
    margin: auto;
    color: #888888;
}


/* Footer */
footer {
    background-color: #D7DBDD;
    color: #888888;
    text-align: center;
    padding: 2rem 0;
    font-weight: normal;
}


.social-icons {
    margin-bottom: 1rem;
}


.social-icons a {
    margin: 0 15px;
    display: inline-block;
}


.social-icons img {
    width: 32px;
    height: 32px;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    filter: brightness(0) invert(1);
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
        width: 60vw;
    }
    
    section {
        padding: 4rem 5%;
    }
    
    .parallax {
        height: 100vh;
        width: 100%;
    }
}


@media (min-width: 1200px) {
    .logo {
        max-width: 350px;
        width: 30vw;
    }
    
    .parallax {
        height: 100vh;
        width: 100%;
    }
}


/* Ensure body/html take full width */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* Remove italic from the specific product suite section */
#wallet .centered-sentence .highlight {
    font-style: normal;
}


/* Remove italic from the beta section */
.wallet:last-of-type .centered-sentence .highlight {
    font-style: normal;
}