:root {
    --primary: #9E3B31;
    --header-bg: #E6BAB3;
    --btn-bg: #D0746A;
    --btn-text: #F7F3ED;
    --bg-light: #FFFEFB;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.header-custom {
    min-height: 10vh;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--header-bg);
    z-index: 100;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 101;
}

.hamburger-btn span {
    display: block;
    height: 3px;
    min-height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    flex-shrink: 0;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.w-33 {
    width: 33.333333%;
}

.nav-link-custom {
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-link-custom:hover {
    opacity: 0.7;
    color: var(--primary);
}

.nav-link-active {
    border-bottom: 1px solid var(--primary);
}

.btn-custom {
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: 0.1em;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border-radius: 50px;
    border: none;
    padding: 0.5rem 2rem;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    opacity: 0.9;
    color: var(--btn-text);
}

.logo-img {
    max-height: clamp(80px, 7vh, 100px);
    width: auto;
    object-fit: contain;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 10vh;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--btn-text);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 2000px) {
    .hero-title {
        font-size: clamp(4rem, 3vw, 6rem); 
    }
}

.service-section {
    background-color: #F7ECE8;
    padding-bottom: 2rem;
}

.service-ticker {
    background-color: var(--bg-light);
    padding: 30px 0;
    border-bottom: 1px solid rgba(158, 59, 49, 0.1);
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    cursor: grab;
}

.service-ticker::-webkit-scrollbar {
    display: none;
}

.service-ticker:active {
    cursor: grabbing;
}

.ticker-content {
    display: flex;
    width: max-content;
}

.ticker-list {
    display: flex;
    gap: 80px; 
    padding: 0 40px; 
    flex-shrink: 0; 
    user-select: none;
    -webkit-user-select: none;
}

.ticker-list span {
    font-family: 'Albert Sans', sans-serif;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
}

.ticker-content.running {
    animation: tickerLoop 35s linear infinite;
}

@media (hover: hover) {
    .ticker-content.running:hover {
        animation-play-state: paused;
        cursor: pointer;
    }
}

.ticker-content.running:active {
    animation-play-state: paused;
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-content.static-center {
    width: 100%;
    justify-content: center;
}
.ticker-content.static-center .ticker-list {
    padding-right: 0; 
}

.service-track {
    flex-wrap: nowrap;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.service-track::-webkit-scrollbar {
    display: none;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    padding-top: 30px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.price-list-link {
    font-family: 'Albert Sans', sans-serif;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    padding-bottom: 2px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.price-list-link:hover {
    opacity: 0.8;
    color: var(--primary);
}

.link-text {
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

.link-arrow {
    opacity: 0;
    max-width: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.price-list-link:hover .link-arrow {
    opacity: 1;
    max-width: 30px;
    transform: translateX(6px);
}

.service-img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-name {
    font-family: 'Cormorant Garamond';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 500;
}

.service-carousel-wrapper {
    position: relative;
}

.service-track-outer {
    overflow: hidden;
}

.nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--header-bg);
    color: #fff;
    border: none;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

@media (hover: hover) {
    .nav-btn:hover {
        background-color: var(--btn-bg);
    }

    .nav-btn:disabled:hover {
        background-color: var(--header-bg);
    }
}

.nav-btn:active {
    background-color: var(--btn-bg);
    transform: translateY(-50%) scale(0.95);
}

.nav-btn:disabled:active {
    background-color: var(--header-bg);
    transform: translateY(-50%) scale(1);
}

.nav-btn:disabled {
    opacity: 0.3;
    background-color: var(--header-bg);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.about-us-section {
    position: relative;
    width: 100%;
}

.salons-banner {
    background-color: var(--header-bg);
    padding: 15px 50px;
    color: var(--primary);
}

.banner-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-logo-img {
    max-height: clamp(30px, 4vh, 45px);
    width: auto;
    object-fit: contain;
}

.banner-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 500;
}

.salons-content {
    background-color: #F7ECE8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 10%;
}

.salons-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.salons-desc {
    font-family: 'Albert Sans', sans-serif;
    color: #262626;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.salons-subtitle {
    font-family: 'Albert Sans', sans-serif;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-list {
    font-family: 'Albert Sans', sans-serif;
    color: #262626;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: 450px;
}

.hours-note {
    font-family: 'Albert Sans', sans-serif;
    color: #262626;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.location-text {
    font-family: 'Albert Sans', sans-serif;
    color: #262626;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 0;
}

.salons-image-wrapper {
    height: 100%;
    min-height: 400px;
}

.salons-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.transport-section {
    background-color: var(--bg-light); 
    padding: 5rem 0 8rem 0; 
    overflow: hidden;
}

.transport-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.transport-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.gallery-section {
    background-color: #F7ECE8; 
    padding: 5rem 0;
    overflow: hidden;
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-btn-gallery {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--header-bg);
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .nav-btn-gallery:hover {
        background-color: var(--btn-bg);
    }

    .nav-btn-gallery:disabled:hover {
        background-color: var(--header-bg);
        transform: none;
    }
}

.nav-btn-gallery:active {
    transform: scale(0.95);
}

.nav-btn-gallery:disabled {
    opacity: 0.3;
    cursor: default;
    background-color: var(--header-bg);
}

.gallery-carousel-wrapper {
    width: calc(100% + 3rem); 
    margin-right: -3rem; 
    overflow: hidden;
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-right: 3rem; 
}

.gallery-item {
    flex: 0 0 28%; 
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.footer-section {
    background-color: var(--header-bg);
    color: var(--primary);
    padding-top: 5rem;
}

.footer-top {
    padding-bottom: 4rem;
}

.footer-logo-img {
    width: clamp(250px, 20vw, 450px);
    height: auto;
    object-fit: contain;
}

.footer-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li,
.footer-info li,
.footer-social li {
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links a,
.footer-social a,
.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-social i {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid #9E3B31; 
    padding: 1.5rem;
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.85rem;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
}

@media (hover: hover) {
    .footer-links a:hover,
    .footer-social a:hover,
    .footer-bottom a:hover {
        opacity: 0.7;
    }
}

@media (min-width: 768px) {
    .img-left {
        transform: translateY(30px);
    }
    .img-right {
        transform: translateY(-30px); 
    }
    .transport-content {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
        width: 50px !important;
        gap: 7px !important;
        padding: 6px !important;
    }

    .hamburger-btn span {
        height: 4px !important;
        min-height: 4px !important;
        border-radius: 4px !important;
    }

    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg) !important;
    }

    .hamburger-btn.open span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg) !important;
    }

    .logo-wrapper {
        justify-content: flex-start !important;
        padding: 1rem 0;
        width: auto !important;
        position: relative;
        z-index: 101;
    }

    .header-custom {
        align-items: center !important;
    }

    #mainNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
        padding: 12rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: 0 8px 24px rgba(158, 59, 49, 0.1);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }

    #mainNav.open {
        display: flex !important;
        transform: translateY(0);
    }

    #mainNav .nav-link-custom {
        font-size: 2rem;
        border-bottom: none;
        width: auto;
    }

    #mainNav .nav-link-active {
        border-bottom: 2px solid var(--primary) !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .service-ticker .ticker-content {
        justify-content: flex-start !important; 
        gap: 40px; 
        padding: 0 30px !important; 
    }

    .service-ticker .ticker-content::-webkit-scrollbar {
        display: none; 
    }

    .service-title {
        font-size: 2.8rem;
    }

    .service-carousel-wrapper {
        padding: 0 45px;
    }

    .nav-btn {
        display: flex !important;
    }

    .prev-btn {
        left: 0px;
    }

    .next-btn {
        right: 0px;
    }

    .about-us-section .salons-content, 
    .about-us-section .salons-image-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .salons-content {
        padding: 3.5rem 6%;
        order: 2; 
    }

    .salons-title {
        font-size: 2.5rem;
    }

    .salons-image-wrapper {
        order: 1; 
        height: 450px;
        min-height: 450px;
        padding: 0;
    }

    .transport-section {
        padding: 4rem 0 6rem 0;
    }

    .transport-img {
        max-width: 240px;
    }

    .img-left {
        transform: translateY(20px);
    }

    .img-right {
        transform: translateY(-20px);
    }

    .transport-content {
        padding: 0 1rem;
    }

    .transport-title {
        font-size: clamp(1.5rem, 2.2vw, 2rem);
    }

    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-title {
        font-size: 2.2rem;
    }

    .gallery-item {
        flex: 0 0 42%;
        height: 300px;
    }

    .gallery-carousel-wrapper {
        width: calc(100% + 3rem); 
        margin-right: -3rem;      
    }

    .gallery-track {
        gap: 1rem;
        padding-right: 3rem;     
    }

    .footer-section {
        padding-top: 4rem;
    }

    .footer-logo-img {
        width: clamp(200px, 25vw, 320px);
    }

    .footer-top {
        padding-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
    }

    .logo-wrapper {
        justify-content: flex-start !important;
        padding: 1rem 0;
        width: auto !important;
        position: relative;
        z-index: 101;
    }

    .header-custom {
        align-items: center !important;
        padding: 0 1.5rem;
    }

    #mainNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
        padding: 8rem 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 8px 24px rgba(158, 59, 49, 0.1);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }

    #mainNav.open {
        display: flex !important;
        transform: translateY(0);
    }

    #mainNav .nav-link-custom {
        font-size: 1.4rem;
        border-bottom: none;
        width: auto;
    }

    #mainNav .nav-link-active {
        border-bottom: 2px solid var(--primary) !important;
    }

    .hero-section {
        min-height: 55vh;
        padding-top: 12vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem !important;
    }

    .service-section .d-flex.justify-content-between.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }

    .service-title {
        font-size: 2rem;
        padding-top: 15px;
    }

    .service-ticker .ticker-content {
        justify-content: flex-start !important;
        gap: 30px;
        padding: 0 20px !important;
    }

    .service-ticker .ticker-content::-webkit-scrollbar {
        display: none;
    }

    .service-carousel-wrapper {
        padding: 0 45px;
    }

    .service-track-outer {
        overflow: hidden;
    }

    .service-track {
        flex-wrap: nowrap;
        margin: 0;
        gap: 0;
    }

    .service-track>div[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .nav-btn {
        display: flex !important;
        width: 35px;
        height: 35px;
    }

    .prev-btn {
        left: 0px;
    }

    .next-btn {
        right: 0px;
    }

    .salons-banner {
        padding: 12px 20px;
        text-align: center;
    }

    .banner-tagline {
        font-size: 1.1rem;
    }

    .salons-content {
        padding: 2.5rem 6%;
        order: 2;
    }

    .salons-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .salons-desc {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .salons-subtitle {
        font-size: 0.95rem;
    }

    .hours-list {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .hours-list .row {
        flex-wrap: nowrap;
    }

    .hours-list .col-6 {
        font-size: 0.85rem;
        padding-right: 4px;
    }

    .hours-note {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .location-text {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .salons-image-wrapper {
        min-height: 260px;
        order: 1;
    }

    .transport-section {
        padding: 3rem 0 4rem 0;
    }

    .transport-title {
        font-size: 1.5rem;
        letter-spacing: 0.03em;
        margin-bottom: 1rem;
    }

    .transport-img {
        max-width: 200px;
    }

    .img-left,
    .img-right {
        transform: none;
    }

    .transport-section .row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .transport-section .col-12.col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .transport-section .col-12.col-md-6 {
        order: -1;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .transport-content {
        padding: 0 0.5rem;
    }

    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-title {
        font-size: 1.8rem;
    }

    .gallery-carousel-wrapper {
        width: calc(100% + 1.5rem);
        margin-right: -1.5rem;
    }

    .gallery-track {
        gap: 0.75rem;
        padding-right: 1.5rem;
    }

    .gallery-item {
        flex: 0 0 78%;
        height: 260px;
    }

    .footer-section {
        padding-top: 3rem;
    }

    .footer-top {
        padding-bottom: 2rem;
    }

    .footer-logo-img {
        width: clamp(180px, 55vw, 260px);
    }

    .footer-brand-col {
        margin-bottom: 2.5rem !important;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-links li,
    .footer-info li,
    .footer-social li {
        font-size: 0.88rem;
        margin-bottom: 0.4rem;
    }

    .footer-top .col-6 {
        margin-bottom: 2rem !important;
    }

    .footer-top .col-12.col-md-3 {
        padding-top: 0.5rem;
    }

    .footer-bottom {
        padding: 1.2rem 0;
        font-size: 0.8rem;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        gap: 1rem !important;
    }
}