/* Importing Google fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Wittgenstein", serif;
}

:root {
    /* Colors */
    --orange-color: #ffbb62;
    --dark-color: #e48c53;
    --yellow-color: #fdcd92;
    --color-primary: #fffbf5;
    --color-secondary: #470a0b;
    --color-footer: #00050b;

    /* Font size */
    --font-weight-s: 0.8 rem;
    --font-size-n: 1rem;
    --font-size-m: 1.5rem;
    --font-size-l: 1.875rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 3.125rem;

    /* Font weight */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

/* Stylings for whole site */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    padding: 40px 0 60px;
    font-size: var(--font-size-xxl);
}

/* Navbar styling */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--color-primary);
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

header .navbar .nav-logo .logo-image {
    width: 40px;
}

.navbar .nav-logo .logo-text {
    color: var(--color-secondary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero section styling */
.hero-section {
    min-height: 100vh;
    background: var(--color-primary);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--color-secondary);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--orange-color);
    font-family: "Wittgenstein", serif;
    margin-bottom: 10px;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    width: 70%;
    font-family: "DM Sans", sans-serif;
    font-size: var(--font-size-l);
    color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
}

.hero-section .hero-details {
    max-width: 70%;
    margin: 24px 0 20px;
    font-size: var(--font-size-m);
}

.hero-section .hero-details .app-store-badge {
    margin-top: 50px;
    width: 200px;
    height: 100px;
}

.hero-section .hero-image-wrapper img {
    margin-top: 10vh;
    width: 38vh;
    transform: rotate(12deg);
}

/* About Verses section styling */
.about-section {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.01) 0%,
        rgba(255, 243, 222, 1) 25%,
        rgba(255, 243, 222, 1) 75%,
        rgba(255, 214, 141, 0.55) 100%
    );
    padding: 4rem;
}

.about-section .grid-container {
    display: grid;
    justify-content: center;
    grid-template-columns: 50% 50%;
    grid-template-rows: max-content;
    grid-template-areas: "box-1 box-2";
}

.about-section .grid-container .section-header .section-title {
    color: var(--dark-color);
    max-width: 85%;
    padding: 0 2em 2em 2em;
    text-align: left;
}

.about-section .grid-container .description .text {
    font-family: "DM Sans", sans-serif;
    font-size: var(--font-size-m);
    color: var(--color-footer);
    font-weight: var(--font-weight-medium);
    max-width: 85%;
}

.about-section .grid-container .description .text strong {
    font-family: "DM Sans", sans-serif;
    font-size: var(--font-size-m);
    color: var(--color-footer);
    font-weight: var(--font-weight-bold);
}

.about-section .carousel {
    display: flex;
    overflow: hidden; /* disallow all scrolling */
}

.buttonpins {
    width:  calc(100% / 3);
    flex-shrink: 0;
}

.buttonpins1 {
    filter: blur(1px);
    opacity: 0.75;
}
/* App Features Section Styling*/

.appfeature-section {
    /*display: flex;*/
    /*min-height: 100vh;*/
    padding: 0 0 4rem 0;
}

/*.appfeature-section .square-box {
    width: 160vh;
    height: 60vh;
    border-radius: 50px;
    position: fixed;
    bottom: 10%;
    left: 10%;
    z-index: -2;
    aspect-ratio: 1 / 1;
    background: linear-gradient(
        180deg,
        rgba(255, 253, 249, 1) 25%,
        rgba(255, 243, 222, 0.88) 75%,
        rgba(255, 214, 141, 0.4) 100%
    );
}*/

.appfeature-section .section-content .section-title {
    color: var(--orange-color);
}

.features {
    /*display: flex;
    overflow: hidden;
    gap: 48px;*/
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1em;
}

.features h3 {
    font-family: "DM Sans", sans-serif;
    font-size: var(--font-size-m);
    color: var(--color-secondary);
    font-weight: var(--font-weight-semi-bold);
}

.features p {
    /*max-width: 30%;*/
    font-family: "DM Sans", sans-serif;
    font-size: var(--font-size-s);
    color: var(--color-secondary);
    font-weight: var(--font-weight-regular);
    /*text-align: justify;
    text-align-last: left;
    text-justify: auto;*/
}

.features img {
    width: 300px;
    padding: 1em;
    /*height: 50%;*/
    /*margin: 0 auto;*/
}

/* CTA section styling */

.cta-section {
    min-height: 20vh;
    background: var(--yellow-color);
    background-image: url("CTALeaves.PNG");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    align-items: center;
    padding: 8rem 0;
}

.cta-section .section-content {
    text-align: center;
    justify-content: center;
    display: block;
    margin: auto;
}

.cta-section .section-content .title {
    font-size: var(--font-size-xxl);
    color: var(--color-primary);
    font-family: "Wittgenstein", serif;
    margin-bottom: 30px;
    margin-top: 0;
}

.cta-section .section-content img {
    width: 12vw;
}

.cta-section .section-content .cta-button {
    font-family:
        DM Sans,
        sans-serif;
    font-weight: var(--font-weight-extra-bold);
    font-size: var(--font-size-l);
}

.cta-section .section-content .cta-button {
    padding: 12px 100px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.01) 0%,
        rgba(255, 243, 222, 1) 25%,
        rgba(255, 243, 222, 1) 75%,
        rgba(255, 214, 141, 0.55) 100%
    );
    font-weight: var(--font-weight-medium);
    border: 2px solid transparent;
    border-radius: var(--border-radius-m);
    color: var(--color-footer);
}

.cta-section .section-content .cta-button:hover {
    border-color: var(--yellow-color);
}

/* Footer section styling */
.footer-section {
    padding: 40px 0;
    background: var(--color-footer);
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--color-primary);
    transform: 0.2s ease;
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover {
    color: var(--orange-color);
}

.footer-section .section-content .copyright-text .footer-logo {
    width: 28px;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

/* for coming soon badge button */
/* ── Shared badge shell ── */
.store-badge {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1.5px solid;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 200px;
}

/* ── Active (reference) ── */
.store-badge--active {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.store-badge--active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.30);
}
.store-badge--active .badge-icon { color: #fff; }
.store-badge--active .badge-sub { color: rgba(255,255,255,0.75); }
.store-badge--active .badge-main { color: #fff; }

/* ── Coming Soon (grayed out) ── */
.store-badge--coming-soon {
  background: #ffffff;
  border-color: #c8c8c8;
  color: #9e9e9e;
  cursor: not-allowed;
  box-shadow: none;
  position: relative;
}
.store-badge--coming-soon .badge-icon { color: #b0b0b0; }
.store-badge--coming-soon .badge-sub { color: #b0b0b0; }
.store-badge--coming-soon .badge-main { color: #7a7a7a; }

/* Pill label */
.coming-soon-pill {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #9e9e9e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Shared internals ── */
.badge-icon {
  flex-shrink: 0;
  display: flex;
}
.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.badge-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.badge-main {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Google Play variant */
.store-badge--active.google .badge-main { font-size: 17px; }
.store-badge--coming-soon.google .badge-main { font-size: 17px; }


/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    .hero-section .section-content {
        text-align: center;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .hero-section .hero-details :is(.title) .about-section .about.details {
        max-width: 100%;
        margin-top: 1rem;
    }

    .hero-section .hero-details .subtitle {
        margin: 0 auto;
        text-align: center;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        margin-right: 0;
        padding: 0;
    }

    .about-section .section-content {
        flex-direction: column;
        gap: 70px;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .buttonpins {
        width:  100%; // 419px;
        flex-shrink: 0;
    }
}
