/* ---------------------------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
--------------------------------------------------------------- */
/* Montserrat Variable Font */
@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/photo-editing/fonts/Montserrat-VF.woff2') format('woff2');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

/* Apply Montserrat globally */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}


:root {
    /* Palette */
    --clr-bg: #faf9f7;
    --clr-bg-alt: #f2f0ec;
    --clr-bg-dark: #141412;
    --clr-surface: #ffffff;
    --clr-border: rgba(0, 0, 0, 0.08);
    --clr-border-mid: rgba(0, 0, 0, 0.14);

    --clr-ink: #1a1a1a;
    --clr-ink-2: #4a4a48;
    --clr-ink-3: #7a7a78;
    --clr-ink-invert: #faf9f7;

    --clr-accent: #2a6b4a;
    /* forest green */
    --clr-accent-lt: #e6f0eb;
    --clr-accent-dk: #1d4d34;

    --clr-star: #d4960a;

    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.75rem;
    --text-4xl: 3.75rem;
    --text-5xl: 5rem;

    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-loose: 1.8;

    --tracking-tight: -0.03em;
    --tracking-normal: 0;
    --tracking-wide: 0.08em;
    --tracking-wider: 0.14em;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --max-w: 1320px;
    --header-h: 68px;
    --section-pad: 6rem;
    --gutter: clamp(1.25rem, 5vw, 4rem);

    /* Radius */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 150ms;
    --dur-base: 220ms;
    --dur-slow: 380ms;
}


/* ---------------------------------------------------------------
   2. BASE STYLES
--------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    background: var(--clr-bg);
    color: var(--clr-ink);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--clr-accent);
    color: #fff;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

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

/* ---------------------------------------------------------------
   3. ACCESSIBILITY
--------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--clr-accent);
    color: #fff;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--dur-fast);
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}


/* ---------------------------------------------------------------
   4. LAYOUT
--------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gutter);
    padding: 0;
}

.section {
    padding-block: var(--section-pad);
}

.section--alt {
    background: var(--clr-bg-alt);
}


/* ---------------------------------------------------------------
   5. TYPOGRAPHY HELPERS
--------------------------------------------------------------- */
.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--clr-ink);
    max-width: 32ch;
}

.section-desc {
    font-size: var(--text-md);
    color: var(--clr-ink-2);
    max-width: 54ch;
    margin-top: var(--space-4);
    line-height: var(--leading-loose);
}

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-title,
.section-header--center .section-desc {
    margin-inline: auto;
}


/* ---------------------------------------------------------------
   6. BUTTONS
--------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition:
        background var(--dur-base) var(--ease),
        color var(--dur-base) var(--ease),
        border-color var(--dur-base) var(--ease),
        transform var(--dur-fast) var(--ease),
        box-shadow var(--dur-base) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary */
.btn--primary {
    background: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
    box-shadow: 0 1px 2px rgba(42, 107, 74, 0.2);
}

.btn--primary:hover {
    background: var(--clr-accent-dk);
    border-color: var(--clr-accent-dk);
    box-shadow: 0 6px 20px rgba(42, 107, 74, 0.25);
}

/* Ghost/outline */
.btn--ghost {
    background: transparent;
    color: var(--clr-ink);
    border-color: var(--clr-border-mid);
}

.btn--ghost:hover {
    background: var(--clr-bg-alt);
    border-color: var(--clr-ink);
}

/* Outline */
.btn--outline {
    background: transparent;
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

.btn--outline:hover {
    background: var(--clr-accent-lt);
}

/* Sizes */
.btn--small {
    padding: 0.5rem 1rem;
    font-size: var(--text-xs);
}

.btn--large {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    width: 1.1em;
    height: 1.1em;
}

.main-button{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 700;
    background-color: #0072dd;
    color: #fff;
    padding: 12px 35px;
    text-align: center;
    border: 2px solid #0072dd;
    border-radius: 30px;
    transition: 300ms ease-in-out;
    z-index: 1;
}

.main-button:before {
    display: block !important;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin-left: 0;
    clip-path: circle(0% at 50% 50%);
    background: #2a5caa;
    border-radius: 30px;
    opacity: 1;
    z-index: -1;
    transition: -webkit-clip-path 400ms ease-out;
    transition: clip-path 400ms ease-out;
    transition: clip-path 400ms ease-out, -webkit-clip-path 400ms ease-out;
}
.main-button:hover {
    border-color: #2a5caa;
}
.main-button:hover:before {
    clip-path: circle(100% at 50% 50%);
}

h1{
    font-size: 55px;
    line-height: 67px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

h2{
    font-size: 35px;
    line-height: 48px;
    color: #2A2A2A;
    font-weight: 700;
}
p{
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #2C2C2C;
    
}

/* ---------------------------------------------------------------
   7. SITE HEADER
--------------------------------------------------------------- */
/* .site-header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    height: var(--header-h);
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--dur-slow) var(--ease),
        box-shadow var(--dur-slow) var(--ease);
     max-width: var(--max-w);
     margin: auto;
} */

#site-nav ul {
    display: flex;
    gap: 22px;
    align-items: center;
}


/* price section */
.price-section-titel {
    text-align: center;
    margin-bottom: 75px;
}


/* hero section  */
#hero{
    background-image: url("/wp-content/themes/photo-editing/assets/images/main-banner-images.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   


}

.hero-content{
    max-width: 660px;
}

.hero-content p{
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 20px;

}