/* Basic Styles */
html {
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: inherit;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a1a;
    color: #ffffff;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

header {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    box-sizing: border-box;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.5);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

/* Full-Screen Sections */
#hero, #features, #app, #about {
    min-height: 100vh;
    padding: 0 50px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
}

#hero {
    background-image: url('../images/hero-bg.jpg');
}

#features, #app, #about {
    background-attachment: fixed; /* Parallax Effect */
}

#features {
    background-image: url('../images/features-bg.jpg');
}

#app {
    background-image: url('../images/app-bg.jpg');
}

#about {
    background-image: url('../images/about-bg.jpg');
}

/* Dark Overlay for Readability */
#hero::before, #features::before, #app::before, #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.75);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
}
.hero-content{
    z-index: 1;
}
/* Enlarged Content */
.hero-content h1 {
    font-size: 4.5em;
}

.hero-content p {
    font-size: 1.5em;
}

#features h2, #app h2, #about h2 {
    font-size: 4em;
    margin-bottom: 60px;
}

.feature-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1.2em;
    line-height: 1.6;
}

.feature-item img {
    width: 100px;
    height: 100px;
}

.app-text h3 {
    font-size: 2.5em;
}

.app-text p, .app-text h4 {
    font-size: 1.4em;
    line-height: 1.7;
}

#about p {
    font-size: 1.6em;
    line-height: 1.8;
    max-width: 900px;
}

/* CTA Buttons */
.cta-button, .app-store-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: #4d80f0 ;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.2em;
    margin-top: 20px;
}

.cta-button:hover, .app-store-button:hover {
    background-color: #4d80f0 ;
}

/* Grid & Layout Helpers */
.features-grid {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 40px;
    flex-wrap: nowrap; /* Force items into a single line */
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s;
    flex: 1; /* Allow items to grow and shrink */
    max-width: 350px; /* Set a max-width for each item */
}

.feature-item:hover {
    transform: translateY(-15px);
}

.app-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-text {
    flex: 1;
    text-align: left;
}

.app-image {
    width: 300px;
    flex-shrink: 0;
}

.app-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
}

/* Footer */
footer {
    padding: 40px 50px;
    text-align: center;
    background: #000;
    border-top: 1px solid #222;
    position: relative;
    z-index: 2; /* Ensure footer is above the fixed background */
}
