*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}

body {
	margin: 0;
	--color-text: #111;
	--color-bg: #ffffff;
	--color-link: #333;
	--color-link-hover: #000;
	--color-alt: #c5a27b;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	counter-reset: contentSection;
	font-family: neuzeit-grotesk, sans-serif;
}


a {
	text-decoration: underline;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
	text-decoration: none;
}

main {
	overflow: hidden;
	position: relative;
}


/*NAVBAR STYLE STARTS*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    mix-blend-mode:multiply;
    background-color: white;
    z-index: 9999;
    font-weight: 500;
}
.navbar a {
    color: #ffffff;
	mix-blend-mode:difference;
    text-decoration: none;
    margin-left: 2rem;

}

/*NAVBAR STYLE ENDS*/

#header {
    background-image: url("/img/HERO.webp"); /* path to your image */
    background-size: cover;                  /* makes the image fill the section */
    background-position: center;             /* centers the subject */
    background-repeat: no-repeat;            /* avoids repetition */
    min-height: 100vh;                       /* ensures it fills the screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;                 /* centers text vertically */
    color: white;                            /* visible text on dark images */
    padding: 40px;
}

/* Image beside paragraph section */
.content--with-image .text-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items:center;
justify-content:space-evenly;
}

.content--with-image .text-block {
    flex: 1 1 50%;
    min-width: 280px;
}

.content--with-image .image-block {

    min-width: 250px;
}

.content--with-image .image-block img {
width: 90%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.content__breakout--big {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The underline */
.content__breakout--big::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px; /* adjust depending on your spacing */
    width: 0%;
    height: 3px;
    background: #000; /* change color if needed */
    transition: width 0.6s ease;
}

/* Hover animation */
.content__breakout--big:hover::after {
    width: 100%;
}


.content {
	padding: 1.7rem;


	position: relative;


	justify-content: space-between;
}

.content--feature {
	justify-content: flex-start;
	min-height: 0;
}

.content__pretitle {
	margin-top: auto;
	font-size: 1.85rem;
	color: var(--color-alt);
}

.content__pretitle::before {
	content: "\2015";
	margin-right: 0.25rem;
}

.content__title {
	font-size: 9vw;
	line-height: 0.8;
	margin: 0 0 3rem 0;
	font-weight: 400;
	max-width: 800px;
	will-change: transform;
	font-style: italic;
	font-family: span, serif;
}

.content__text {
	font-size: 2.25rem;
	font-size: clamp(1rem, 4vw, 2.25rem);
}

.content__text--right {
	align-self: flex-end;
}

.content__text--centered {
	margin: auto;
}

.content__breakout {
	margin: 0 -3rem;
	white-space: nowrap;
	text-transform: uppercase;
	font-family: span, serif;
	font-weight: 200;
	font-style: italic;
	color: #211f1b;
}

.content__breakout--big {
	font-size: 13vw;
	font-weight: 200;
	margin-left:0.3rem;
}

@media screen and (min-width: 53em) {

	.content__text {
		max-width: 800px;
		width: 50vw;
		min-width: calc(300px - 6rem);
	}
}

/* SERVICES */
/* PREMIUM LUXE SERVICES SECTION */
.services-luxe-wrapper {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
	    max-width: 1200px;
    margin-inline: auto;
}

.service-luxe-card {
    width: 340px;
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
	
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

/* Image Reveal Layer */
.service-luxe-image {
    position: relative;
    width: 100%;
    height: 55%; /* top portion */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-luxe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1) rotate(0deg);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    filter: brightness(0.85);
}

/* Reveal image on hover */
.service-luxe-card:hover .service-luxe-image img {
    opacity: 1;
    transform: scale(1);
}

/* Text Box */
.service-luxe-inner {
    height: 45%;
    padding: 1.8rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    transition: transform 0.45s ease;
}

.service-luxe-card:hover .service-luxe-image img {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
}

/* Lift text up slightly on hover */
.service-luxe-card:hover .service-luxe-inner {
    transform: translateY(-10px);
}

/* Optional: subtle gradient overlay on hover */
.service-luxe-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-luxe-card:hover .service-luxe-image::after {
    opacity: 1;
}

/* Typography */
.service-luxe-inner h3 {
    font-family: span, serif;
    font-style: italic;
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.service-luxe-inner p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .service-luxe-card {
        width: 45%;
    }
}

@media (max-width: 700px) {
    .service-luxe-card {
        width: 100%;
        max-width: 380px;
    }
}




/* Work Masonry / Grid Container */
.work-masonry {
    column-count: 4;
    column-gap: 1rem;
    margin-top: 3rem;
}

/* Images default style */
.work-masonry img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0px;
    transition: transform 0.5s ease, filter 0.5s ease;
    cursor: pointer;
}

/* Hover: focus effect */
.work-masonry:hover img {
    filter: blur(5px) brightness(0.7);
    transform: scale(0.95);
		    border-radius: 0px;
}

.work-masonry img:hover {
    filter: blur(0) brightness(1);
    transform: scale(1.05);
    z-index: 10;
	    border-radius: 12px;
    position: relative;
    transition: transform 0.5s ease, filter 0.5s ease, z-index 0s;
}

/* Responsive: skip the effect for smaller screens */
@media (max-width: 850px) {
    .work-masonry {
        column-count: 2;
    }
    .work-masonry:hover img {
        filter: none;
        transform: none;
    }
    .work-masonry img:hover {
        transform: none;
        filter: none;
        z-index: auto;
        position: static;
    }
}

