@font-face {
    font-family: 'Branch';
    src: url('../fonts/Branch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-synthesis: none;
}

:root {
    --padding: 100px;
    --padding-sm: calc(var(--padding) * 0.5);
    --padding-lg: calc(var(--padding) * 1.5);
    --font-primary: "Inter", sans-serif;
    --font-secondary: 'Branch', serif;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 3rem;
}

.row {
    --bs-gutter-x: 3rem;
}

.gx-4 {
    --bs-gutter-x: 1.5rem;
}

body {
    font-family: var(--font-primary);
    color: #000;
    font-weight: 200;
    background: #f2f3f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 200;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
}

h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 200;
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 200;
}

h5 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 200;
}

h6 {
    font-size: clamp(1rem, 3vw, 1.125rem);
    font-weight: 200;
    letter-spacing: 1px;
}

p {
    font-weight: 200;
    color: #252525;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #000;
}

.font-secondary {
    font-family: var(--font-secondary);
    font-weight: 200;
}

.section-padding {
    padding-top: var(--padding);
    padding-bottom: var(--padding);
}

.section-padding-sm {
    padding-top: var(--padding-sm);
    padding-bottom: var(--padding-sm);
}

.section-padding-lg {
    padding-top: var(--padding-lg);
    padding-bottom: var(--padding-lg);
}

.top-padding {
    padding-top: var(--padding);
}

.top-padding-sm {
    padding-top: var(--padding-sm);
}

.top-padding-lg {
    padding-top: var(--padding-lg);
}

.bottom-padding {
    padding-bottom: var(--padding);
}

.bottom-padding-sm {
    padding-bottom: var(--padding-sm);
}

.bottom-padding-lg {
    padding-bottom: var(--padding-lg);
}

.text-justify {
    text-align: justify;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.logo {
    height: 40px;
}

.nav-link {
    color: black;
    font-weight: 200;
    letter-spacing: 1.5px;
}

.nav-link:hover {
    color: black;
}

.navbar-toggler {
    color: black;
    top: 5px;
    border: none;
}

/* Hero Section */
.hero-section {
    height: 900px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 900px;
    background-image: url('../img/home/banner.jpg');
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 100;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-weight: 300;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.button {
    font-weight: 300;
    background: black;
    color: white;
    border: 1px solid black;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    z-index: 1;
}

.button:hover::before {
    left: 0;
}

.button:hover {
    color: black;
}

.button span {
    position: relative;
    z-index: 2;
}

.button-white {
    font-weight: 300;
    background: white;
    color: black;
    border: 1px solid white;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Lead In Section */
.lead-in-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    max-height: 450px;
}

/* About Section */
.section-title {
    font-family: var(--font-secondary);
    color: #000;
    letter-spacing: 2px;
}

.eason-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 500px;
}

.home-portfolio-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.home-portfolio-image:hover {
    transform: scale(1);
}

.portfolio-type {
    letter-spacing: 1px;
    font-weight: 200;
}

/* For Couples Section */
.made-moment-bg {
    height: 900px;
    background-image: url('../img/home/img_bg_3.jpg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    position: relative;
}

.made-moment-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.made-moment-bg .container {
    position: relative;
    z-index: 2;
}

.made-moment-text {
    font-style: italic;
    line-height: 1.7;
    font-weight: 200;
}

/* Divider */
.divider-line {
    border-right: 1px solid #666;
    height: 200px;
}

/* Image positioning */
.contact-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 0.8;
}

.contact-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
}

.form-control,
.form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding-left: 0;
    background-color: #f2f3f5;
    font-weight: 200;
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3e%3cpath fill='%23999' d='M169.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 306.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3e%3c/svg%3e");
    cursor: pointer;
}

.form-label {
    margin-bottom: 0;
}

/* Focus states */
.form-control:focus,
.form-select:focus {
    border-color: #ddd;
    outline: none;
    box-shadow: none;
    background-color: #f2f3f5;
}

/* Placeholder styling - cross-browser support */
.form-control::placeholder {
    color: #ccc;
    font-weight: 200;
    opacity: 1;
}

/* Select specific styling */
.form-select:required:invalid {
    color: #ccc;
    font-weight: 200;
}

.form-select:valid {
    color: #000;
}

.form-select option {
    color: #000;
}

.form-select option[disabled][value=""] {
    color: #ccc;
}

.calendar-icon {
    color: #999;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: 8px;
}

/* Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .social-links a {
    color: black;
    font-size: 1.5rem;
}

.social-icon {
    width: 25px;
    height: 25px;
}

.pricing-banner {
    display: flex;
    align-items: center;
    position: relative;
}

.pricing-container {
    max-width: 960px;
    margin: 0 auto;
}

/* Services Section */
.service-content-col,
.service-text-col {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.service-text-col {
    padding: 3rem 2rem;
}

.background-letter {
    font-family: var(--font-secondary);
    position: absolute;
    font-size: clamp(4rem, 27vw, 22rem);
    font-weight: 300;
    color: black;
    top: 0;
    right: 10%;
    transform: translate(0, -30%);
    user-select: none;
    pointer-events: none;
    transition: transform 0.3s ease;
    opacity: 0.1;
    z-index: 0;
}

.background-letter-left {
    left: 10%;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    scale: 1.2;
}

.service-content {
    width: 100%;
    z-index: 3;
    position: relative;
}

/* .price-tag {
    font-size: 0.8rem;
} */

.service-arrow {
    display: inline-block;
    transition: all 0.3s ease;
    filter: brightness(1.5);
}

.service-arrow img {
    width: 110px;
    height: auto;
}

.service-arrow:hover {
    filter: brightness(1);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.portfolio-image:hover {
    transform: scale(1);
}

.pswp-gallery a {
    display: block;
    overflow: hidden;
    margin-bottom: var(--bs-gutter-x);
}

/* Portfolio Filter Styles */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.filter-btn {
    color: #999;
    cursor: pointer;
    font-weight: 200;
    transition: color 0.3s ease;
}

.filter-btn:hover {
    color: #000;
}

.filter-btn.active {
    color: #000;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-all.hidden {
    display: none;
}

.swiper-slide {
    /* text-align: center; */
    cursor: grab;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.client-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    filter: invert(0.7);
    opacity: 0.7;
}

/* Parallax Image Effect */
.parallax-image,
.parallax-image-fast {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.mt-n150 {
    margin-top: -150px;
}

.mt-n50 {
    margin-top: -50px;
}

.mt-n40 {
    margin-top: -40px;
}

.contact-page footer,
.about-page footer {
    padding-top: 1.5rem !important;
}

.contact-page footer hr,
.about-page footer hr {
    display: none;
}

/* WeChat QR Code Tooltip Styles */
.wechat-container {
    position: relative;
    display: inline-block;
}

.qr-modal {
    display: none;
    position: absolute;
    z-index: 9999;
    bottom: 0px;
    right: 40px;
    animation: fadeIn 0.3s ease;
}

.qr-modal-content {
    background-color: white;
    padding: 1rem;
    border-radius: 12px;
    width: 180px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: slideInTooltip 0.3s ease;
    border: 1px solid #e0e0e0;
}

.qr-close {
    color: #aaa;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 12px;
    transition: color 0.3s ease;
    line-height: 1;
}

.qr-close:hover,
.qr-close:focus {
    color: #000;
}

.qr-code-image {
    width: 120px;
    height: 120px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInTooltip {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTooltip-left {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-link {
    color: white;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-link:hover {
    color: white;
}

.stacked-heading {
    font-family: var(--font-secondary);
    margin-top: -20px;
}

/* About Page */

/* Hero Section */
.about-hero-section {
    height: 700px;
    position: relative;
    overflow: hidden;
}

.about-hero-image {
    height: 700px;
    background-image: url('../img/home/banner.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.about-info-bar {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-info-bar-box {
    padding: 8px 16px 0;
}

.about-info-bar-label {
    color: #a1a1a6;
    margin-bottom: 0;
}

/* About Slogan Section */
.about-slogan-section {
    overflow-x: hidden;
}

.about-slogan-text {
    font-size: clamp(3rem, 8vw, 10rem);
    margin: 2rem 0;
    transform: translateX(110%);
    text-wrap: nowrap;
}

.about-slogan-left {
    transform: translateX(-100%);
}

.about-slogan-right {
    transform: translateX(100%);
}

/* About Contact Section */
.about-contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/home/banner.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    /* filter: grayscale(30%) brightness(0.7); */
}

.about-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.about-contact-text {
    color: #cbcbcd;
}

/* .about-hero-watermark,
.about-contact-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://fatma-studio.com/nure/wp-content/uploads/sites/12/2025/08/white-logo.png);
    background-position-x: center;
    background-position-y: 50px;
    background-repeat: repeat-x;
    background-size: auto 80px;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.about-hero-watermark {
    background-position-y: 35px;
}

.about-contact-watermark {
    background-position-y: 785px;
} */