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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}


.header-left {
    display: flex;
    align-items: center;
}

.app-icon {
    height: 100px;
    width: auto;
    box-shadow: none;
    border-radius: 0;
}

@media (max-width: 768px) {
    .app-icon {
        height: 70px;
        /* smaller height on mobile */
    }
}

/* Desktop nav - hidden on mobile */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    margin-left: 30px;
}

.desktop-nav li a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
    font-family: 'georgia', serif;
    font-size: 14px;
    color: #333;
}

.site-footer a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Blog content container */
.blog-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-header h1 {
    font-family: 'georgia', serif;
    transform: scaleY(1.1);
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 12px;
}

.blog-header .date {
    font-family: 'georgia', serif;
    font-size: 1rem;
    color: #777;
    margin-bottom: 1rem;
}

.blog-post-full img {
    display: block;
    filter: grayscale(70%);
    margin: 0 auto 1.5rem auto;
    /* center horizontally + spacing below */
    width: 100%;
    height: auto;
    /* maintain aspect ratio */
    border-radius: 12px;
    /* optional, matches your style */
    object-fit: cover;
}

/* Mobile: full width */
@media (max-width: 768px) {
    .blog-post-full img {
        filter: grayscale(70%);

        width: 100%;
        /* take up full container width */
        max-width: 100%;
        height: auto;
    }
}

/* Blog post content */
.blog-post-content img {
    width: 50%;
    max-height: 400px;
    
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-family: 'georgia', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.blog-post-content .date {
    font-family: 'georgia', serif;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.blog-post-content p {
    font-size: 1rem;
    font-family: 'georgia', serif;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Lists as quote-style blocks */
.blog-post-content ul {
    list-style: none;
    padding-left: 1rem;
    border-left: 3px solid #6c8a8e;
    margin: 1rem 0;
}

.blog-post-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    font-family: 'georgia', serif;
    font-size: 1rem;
    line-height: 1.6;
}


/* Hamburger menu */
.hamburger {
    display: none;
    /* hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: black;
    border-radius: 2px;
}

/* Show hamburger only on smaller screens */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}


/* Mobile menu hidden by default */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    /* adjust depending on your header height */
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 200;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.mobile-menu li {
    padding: 10px 20px;
}

.mobile-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-menu li a:hover {
    color: #ffcc00;
    /* optional hover color */
}

/* Responsive breakpoints */
@media (min-width: 768px) {

    .hamburger,
    .mobile-menu {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    /* Align logo with screenshots section */
    .top-bar {
        max-width: 1100px;
        /* same as screenshots section */
        margin: 0 auto;
        /* center the header */
        padding: 10px 0;
        /* optional: smaller padding since container is centered */
    }

    .app-icon {
        margin-left: 60px;
        /* adjust this value as needed */
        height: 100px;
    }
}

.app-promo {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    padding: 2rem 1rem;
    background: #fdfdfd;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.app-promo h2 {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    color: #334422;
}

.app-promo p {
    font-family: 'Georgia', serif;

    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #555;
}

@media (max-width: 600px) {
    .app-promo {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .download-buttons img {
        height: 50px;
        width: auto;
        max-width: 100%;
        border-radius: 10;
        box-shadow: none;
    }

    .download-buttons a {
        min-width: 0;
        /* min-width: 140px; */
        padding: 10px 10px;
        flex: 1 1 auto;
    }
}

.download-buttons img {
    height: 60px;
    border-radius: 0;
    box-shadow: none;
}

/* Download buttons */
.download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.download-buttons a {
    /* background: #fff; */
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: none;
    transition: transform 0.15s ease;
    font-size: 1rem;
    min-width: 180px;
}

.download-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
    .download-buttons a {
        flex: 1 1 auto;
        /* allow buttons to shrink */
        min-width: 120px;
        /* optional minimum width */
        padding: 15px 15px;
        gap: 2px;
    }
}