@media (max-width: 500px) {
    .work-masonry { column-count: 1; }
}







/* TESTIMONIALS */
.testimonials-wrapper {
    margin-top: 4rem;
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 3rem 0;
    max-width: 100%;
    scroll-behavior: smooth;

    /* subtle fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial {
    position: relative;
    min-width: 360px;
    max-width: 380px;
    padding: 2.4rem 2rem 2.8rem;
    border-radius: 26px;

    /* elegant glass look */

    backdrop-filter: blur(14px);

    scroll-snap-align: center;
    overflow: visible;

    /* cinematic shadows */


    transform: perspective(900px) translateZ(0);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Hover: slight 3D pop */
.testimonial:hover {
    transform: perspective(900px) translateZ(20px) rotateX(1deg) rotateY(-1deg);
    box-shadow:
        0 4px 4px 0 rgba(0, 0, 0, 0.449),
        0 6px 6px 0 rgba(0, 0, 0, 0.449);
}

/* Floating 3D quote mark */
.quote-bg {
    position: absolute;
    top: -45px;
    left: 15px;
    font-size: 160px;
    font-family: serif;
    color: rgb(0, 0, 0);
    transform: rotate(-8deg);
    z-index: 0;

    filter: drop-shadow(0px 8px 12px rgba(0,0,0,0.1));
}

/* Text */
.testimonial p {
    font-size: 1.32rem;
    font-style: italic;
    line-height: 1.68;
    font-weight: 400;
    letter-spacing: -0.3px;
    z-index: 3;
    position: relative;

    /* subtle rising motion */
    animation: fadeUp 0.7s ease both;
}


.testimonial span {
    margin-top: 1.2rem;
    display: block;
    font-size: 1.05rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Hide scrollbar */
.testimonials-wrapper::-webkit-scrollbar {
    height: 0;
}
/* Infinite scroll container */
.testimonials-wrapper {
    position: relative;
    display: flex;
    gap: 2.5rem;

    padding: 3rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}


.testimonial-row .track {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    cursor: grab;
}

.testimonial-row .track:active {
    cursor: grabbing;
}

.testimonial-row .track::-webkit-scrollbar {
    display: none;
}


@media (max-width: 768px) {
    .testimonial-row[data-direction="right"] {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-row .track {
        display: flex;
        flex-wrap: wrap;       /* allow wrapping into rows */
        gap: 1.5rem;           /* adjust gap for small screens */
        overflow-x: auto;      /* allow horizontal scroll if needed */
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .testimonials-wrapper {
        flex-wrap: wrap;       /* ensure inner wrapper wraps */
        display: flex;
        gap: 1.5rem;
        overflow: visible;
    }

    .testimonial {
        flex: 0 0 calc(50% - 0.75rem); /* 2 columns */
        max-width: calc(50% - 0.75rem);
        scroll-snap-align: start;      /* snap per card */
    }
}

/* CONTACT */
/* CONTACT WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: 5rem auto;
    background: #ffffff00;
    color: #000;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
}

/* Subtle lift on hover for premium feel */
.contact-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
}

/* Multi-column layout */
.contact-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Individual column */
.contact-column {
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Column hover effect */
.contact-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}

/* Column headings */
.contact-column h3 {
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    font-family: span, serif;
    font-style: italic;
    font-weight: 200;
}

/* Social icons column */
.social-column .social-icons {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.social-column .social-icons a {
    width: 50px;       /* fixed width */
    height: 50px;      /* fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;  /* ensures image stays within container */
    border-radius: 50%; /* optional: circular icons */
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-column .social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures image fills container proportionally */
    transition: transform 0.3s, opacity 0.3s;
}

.social-column .social-icons a:hover img {
    transform: scale(1.25);
    opacity: 0.85;
}

.social-column .social-icons a:hover {
    transform: translateY(-2px); /* subtle lift effect */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Contact form styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1.3rem 1rem;
    border: 2px solid transparent; /* invisible by default */
    border-radius: 12px;
    width: 100%;
    font-size: 1rem;
    background: #ffffff00;
    color: #000;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0); /* subtle inset depth */
}

/* Show border on hover/focus */
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #000;
    outline: none;
    caret-color: #000;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0);
}

/* Placeholder color */
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select option {
    color: #777;
}

/* Submit button */
.contact-form button {
    padding: 1.3rem 2.5rem;
    background: linear-gradient(45deg, #000000, #333333);
    color: #ffffff;

    font-family: span, serif;
    font-style: italic;
    font-weight: 200;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
}

.contact-form button:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
}

/* Text spacing for address/phone lines */
.contact-column p {
    margin-bottom: 1.4rem;
    font-size: 1.15rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1100px) {
    .contact-columns {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .contact-columns {
        flex-direction: column;
        gap: 3rem;
    }
    .contact-column {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .contact-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .contact-column h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 1rem 0.8rem;
    }
    .contact-form button {
        
        width: 100%;
        padding: 1.2rem;
    }
}

h2{
	font-size: 1.9rem;
    margin-bottom: 1.8rem;
    font-family: span, serif;
    font-style: italic;
    font-weight: 200;


}

.cursor-follow {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;            /* circle size */
    height: 50px;
    background: white;       /* circle color */
    border-radius: 50%;      /* makes it a perfect circle */
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease-out, opacity 0.2s ease;
}
