/* styles.css */

/* Reset & Basic Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Fredoka', sans-serif; background: #f8f9fa; color: #333; }

:root {
  --left-width: 30%; /* Adjust this value to change the size of the screenshot area in both pages (e.g., 40% for larger) */
}

/* Header / Top Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo img { height: 50px; }

nav {
    position: relative;
    display: flex;
    align-items: center;
}
nav a {
    margin-left: 30px;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1E1E1E;
    padding: 10px 20px;
    border-radius: 8px;
    transition: color 0.3s;
    position: relative;
}
nav a.active {
    color: #1E1E1E;
}
.indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #2696E8;
    transition: left 0.3s ease, width 0.3s ease;
}

/* Main Layout */
.main {
    display: flex;
    min-height: calc(100vh - 90px); /* Full height minus header */
    padding: 40px 5%;
}
.left { width: var(--left-width); display: flex; align-items: center; justify-content: center; }
.right { width: calc(100% - var(--left-width)); display: flex; flex-direction: column; justify-content: center; }

/* iPhone Mockup */
.iphone-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.screen {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* Right Column Text */
.right h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 25px;
    font-weight: 600; /* Semibold */
    color: #2696E8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.right p.subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 60px;
    font-weight: 700; /* Bold */
    color: #1E1E1E;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.2;
}
.right p.description {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    color: #1E1E1E;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.download-buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
}
.download-buttons a {
    margin: 0 15px 0 0;
    display: inline-block;
}
.download-buttons img {
    height: auto;
    transition: transform 0.2s;
}
.download-buttons img:hover { transform: scale(1.05); }

/* App Store button adjustments */
.download-buttons .app-store-btn {
    height: 60px; /* Adjust this value to change the App Store button size (e.g., 50px for smaller) */
    width: auto;
}

/* Google Play button adjustments */
.download-buttons .google-play-btn {
    height: 86px; /* Adjust this value to change the Google Play button size (e.g., 50px for smaller) */
    width: auto;
}

/* Responsive (stacks on mobile) */
@media (max-width: 992px) {
    .main { flex-direction: column; padding: 60px 5%; }
    .left, .right { width: 100%; }
    .right { margin-top: 50px; }
    .right h1 { font-size: 20px; }
    .right p.subtitle { font-size: 40px; }
    .right p.description { font-size: 24px; }
    .right { text-align: center; } /* Center text on mobile for both pages */
    nav { display: flex; flex-wrap: wrap; gap: 10px; }
    nav a { margin-left: 0; font-size: 14px; }
    .download-buttons .app-store-btn {
        height: 50px; /* Smaller size for mobile */
    }
    .download-buttons .google-play-btn {
        height: 50px; /* Smaller size for mobile */
    }
}