@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
@import "components/header.css";
@import "components/footer.css";
@import "components/popup.css";
@import "shared.css";

:root {
    --light-brown: #F4F1EE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: white;
    overflow-x: hidden;
    color: #111;
}

/* DEMO HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 50px;
    font-weight: bold;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    width: 100%;
    min-height: 100vh;
    padding-top: 60px;
    position: relative;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    margin-top: 100px;
    text-align: center;
    margin-bottom: 70px;
    z-index: 5;
    position: relative;
}

.mini-text {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #111;
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 300;
    color: #111;
    margin-bottom: 35px;
}

.hero-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    letter-spacing: 2px;
    padding-bottom: 6px;
    overflow: hidden;
    transition: color 0.35s ease, transform 0.35s ease;
}

/* Animated underline */
.hero-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #111;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

/* Hover effect */
.hero-btn:hover {
    color: #000;
    transform: translateY(-2px);
}

.hero-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Optional click animation */
.hero-btn:active {
    transform: translateY(0);
}

/* =========================
   CAROUSEL
========================= */

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 35px;
    width: max-content;

    animation: scroll 35s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   MEDIA CARDS
========================= */

.media-card {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #ddd;
}

.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   SHAPES
========================= */

/* SMALL SIDE RECTANGLES */
.side-card {
    width: 320px;
    height: 240px;
}

/* LEFT CARD - ROUND TOP */
.arch-top {
    width: 420px;
    height: 560px;

    border-radius: 220px 220px 40px 40px;
}

/* CENTER BIG CIRCLE */
.circle-card {
    width: 540px;
    height: 540px;

    border-radius: 50%;
}

/* RIGHT CARD - ROUND BOTTOM */
.arch-bottom {
    width: 420px;
    height: 560px;

    border-radius: 40px 40px 220px 220px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .hero-content h1 {
        font-size: 54px;
    }

    .side-card {
        width: 250px;
        height: 180px;
    }

    .arch-top,
    .arch-bottom {
        width: 320px;
        height: 460px;
    }

    .circle-card {
        width: 420px;
        height: 420px;
    }
}

