/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #1b1b1b;
    line-height: 1.6;
    background-color: #F2EDE9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    /* you can also adjust weight here, e.g.: */
    /* font-weight: 700; */
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* paragraphs, buttons, etc use Poppins by default */
p,
a,
li,
button {
    font-family: var(--font-body);
}

a {
    color: inherit;
    text-decoration: none;
}


html,
body {
    height: 100%;
    /* ensure the page can stretch full height */
    margin: 0;
    /* remove default margin */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* viewport height */
}

main {
    flex: 1;
    /* takes up all available space above footer */
}

footer {
    padding: 20px;
    /* your padding */
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    /* background: #f9f9f9;  optional background color */
}

/* Layout */
header,
nav,
main,
footer {
    width: 100%;
}

header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

/* size down your logo image as needed */
.logo img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 8px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* force “Contact” to always hug the left edge of the nav area */
.nav-contact {
    margin-right: auto;
    margin-left: 20px;

}

.nav-contact a {
    color: #000000;
    font-family: var(--font-body);
    font-weight: 500;
}

.download-btn {
    padding: 10px 20px;
    background: #1b1b1b;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
}

.hero {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    gap: 20px;
}

.content {
    flex: 1;
    min-width: 280px;
    margin-top: 50px;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: normal;
}

h1 span {
    font-style: italic;
    font-weight: 600;
}

p {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: #1b1b1b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
}

.app-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.app-links a img {
    width: 40px;
    height: 40px;
}

.mockup {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.phone {
    position: relative;
    width: 300px;
    max-width: 100%;
    margin: auto;
}

.phone img {
    display: block;
    width: 100%;
    height: 600px;
}

.screen {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 270px;
    height: 570px;
    overflow: hidden;
    border-radius: 30px;
}

.screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .content {
        margin-top: 0px;
    }

    h1 {
        font-size: 2.5rem;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mockup {
        margin-top: 40px;
        /* add some space above the mockup on smaller screens */
    }

    .app-store-button {
        width: 70%;
        /* full width on small screens */
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        /* add some space above the button */
    }
}

@media (max-width:1200px) {
    .hero {
        margin: 40px 30px;
    }
}

@media (max-width:504px) {
    .app-store-button {
        width: 100%;
    }
}

/* styles.css */
:root {
    --fg-color: #000;
    /* foreground color */
    --bg-color: #fff;
    /* background color */
}

/* Base button */
.app-store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    margin-top: 0.75rem;
    /* mt-3 */
    padding: 0 1.5rem;
    /* px-6 */
    height: 3.5rem;
    /* h-14 */
    border-radius: 9999px;
    /* rounded-full */
    /* width: 100%;           */
    text-decoration: none;
    /* remove link underline */
}

@media (min-width: 769px) {
    .app-store-button {
        width: 400px;
        /* sm:w-fit */
    }
}

/* Dark variant */
.app-store-button.dark {
    background-color: var(--fg-color);
    color: #fff;
}

/* Light variant */
.app-store-button.light {
    background-color: #fff;
    color: var(--fg-color);
}

/* Icon spacing */
.app-store-button .icon {
    margin-right: 0.75rem;
    /* mr-3 */
    display: flex;
    align-items: center;
}

/* Text block */
.app-store-button .text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* “Download on the” */
.app-store-button .subtitle {
    font-size: 14px;
    font-weight: 400;
}

/* “App Store” */
.app-store-button .title {
    margin-top: 0.25rem;
    /* -mt-1 */
    font-family: sans-serif;
    /* font-sans */
    font-size: 16px;
    /* text-xl */
    font-weight: 600;
    /* font-semibold */
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 30px;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

/* two‐column grid */
.features-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Visual side */
.features-visual {
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
}

/* Dots right under the image */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    padding: 0;
}

.carousel-indicators button.active {
    background: #333;
}

/* Text side (no card) */

.feature-title {
    margin-bottom: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-info {
        margin-top: 20px;
    }
}

.content-wrapper {
  max-width: 1200px;    /* match your header/nav width */
  margin: 60px auto;    /* center + vertical breathing room */
  padding: 0 30px;      /* horizontal gutters on small screens */
}