@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e6007e;
    --background-color: #0f0f0f;
    --text-color: #ffffff;
    --text-secondary: #b5b5b5;

    --font-body: "Inter", sans-serif;
    --font-heading: "Playfair Display", serif
}


.logo,
.footer-brand {
    font-weight: 700;
}

.footer {
    font-size: .72rem;
}

.container{
    width:min(1200px,90%);
    margin-inline:auto;
}
img{
    display:block;
    max-width:100%;
}

body {
    background: #000000;
  color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
}

h1,
h2 {
    font-family: var(--font-heading);
}

h2 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.15;
    font-weight: 700;
}

h3 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.3;
}

.site-header{
    background-color:#000000;
 padding: 1rem 0;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.site-header a {
    color: white;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.logo::before {
    content: "K";
    display: grid;
    place-items: center;

    width: 2rem;
    height: 2rem;
    border-radius: 50%;

    background-color: #e00073;
    color: white;
    font-size: 0.85rem;
}

.main-navigation a {
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-navigation a:hover {
    color: white;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.button {
    display: inline-block;

    padding: 0.75rem 1.4rem;
    border-radius: 999px;

    background-color: #e00073;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.button-outline {
    background: transparent;
    color: white;
    border: 1.5px solid white;
}

.button:hover {
    transform: none;
    background-color: #f0007d;
    box-shadow: 0 0.75rem 2rem rgba(224, 0, 115, 0.6);
      
}

.button-outline:hover {
    transform: none;
    border-color: #ff4fa3;
}

.hero{
     padding-top: 4rem;
     padding-bottom:2rem;
}
.hero-title {
    margin-bottom: 1rem;
    line-height: 0.9;
}

.hero-title-main,
.hero-title-accent {
    display: block;
}

.hero-title-main {
   color: white;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: .95;
}

.hero-title-accent {
   color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    transform: translateY(0.05em) ;
    font-style: italic;
    font-weight: 400;
    line-height: .95;
    /*transform: rotate(-8deg);*/
}

.hero-subtitle {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.hero-description {
    max-width: 31rem;
    margin-bottom: 2rem;
     font-size: .95rem;
    line-height: 1.7;
}

.hero-contact {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.8rem;
}

.hero-contact a {
    color: #8f8f8f;
    text-decoration: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateY(-2.5rem);
}

.hero-image img {
    width: min(36rem, 100%);
    
    height: auto;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 5rem;
}

.title-heart {
    color: var(--primary-color);
    font-family: Arial, sans-serif;
    font-size: 0.35em;

    display: inline-block;
    vertical-align: top;

    margin-left: -0.08em;
    margin-right: -0.10em;

    transform: translateY(0.3em) rotate(8deg);
}


.eyebrow {
    color: var(--primary-color);

    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.services {
    background-color: var(--primary-color);
    padding: 3rem 0 6rem;
}

.services-header {
    text-align: center;
}

.services-header h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-divider {
    display: block;

    width: 60px;
    height: 2px;

    background-color: rgba(255,255,255,.5);

    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.service-card p {
font-size: .875rem;
    line-height: 1.7;
}

.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: rgb(255 255 255 / 10%);
     border: 1px solid rgb(255 255 255 / 10%);
        border-radius: 16px;
    padding: 2rem;
}


.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

.about {
    background-color: var(--background-color);
    padding: 3rem 0 6rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    max-width: 36rem;
}

.about-content h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.15;
}

.about-content h2 span {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--primary-color);
}

.about-content p {
    margin-top: 1.5rem;
}

.about-content > p:not(.eyebrow) {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(2rem);
    gap: 1.25rem;
}

.about-card {
    min-height: 8rem;
    padding: 1.5rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: rgb(255 255 255 / 3%);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 1rem;
}

.about-card:hover{
     transform: translateY(-6px);
    box-shadow: 0 1rem 2rem #f0007d; 
}

.about-card strong,
.about-icon {
    display: block;
    margin-bottom: 0.5rem;

    color: var(--primary-color);
font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}



.about-card p {
    margin: 0;
     font-size: .85rem;
    font-weight: 500;
}

.why-us {
    background-color: var(--primary-color);
    padding: 4rem 0 6rem;
}

.why-us-header {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.3rem);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
   margin-top: 2rem;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 0.75rem;
transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.why-us-item:hover{
       transform: translateY(-4px);
    background: rgb(255 255 255 / 12%);
    box-shadow: 0 12px 25px rgb(0 0 0 / 12%);
}

.why-us-item p {
    margin: 0;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.4;
}

.why-us-cta p:first-child {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.why-us-cta p:nth-child(2) {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
}

.why-us-header .section-divider {
    margin-top: 1.5rem;
}

.why-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 2rem;
    height: 2rem;
}

.why-us-icon svg {
    width: 1.7rem;
    height: 1.7rem;

    fill: none;
    stroke: white;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-us-cta {
    text-align: center;
    margin-top: 3rem;
}

.button-light {
    display: inline-block;
    margin-top: 1.5rem;

    background-color: white;
    color: var(--primary-color);
}

.button-light:hover {
    background-color: rgb(255 255 255 / 90%);
}

.contact {
    background-color: var(--background-color);
    padding: 7rem 0 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.contact-content {
    max-width: 32rem;
}

.contact-content h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.1;
}

.contact-content h2 span {
    display: block;
    color: var(--primary-color);
     font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    
}

.contact-intro {
    margin-top: 2rem;
    max-width: 27rem;
     color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;

    color: white;
    text-decoration: none;
}

.contact-item small {
    display: block;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 2.5rem;
    height: 2.5rem;

    border-radius: 50%;
    background: rgb(224 0 115 / 20%);
}

.contact-icon svg {
    width: 1.2rem;
    height: 1.2rem;

    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item:last-child svg {
    fill: var(--primary-color);
    stroke: none;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 1rem;

    color: white;
    background: rgb(255 255 255 / 6%);

    border: 1px solid rgb(224 0 115 / 20%);
    border-radius: 0.75rem;

    outline: none;
}

.form-group textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-group label,
.contact-item small {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .875rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);

    box-shadow:
        0 0 0 3px rgb(224 0 115 / 10%);
}

.contact-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;

    margin-top: 7rem;
    padding-top: 2rem;

    border-top: 1px solid rgb(255 255 255 / 5%);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 2rem;
    height: 2rem;

    border-radius: 50%;
    background-color: var(--primary-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer a {
    color: rgb(255 255 255 / 55%);
    text-decoration: none;
}

.footer-cta {
    white-space: nowrap;
}

.form-message {
    display: none;
    margin-top: 1rem;

    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.form-message.show {
    display: block;
}

@media (max-width: 900px) {

    .container {
        width: min(100% - 2rem, 70rem);
    }

    .main-header {
        padding-inline: 1rem;
    }

    .main-navigation {
        display: none;
    }

    .hero .container{
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: none;
    }

    .hero-image {
        order: 2;
        transform: none;
    }

    .hero-image img {
        width: min(28rem, 90%);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        transform: none;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {

    .hero-title-main {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }

    .hero-title-accent {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .button-outline {
        margin-left: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-content h2,
    .about-content h2,
    .services h2,
    .why-us-header h2 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-form {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