@media(max-width:768px) {

    .hero-section {
        padding-top: 40px;
    }

    .hero-content {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .carousel-track {
        gap: 20px;
    }

    .side-card {
        width: 170px;
        height: 120px;
    }

    .arch-top,
    .arch-bottom {
        width: 220px;
        height: 320px;
    }

    .circle-card {
        width: 260px;
        height: 260px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    margin-top: 50px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* =========================
   LEFT CONTENT
========================= */

.about-content-top {
    width: 40%;
    padding-left: 7vw;
}

.about-content-top h2 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.about-content-top p {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    padding-right: 100px;
}

.about-links {
    display: flex;
    gap: 30px;
}

.about-links a {
    text-decoration: none;
    color: #111;
}

/* =========================
   RIGHT IMAGES
========================= */

.about-images {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* BIG IMAGE */

/* .big-image {
    width: 650px;
    height: 900px;
    overflow: hidden;
    position: relative;
}

.big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.2s linear;
    will-change: transform;
} */

/* SMALL FLOATING IMAGE */

.sm-img-top {
    left: -120px;
    bottom: 120px;
}

.sm-img-bottom {
    right: 145px;
    bottom: 68px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-image: url("../images/sm-bottom-img.jpeg") !important;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px) {

    .big-image {
        width: 520px;
        height: 760px;
    }

    .small-image {
        width: 240px;
        height: 340px;
        left: -90px;
    }

    .about-content h2 {
        font-size: 52px;
    }
}

@media(max-width:992px) {

    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-content {
        width: 100%;
    }

    .about-images {
        width: 100%;
        justify-content: center;
    }

    .small-image {
        left: 20px;
        bottom: -40px;
    }

    .about-content h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .about-section {
        padding: 70px 20px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 16px;
    }

    .big-image {
        width: 100%;
        height: 520px;
    }

    .small-image {
        width: 180px;
        height: 250px;
        left: 10px;
        bottom: -30px;

        border-radius: 0 0 90px 90px;
    }

    .about-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* style.css */



/* =========================
   CATEGORY SECTION
========================= */

.category-section {
    width: 100%;
    padding: 20px 10px 60px;
}

/* =========================
   TOP HEADING
========================= */

.section-top {
    margin-bottom: 20px;
    padding-left: 32px;
}

.section-top span {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

/* =========================
   GRID
========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: start;
}

/* =========================
   CARD
========================= */

.category-card {
    width: 100%;
}

/* IMAGE FRAME */

.image-wrapper {
    width: 100%;
    height: 530px;
    overflow: hidden;
    position: relative;
    background: #ddd;
}

/* TALL CARD */

.tall-card .image-wrapper {
    height: 665px;
}

/* IMAGE */

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);
    transition: transform 0.8s ease;
    will-change: transform;
}

/* HOVER ZOOM */

.category-card:hover img {
    transform: scale(1.12);
}

/* =========================
   LINK
========================= */

.category-text {
    display: flex;
    flex-direction: column;
}

.category-link {
    margin-top: 14px;
    text-decoration: none;
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .image-wrapper {
        height: 420px;
    }

    .tall-card .image-wrapper {
        height: 540px;
    }
}

@media(max-width:992px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-wrapper {
        height: 500px;
    }

    .tall-card .image-wrapper {
        height: 500px;
    }
}

@media(max-width:768px) {

    .category-section {
        padding: 20px 15px 40px;
    }

    .section-top {
        padding-left: 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-wrapper {
        height: 450px;
    }

    .tall-card .image-wrapper {
        height: 450px;
    }

    .category-link {
        font-size: 11px;
    }
}


/* =========================
   PROCESS SECTION
========================= */

.process-section {
    width: 100%;
    padding: 80px 7%;
    background-color: var(--light-brown);
    margin-bottom: 12px;
}

/* =========================
   TOP
========================= */

.process-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 30px;
}

.process-top h2 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1;
}

/* ICON */

.process-icon {
    width: 70px;
    height: 70px;

    overflow: hidden;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: transform 0.8s ease;
    will-change: transform;
}

/* =========================
   PROCESS LIST
========================= */

.process-list {
    width: 100%;
    border-top: 1px solid #d4d1cd;
}

/* ITEM */

.process-item {
    display: grid;
    align-items: center;
    grid-template-columns: 80px 420px 1fr;

    gap: 35px;

    padding: 22px 0;

    border-bottom: 1px solid #d4d1cd;

    transition: 0.4s ease;
}

/* HOVER */

.process-item:hover {
    background: rgba(0, 0, 0, 0.015);
}

/* ZOOM ICON */

.process-item:hover~.process-top .process-icon img {
    transform: scale(1.12);
}

/* TEXT */

.process-number {
    font-size: 16px;
    font-weight: 300;
}

.process-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

/* =========================
   BUTTON
========================= */

.process-button {
    margin-top: 45px;
}

.process-button a {
    text-decoration: none;
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px) {

    .process-top h2 {
        font-size: 52px;
    }

    .process-item {
        grid-template-columns: 70px 320px 1fr;
    }
}

@media(max-width:992px) {

    .process-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-top {
        align-items: center;
    }
}

@media(max-width:768px) {

    .process-section {
        padding: 60px 20px;
    }

    .process-top h2 {
        font-size: 38px;
    }

    .process-icon {
        width: 45px;
        height: 45px;
    }

    .process-button {
        margin-top: 35px;
    }
}



/* ════════════════════════════════════════════════
       PART 1 – PRODUCT SHOWCASE
    ════════════════════════════════════════════════ */
.products-section {
    display: grid;
    grid-template-columns: 46% 1fr 1fr;
    min-height: 92vh;
    column-gap: 12px;
    margin-bottom: 12px;
}

/* ── Hero model image ── */
.products-hero {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.products-hero img,
.products-hero .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-hero .ph {
    background: linear-gradient(160deg, #b0a898 0%, #c8bca8 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.products-hero__url {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
}

/* ── Product cards ── */
.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.product-card:nth-child(2) {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.product-card:nth-child(3) {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.product-card__img {
    flex: 1;
    overflow: hidden;
    background: #ebebeb;
    position: relative;
}

.product-card__img img,
.product-card__img .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__img img,
.product-card:hover .product-card__img .ph {
    transform: scale(1.04);
}

.product-card__img .ph {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:nth-child(2) .ph {
    background: linear-gradient(150deg, #c0b4a4 0%, #d8cec0 100%);
}

.product-card:nth-child(3) .ph {
    background: linear-gradient(150deg, #c4ccd8 0%, #d8e0ec 100%);
}

.product-card__info {
    padding: 20px 24px 32px;
}

.product-card__name {
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.product-card__price {
    font-size: 0.8rem;
    font-weight: 400;
}

/* Dot pagination */
.product-card__dots {
    display: flex;
    gap: 7px;
    margin-top: 14px;
}

.product-card__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0.18;
    cursor: pointer;
    transition: opacity 0.2s;
}

.product-card__dot.active {
    opacity: 1;
}

/* ════════════════════════════════════════════════
       PART 2 – TESTIMONIAL + BLOG
    ════════════════════════════════════════════════ */
.lower-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    min-height: 60vh;
    column-gap: 12px;
}

/* ── Testimonial carousel panel ── */
.testimonial {
    background: var(--light-brown);
    padding: 56px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;

    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* Carousel track */
.testimonial__track {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial__slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.testimonial__slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial__slide.exit-left {
    opacity: 0;
    transform: translateX(-40px);
}

.testimonial__slide.exit-right {
    opacity: 0;
    transform: translateX(40px);
}

.testimonial__slide.enter-left {
    opacity: 0;
    transform: translateX(-40px);
}

.testimonial__slide.enter-right {
    opacity: 0;
    transform: translateX(40px);
}

.testimonial__quote {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: 400;
}

.testimonial__author {
    font-size: 0.78rem;
    margin-top: 20px;
}

.testimonial__controls {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    flex-shrink: 0;
}

.testimonial__btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    background: white;
}

.testimonial__btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── Center model image ── */
.lower-model {
    overflow: hidden;
    position: relative;

    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.lower-model img,
.lower-model .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lower-model .ph {
    background: linear-gradient(160deg, #b8b0a4 0%, #cec8bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Blog panel ── */
.blog-panel {
    padding: 56px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.blog-panel__heading {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
    flex: 1;
}

.blog-panel__link {
    display: inline-block;
    width: fit-content;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-underline-offset: 5px;
    margin-top: 40px;
    transition: opacity 0.2s;
}

/* ── KEYFRAMES ── */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Placeholder icon ── */
.ph-icon {
    width: 36px;
    opacity: 0.2;
    stroke: #1a1a1a;
    fill: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .products-section {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh auto auto;
    }

    .product-card {
        border-left: none;
    }

    .lower-section {
        grid-template-columns: 1fr;
    }

    .lower-model {
        min-height: 400px;
    }
}



/* Section 6: About Section */


/* =========================
   RIGHT IMAGES
========================= */

.about-images {
    width: 40%;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: flex-end;
    margin-left: 7vw;
}

/* BIG IMAGE */

.big-image {
    width: 550px;
    height: 750px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.big-img-top {
    background-image: url("../images/bg-img-1.png");
}

.big-img-bottom {
    background-image: url("../images/secondsectionimg.jpeg");
}

/* Responsive sizes for big-image-bottom to match site breakpoints */
@media (max-width: 1400px) {
    .big-image {
        width: 520px;
        height: 760px;
    }

    .small-image {
        width: 240px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .big-image {
        width: 100%;
        height: 520px;
    }

    .small-image {
        width: 180px;
        height: 250px;
        left: 10px;
        bottom: -30px;
        border-radius: 0 0 90px 90px;
    }
}

/* SMALL FLOATING IMAGE */

.small-image {
    width: 200px;
    height: 250px;
    position: absolute;
    overflow: hidden;
    border-radius: 0 0 120px 120px;
    border: 2px solid #444;
    background: #fff;
}

.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s linear;
    will-change: transform;
}

.small-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s linear;
    will-change: transform;
}

.about-content {
    width: 40%;
}

.about-content h2 {
    color: #000;
    font-size: 38px;
    line-height: 1.3em;
    font-weight: 400;
    margin-bottom: 40px;
}

.about-content p {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.about-content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 100px;
}

.about-content-text p {
    margin-bottom: 1em;
}

.about-links-bottom {
    display: flex;
    gap: 30px;
}

.about-links-bottom a {
    text-decoration: none;
    color: #111;
}

/* =========================
   INSTAGRAM SECTION
========================= */

.ig-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 120px;
    background: #f4f1ef;
}

.ig-container {
    width: 90%;
    max-width: 1650px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* EXPANDING BG CIRCLE */

.ig-bg-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #e7e2de;
    border-radius: 50%;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    transition: transform 0.15s linear;
    will-change: transform;
}

/* HEADING */

.ig-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.ig-heading-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
}

.ig-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 22px;
}

.ig-heading h2 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -1px;
    color: #111;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.ig-follow-btn {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
    transition: 0.3s ease;
}

.ig-follow-btn:hover {
    opacity: 0.6;
}

/* GRID */

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 3;
}

.ig-card {
    position: relative;
    overflow: hidden;
    display: block;
}

.ig-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ig-card img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */

@media (min-width: 1200px) {

    .ig-heading h2 {
        font-size: 52px;
    }

    .ig-card img {
        height: 500px;
    }
}

@media (min-width: 991px) {

    .ig-section {
        padding: 100px 0;
    }

    .ig-heading h2 {
        font-size: 42px;
    }

    .ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ig-card img {
        height: 550px;
    }
}

@media (min-width: 767px) {

    .ig-heading h2 {
        font-size: 32px;
    }

    .ig-card img {
        height: 420px;
    }
}
