:root {
    --primary: #C5A572;
    --background: #e8e1db;
    --secondary: #846B93;
    --white: #ffffff;
    --dark: #333333;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background);
    color: var(--dark);
    line-height: 1.6;
}

header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin: 0;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

p {
    font-size: 1em;
    line-height: 1.5;
    margin: 10px 0;
}

.button {
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background-color: var(--primary);
}

footer {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

nav {
    background-color: var(--white);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo img {
    height: 400px; /* Adjust this value to match your nav height */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.2);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 0;
}

/* Add active state for current section */
.nav-links a.active {
    background: var(--primary);
    color: var(--white);
}

.hero {
    padding: 120px 5% 60px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.app-stores {
    display: flex;
    gap: 1rem;
}

.store-button {
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}  .store-icon {
    width: 180px; /* Set consistent width */
    height: 60px; /* Set consistent height */
    object-fit: contain; /* Preserves aspect ratio while fitting within dimensions */
  }  
  .store-icon-google {
    width: 198px; /* Set consistent width */
    height: 60px; /* Set consistent height */
    object-fit: contain; /* Preserves aspect ratio while fitting within dimensions */
  }
.store-button:hover {
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

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

.features {
    padding: 60px 5%;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--background);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.screenshots {
    padding: 60px 5%;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact {
    padding: 60px 5%;
    background-color: var(--white);
    text-align: center;
}

.contact h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.2rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--secondary);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

.lang-btn:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .nav-links {
        display: none;
    }

    .app-stores {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .logo img {
        height: 32px; /* Slightly smaller on mobile */
    }
}