
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav {
    display: flex;
    align-items: center;
}

    .nav a, .nav button {
        margin-left: 1rem;
        padding: 0.5rem 1rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        text-decoration: none;
        font-size: 1rem;
        transition: background-color 0.3s;
    }

        .nav a:hover, .nav button:hover {
            background-color: #333;
            border-radius: 5px;
        }

        .nav a.active {
            background-color: #555;
            border-radius: 5px;
        }

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1e1e1e;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
}

    .mobile-menu a, .mobile-menu button {
        padding: 0.5rem;
        color: #fff;
        text-decoration: none;
    }
        .mobile-menu a.active {
            background-color: #555;
        }

        .section {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: 2rem 2rem;
            gap: 2rem;
            border-bottom: 1px solid #333;
            min-height: 500px;
            max-height: 700px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
            max-width: 1500px;
            margin: 0 auto;
        }
#home.section {
    padding: 0;
    background-image: url('/sec1.jpg?t=1');
    min-height: 700px;
    background-position:right center
}
.section.bg-section {
    padding: 0;
    position:relative;
}


.section.visible {
    opacity: 1;
    transform: translateY(0);
}

    .section:nth-child(even) {
        flex-direction: row-reverse;
        background-color: #181818;
    }

.text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    font-size:110%;
}
.text h2 {
    font-size:2em;
}

.image {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

    .image img {
        max-width: 100%;
        height: auto;
        clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
        
    }

 
 
.fg-text {
    position:absolute;
    left:50px;
    top:50px;
    background:rgba(0,0,0, .5);
    padding:10px;
    font-size:150%;
}
@media (max-width: 1060px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
    .mobile-menu.show {
        display: flex;
    }
}

@media (max-width: 768px) {
    
    .section {
        flex-direction: column;
        text-align: left;
        padding: 3rem 1rem;
        max-height:none;
    }

        .section:nth-child(even) {
            flex-direction: column;
        }

    .image{
        text-align:center;
        padding: 0.5rem;
    }
    .text {
        min-width: 100%;
        padding: 0.5rem;
    }

        .image img {
            max-width: 100%;
            height: auto;
        }

  
}


.footer {
    background-color: #1e1e1e;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    color: #aaa;
    font-size: 0.9rem;
}

    .footer-content a {
        color: #66ccff;
        text-decoration: none;
    }

        .footer-content a:hover {
            text-decoration: underline;
        }

.store-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: #333;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .store-button:hover {
        background-color: #555;
    }
.footer {
    background-color: #1e1e1e;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    color: #aaa;
    font-size: 0.9rem;
}

    .footer-content a {
        color: #66ccff;
        text-decoration: none;
    }

        .footer-content a:hover {
            text-decoration: underline;
        }

.footer-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: #333;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .footer-button:hover {
        background-color: #555;
    }

.action-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: #FCE971;
    color: #111;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .action-button:hover {
        background-color: #DDCD75;
    }