/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #FFFDF9;
    color: #5B1422;
    line-height: 1.6;
    overflow-x: hidden;
}

/* GLOBAL */

section {
    padding: 120px 10%;
    background: transparent;
}

/* LINKS */

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

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: sticky;
    top: 0;
    background: rgba(255, 253, 249, 0.75);
    backdrop-filter: blur(14px);
    z-index: 1000;
}

/* LOGO ANIMATION */

.logo img {
    height: 52px;
    width: auto;
    opacity: 0;
    transform: translateY(-10px);
    animation: logoFadeIn 1s ease forwards;
    animation-delay: 0.2s;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAV */

nav ul {
    display: flex;
    gap: 45px;
    list-style: none;
}

nav a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5B1422;
    transition: 0.3s ease;
}

nav a:hover {
    color: #DB205F;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, #F1E8DB 0%, #FFFDF9 70%);
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

.hero h1 {
    font-size: 64px;
    font-weight: 500;
    margin: 20px 0;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 16px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

/* BUTTONS */

.btn-primary {
    background: #DB205F;
    color: #FFFDF9;
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #5B1422;
}

.btn-secondary {
    border: 1px solid #5B1422;
    padding: 14px 28px;
    font-size: 13px;
    background: transparent;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #5B1422;
    color: #FFFDF9;
}

/* SECTION HEADINGS */

.section-heading span {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #DB205F;
    opacity: 0.8;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 500;
    margin-top: 10px;
}

/* =========================
   ABOUT SECTION
   ========================= */

.about-layout {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    flex: 1.5;
}

.about-right {
    flex: 1;
}

.about-content p {
    max-width: 700px;
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.85;
}

/* DIFFERENCE BOX */

.difference-box h3 {
    font-size: 20px;
    color: #DB205F;
    margin-bottom: 15px;
    font-weight: 500;
}

.difference-box p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 350px;
}

/* ABOUT IMAGE */

.about-image {
    margin-top: 25px;
    width: 100%;
    max-width: 380px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    transition: 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}



.about-brand-mark {
    margin-top: 8rem;
    /* pushes it down */
    text-align: center;
    opacity: 0.8;
}

.about-brand-mark img {
    width: 90px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.brand-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5B1422;
}
/* VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.value-card h3 {
    color: #DB205F;
    margin-bottom: 10px;
    font-size: 18px;
}

/* PROCESS */

.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 90px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    min-width: 150px;
    position: relative;
}

.process-step span {
    display: block;
    font-size: 14px;
    color: #DB205F;
    margin-bottom: 15px;
    font-weight: 500;
}

.process-step h3 {
    font-size: 36px;
    font-weight: 600;
    color: #5B1422;
}

.process-arrow {
    font-size: 32px;
    color: #DB205F;
    opacity: 0.5;
    transform: translateY(10px);
}
/* PROCESS ANIMATION */

.process-step,
.process-arrow {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.process-step.show,
.process-arrow.show {
    opacity: 1;
    transform: translateY(0);
}
/* WORK */

/* WORK WRAPPER */
.work-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

/* HORIZONTAL SLIDER */
.work-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 40px;
    /* space for arrows */
    width: 100%;
}

/* hide scrollbar */
.work-grid::-webkit-scrollbar {
    display: none;
}

/* PROJECT CARD */
.project-card {
    flex: 0 0 260px;
    /* controls card width */
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    scroll-snap-align: start;
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

/* HOVER ZOOM */
.project-card:hover img {
    transform: scale(1.05);
}

/* HOVER INFO OVERLAY */
.hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: white;
    opacity: 0;
    transition: 0.3s ease;
}

.project-card:hover .hover-info {
    opacity: 1;
}

/* ARROW BUTTONS */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.scroll-btn.left {
    left: 5px;
}

.scroll-btn.right {
    right: 5px;
}

/* SECTION TITLE */
.section-heading {
    margin-bottom: 20px;
}

.section-heading span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.section-heading h2 {
    font-size: 28px;
    margin-top: 5px;
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 12px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}










/* CONTACT WRAPPER */
.contact-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.contact-tag {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #DB205F;
    opacity: 0.8;
    display: block;
    margin-bottom: 15px;
}

/* CONTACT TITLE */
#contact h2 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 20px;
}

#contact p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(91, 20, 34, 0.2);
    background: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 14px;
    color: #5B1422;
    outline: none;
    transition: 0.3s ease;
}

.form-row textarea {
    min-height: 120px;
    resize: none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #DB205F;
    background: #fff;
}

/* BUTTON */
.contact-form button {
    margin-top: 10px;
    cursor: pointer;
    align-self: center;
    padding: 12px 24px;
    border: none;
    background: #DB205F;
    color: white;
    border-radius: 25px;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #b81a4d;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px 30px;
    font-size: 13px;
    opacity: 0.7;
}

/* SOCIAL ICONS WRAPPER */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 15px;
}

/* ICON CIRCLE */
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;

    /* cleaner background (less "cloudy") */
    background: rgba(219, 32, 95, 0.10);

    transition: 0.3s ease;
}

/* ICON IMAGE */
.social-icons a img {
    width: 40px;
    height: 40px;
    opacity: 0.9;
    transition: 0.3s ease;

    /* FIX BLUR / SOFT LOOK */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* HOVER EFFECT */
.social-icons a:hover {
    background: rgba(219, 32, 95, 0.20);
    transform: translateY(-4px);
}

.social-icons a:hover img {
    opacity: 1;
}









/* RESPONSIVE */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 40px;
    }

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

    .about-layout {
        flex-direction: column;
        gap: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    #contact h2 {
        font-size: 36px;
    }
}
/* =========================
   LARGE DESKTOP
   ========================= */

@media (min-width: 1400px) {

    section {
        padding: 140px 12%;
    }

    .hero h1 {
        font-size: 82px;
    }

    .hero p {
        max-width: 800px;
        font-size: 18px;
    }

    .section-heading h2 {
        font-size: 56px;
    }

    .project-card {
        flex: 0 0 320px;
        height: 340px;
    }

    #contact h2 {
        font-size: 64px;
    }
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {

    section {
        padding: 90px 6%;
    }

    .hero h1 {
        font-size: 52px;
    }

    .about-layout {
        gap: 50px;
    }

    .project-card {
        flex: 0 0 240px;
        height: 260px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px 5%;
    }

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

    section {
        padding: 70px 5%;
    }

    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .about-layout {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-brand-mark {
        margin-top: 4rem;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .values-grid {
        gap: 30px;
    }

    .process-wrapper {
        gap: 20px;
    }

    .process-step h3 {
        font-size: 28px;
    }

    .process-arrow {
        display: none;
    }

    .work-grid {
        padding: 10px;
    }

    .project-card {
        flex: 0 0 220px;
        height: 250px;
    }

    .scroll-btn {
        display: none;
    }

    #contact h2 {
        font-size: 34px;
    }

    .contact-wrapper {
        width: 100%;
    }

    footer {
        padding: 40px 20px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero-tag,
    .contact-tag {
        font-size: 11px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .project-card {
        flex: 0 0 200px;
        height: 230px;
    }

    #contact h2 {
        font-size: 30px;
    }
}