/* public/styles.css */

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

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .language-selector {
    float: left;
}

[dir="rtl"] header nav ul {
    flex-direction: row-reverse;
}

[dir="rtl"] header nav ul li {
    margin-left: 0;
    margin-right: 20px;
}

/* public/styles.css */

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

body {
    background-color: #121212;
    color: #FFFFFF;
    font-family: 'Eurostile', sans-serif;
    line-height: 1.6;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
    margin: 10px 20px;
    float: right;
}

.language-btn {
    background-color: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1em;
    cursor: pointer;
}

.language-btn:hover {
    color: #25D366;
}

.language-dropdown {
    display: none;
    position: absolute;
    background-color: #1F1F1F;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.language-option {
    color: #FFFFFF;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1em;
    cursor: pointer;
}

.language-option:hover {
    background-color: #25D366;
}

.language-selector:hover .language-dropdown {
    display: block;
}

/* Rest of your existing styles */
/* ... */

body {
    background-color: #121212; /* Dark background */
    color: #FFFFFF; /* Light text */
    font-family: 'Eurostile', sans-serif;
    line-height: 1.6;
}

/* Language Selector Styles */
.language-selector {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #1F1F1F;
}

.language-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1em;
    margin-left: 10px;
    cursor: pointer;
}

.language-btn:hover {
    color: #25D366;
}

/* Navigation Styles */
header {
    background-color: #1F1F1F;
    padding: 20px;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    width: 50px;
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1em;
}

header nav ul li a:hover {
    color: #25D366; /* WhatsApp green on hover */
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #1A1A1A;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.hero img {
    max-width: 20%; /* Reduced size by 4 times */
    height: auto;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons a {
    margin: 10px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366; /* WhatsApp green */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.cta-btn:hover {
    background-color: #1EBE57;
}

.whatsapp-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
}

/* Features Section Styles */
#features {
    padding: 60px 20px;
    background-color: #181818;
}

#features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background-color: #1F1F1F;
    margin: 10px;
    padding: 20px;
    flex: 1 1 300px;
    max-width: 300px;
    border-radius: 5px;
    text-align: center;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.feature p {
    font-size: 1em;
}

/* How It Works Section Styles */
#how-it-works {
    padding: 60px 20px;
    background-color: #1A1A1A;
}

#how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

#how-it-works ol {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2em;
}

#how-it-works ol li {
    margin-bottom: 20px;
}

/* Benefits Section Styles */
#benefits {
    padding: 60px 20px;
    background-color: #181818;
}

#benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

#benefits p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.2em;
    text-align: center;
}

/* Screenshots Section Styles */
.screenshots {
    padding: 60px 20px;
    background-color: #1A1A1A;
}

.screenshots h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.screenshot-gallery img {
    margin: 10px;
    max-width: 300px;
    height: auto;
    border: 2px solid #333333;
    border-radius: 5px;
}

/* Contact Section Styles */
#contact {
    padding: 60px 20px;
    background-color: #181818;
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

#contact p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#contact a {
    color: #25D366;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Adjust WhatsApp button in contact section */
#contact .whatsapp-btn {
    color: #FFFFFF;
    display: inline-block;
    margin-top: 20px;
}

/* Footer Styles */
footer {
    background-color: #1F1F1F;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 1em;
}

@media (max-width: 768px) {
    .features-container, .screenshot-gallery {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}
