body {
    font-family: var(--primary-font);
    font-size: 1rem;
    background: var(--bg-color);
    color: #333;
}

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

section {
    padding: 4rem 0;
}

/* =========================
HEADER NAVBAR – FINAL TUNING
========================= */

.site-header {
    background: rgb(200, 189, 180);
    padding: 1.25rem 0;
    /* increased top-bottom */
}

/* Menu items */
.navbar-nav .nav-link {
    font-size: 1rem;
    /* increased font size */
    font-weight: 500;
    letter-spacing: 1.5;
    text-transform: uppercase;
    color: #000;
    transition: color .2s ease;
    margin: 0 20px 0 20px;
    /* increased side margin */
}

/* Hover & active – RED */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d40000 !important;
}

/* =========================
DROPDOWN (DESKTOP)
========================= */

.dropdown-menu {
    background: #d6cbc1;
    /* grey-beige */
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 10px 20px;
}

.dropdown-item {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.5;
    margin: 5px 0 5px 0;
    text-align: left;
    color: #000;
    text-transform: uppercase;
}

.dropdown-item:hover {
    background: transparent;
    color: #d40000;
}

/* Open dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }
}

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

.navbar-toggler {
    border: none;
    background: #d40000;
    padding: 20px 15px;
    border-radius: 100%;
    box-shadow: none !important;
}

/* Remove bootstrap focus ring */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* Icon base */
.toggler-icon {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all .3s ease;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: all .3s ease;
}

.toggler-icon::before {
    top: -6px;
}

.toggler-icon::after {
    top: 6px;
}

/* =========================
OPEN STATE (CROSS)
========================= */

.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Remove Bootstrap caret */
.dropdown-toggle::after {
    display: none !important;
}

/* Plus icon */
.dropdown-plus {
    display: inline-block;
    margin-left: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: transform .2s ease;
}

/* =========================
MOBILE MENU ALIGNMENT
========================= */

@media (max-width: 991px) {

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-link {
        padding: 14px 0;
    }

    /* Dropdown items centered */
    .dropdown-menu {
        text-align: center;
    }
}

.social-icons img {
    width: 2rem;
    display: block;
    margin: 0.5rem 0;
}

.fixed-social-icons {
    position: fixed;
    top: 25%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1000;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

/* =========================
BRAND / LOGO AREA
========================= */

.brand-block {
    padding-bottom: 30px;
}

.brand-text {
    margin-top: -4rem;
}

.brand-text h1 {
    font-size: 1.5rem;
    letter-spacing: 2;
    font-weight: 500;
    margin: 0;
}

.brand-text .phone {
    font-size: 1.25rem;
}

.studio-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.studio-line span {
    width: 3rem;
    height: 1px;
    background: #d40000;
}

.studio-line em {
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 2;
    color: #d40000;
    font-weight: 200;
}

/* =========================
HERO PORTRAIT SVG ARROWS
========================= */

.portrait-slider {
    position: relative;
}

.portrait-arrow {
    position: absolute;
    top: 50%;
    /* adjust if needed */
    background: transparent;
    border: none;
    padding: 0;
    z-index: 5;
    cursor: pointer;
}

/* Center-top positioning */
.prev-arrow {
    left: 10%;
    transform: translateX(-120%);
}

.next-arrow {
    right: 10%;
    transform: translateX(120%);
}

/* SVG styling */
.slideshow-arrow {
    width: auto;
    /* SCALE HERE */
    height: 2rem !important;
    /* SCALE HERE */
    fill: rgba(255, 255, 255, 0.75);
    transition: fill .2s ease, transform .2s ease;
}

/* Flip for PREV */
.prev-arrow .slideshow-arrow {
    transform: scaleX(-1);
}

/* Hover effect */
.portrait-arrow:hover .slideshow-arrow {
    fill: #ffffff;
    transform: scale(1.1);
}

/* Disabled (first / last slide) */
.portrait-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.portrait-slider img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.quote-section {
    color: var(--primary-color);
    font-size: 2rem;
    font-family: var(--heading-font);
    font-weight: 500;
}

.service-list a {
    display: block;
    width: 100%;
    margin: 0.75rem 0;
    border-radius: 2rem;
    border: none;
    padding: 0.5rem;
    background: #d5d5d5;
    color: #000;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    transition: background .2s ease, color .2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.service-list a:hover {
    box-shadow: none;
}

.service-image-slider img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-grid .card {
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow .2s ease;
    background: #d5d5d5;
    text-align: center;
    border-radius: 2rem;
}

.service-grid .card:hover {
    box-shadow: none;
}

.service-grid .card .card-body {
    padding: 0;
}

.service-grid .card .card-body img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2rem 2rem 0 0;
}

.service-grid .card .card-body h5 {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1.5;
}

.service-grid .card .card-body p {
    padding: 0 0.5rem 1rem 0.5rem;
    font-size: 1rem;
    color: #555;
}

.strip-slider img {
    height: 320px;
    object-fit: cover;
}

.strip-slider .slick-slide {
    opacity: .3;
    transform: scale(.8);
}

.strip-slider .slick-center {
    opacity: 1;
    transform: scale(1);
}

.makeup-section {
    background: #e8f3dc;
    padding: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 20px auto 0 auto;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #666;
    color: #fff;
    border: none;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #fff;
    opacity: 0.9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #000;
    transition: border-bottom .2s ease;
}

.contact-form button {
    float: right;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background .2s ease;
    font-size: 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    transition: background .2s ease;
}

/* =========================
PORTFOLIO SLIDER
========================= */

/* Thumbnails */
.portfolio-thumbs {
    max-width: 90%;
    margin: 0 auto 30px;
}
.portfolio-thumbs div {
    outline: none;
    width: fit-content !important;
    padding-right: 1rem;
}
.portfolio-thumbs img {
    height: 5rem;
    width: auto;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity .2s ease;
}

.portfolio-thumbs .slick-current img {
    opacity: 1;
}

/* Main image */
.portfolio-main {
    max-width: 70%;
    margin: 0 auto;
    position: relative;
}

.portfolio-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

/* =========================
TRUE MASONRY GALLERY
========================= */

.masonry-gallery-section .masonry-columns {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-gallery-section .masonry-columns .masonry-item {
  display: inline-block;      /* CRITICAL */
  width: 100%;
  margin-bottom: 1rem;
  break-inside: avoid;        /* CRITICAL */
  cursor: zoom-in;
}

.masonry-gallery-section .masonry-columns .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

.masonry-gallery-section .masonry-columns .masonry-item:hover img {
  transform: scale(1.02);
}

/* Tablet */
@media (max-width: 991px) {
  .masonry-gallery-section .masonry-columns {
    column-count: 2;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .masonry-gallery-section .masonry-columns {
    column-count: 1;
  }
}


/* =========================
TESTIMONIAL SECTION
========================= */

/* Slider item */
.testimonial-item {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  font-style: italic;
}

/* Client block */
.testimonial-client {
  display: flex;
  align-items: right;
  justify-content: right;
  gap: 14px;
}

.testimonial-client img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info strong {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
}

.client-info span {
  font-size: 13px;
  color: #777;
}

/* Dots */
.testimonial-slider .slick-dots {
  margin-top: 30px;
}

.testimonial-slider .slick-dots li button:before {
  font-size: 10px;
  color: #999;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: #d40000;
}

.testimonial-slider {
  overflow: hidden;   /* prevents side slide bleed */
}

.testimonial-slider .slick-track {
  display: flex;
}

.testimonial-slider .slick-slide {
  height: auto;
}
