@font-face {
    font-family: "FreightDisplay";
    src: url("fonts/FreightDisplay-Light.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "FreightDisplayItalic";
    src: url("fonts/FreightDisplay-LightItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Helvetica";
    src: url("Fonts/helvetica-compressed-5871d14b6903a.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaLight";
    src: url("Fonts/helvetica-light-587ebe5a59211.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "HelveticaOblique";
    src: url("Fonts/Helvetica-Oblique.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaRounded";
    src: url("Fonts/helvetica-rounded-bold-5871d05ead8de.otf") format("opentype");
}

body {
    margin: 0;
    
}
.image-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.background-image {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.topMenu {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1100;
    box-sizing: border-box;
}
.topMenu.light-icons .menu-line {
    stroke: #FAF8F5;
}

.topMenu.light-icons .insta svg path {
    stroke: #FAF8F5;
}

.insta svg {
    width:25px;
    height: 25px;
    cursor: pointer;
    transition: 0.2s ease;
}

.insta:hover svg {
    transform: scale(1.15);
    opacity: 0.8;
}
.hamburger.open ~ .insta {
    opacity: 0;
    pointer-events: none;
}
.hamburger {
    cursor: pointer;
    z-index: 1100;
    position: relative;
}
.hamburger.open {
    position: fixed;
    top: 28px;
    left: 20px;
    z-index: 1100;
}
.hamburger.hidden {
    opacity: 1;
    pointer-events: auto;
}
.menu-line  {
    stroke: #4D403A;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-box: fill-box;
    transform-origin: center;
    transform-origin: 50% 50%; 
}
.hamburger.open .line1 {
    transform: rotate(45deg) translateY(9px);
}

.hamburger.open .line2 {
    transform: rotate(-45deg) translateY(-9px);
} 
.dropdown::before {
    display: none;
}
.dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(163,150,141,0.93); 
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 1.1s ease, opacity 0.6s ease;
    z-index: 1000;
}

.dropdown.open {
    transform: translateY(0);
    opacity: 1;
}

.dropdown a {
    text-decoration: none;
    color: #4D403A;
    margin: 15px 0;
    font-family: "FreightDisplay", serif;
    transition: 0.5s ease;
}
a{
   font-size: 20px;
}
.dropdown a:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.logo {
  width: 15%;
}

.floating-salonkee-btn--rect {
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 200px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #FAF8F5;
    background: radial-gradient(
        circle at 50% 50%,
        #6a5b53 0%,
        #4D403A 70%
    );
    box-shadow: 0 6px 12px rgba(0,0,0,0.35),
        0 0 10px rgba(77, 64, 58, 0.25),
        0 0 20px rgba(77, 64, 58, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    opacity: 1;
}
.floating-salonkee-btn--rect span {
    transition: transform 0.3s ease;
}

.floating-salonkee-btn--rect:hover {
    background: #6a5b53;
    box-shadow:
        0 0 25px rgba(77, 64, 58, 0.35),
        0 0 60px rgba(77, 64, 58, 0.25),
        0 0 100px rgba(77, 64, 58, 0.15);
}

.floating-salonkee-btn--rect:hover span {
    transform: translateY(2px);
}

.floating-salonkee-btn--rect.hidden-btn {
    opacity: 0;
    pointer-events: none;
}
.floating-salonkee-btn { 
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none; 
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-size: 17px; 
    line-height: 1.2;
    color: #FAF8F5;
    background: radial-gradient(
        circle at 50% 50%,
        #6a5b53 0%,
        #4D403A 70%
    );
    box-shadow: 0 6px 12px rgba(0,0,0,0.35),           
        0 0 10px rgba(77, 64, 58, 0.25), 
        0 0 20px rgba(77, 64, 58, 0.15);  
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.floating-salonkee-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-salonkee-btn:hover span {
    transform: translateY(2px);
}

.floating-salonkee-btn.light {
    background: radial-gradient(
        circle at 50% 50%,
        #e8e4da 0%,
        #DFDACF 60%,
        #4D403A 100%
    );
    color: #4D403A;
    font-weight: bolder;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15),
        0 0 10px rgba(223, 218, 207, 0.4),
        0 0 20px rgba(223, 218, 207, 0.2);
}

.price-list {
    background-color: #FAF8F5;
}

.category {
    width: 100%;
    margin: 0 auto;  
    padding: 0;
}
.category-header {
    font-family: "FreightDisplay", serif;
    text-transform: uppercase;
    background: #4D403A;
    color: #FAF8F5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    word-spacing: 5px;
    border-bottom: none; 
    position: relative;
    padding: 16px calc(17.5% + 24px);
    box-sizing: border-box;
}
.category-header::after {
    content: "";
    position: absolute;
    left: calc(17.5% + 24px);   
    right: calc(17.5% + 24px); 
    bottom: 0;
    height: 0;
    border-bottom: 0.3px dotted #A3968D;
}
.category-title {
    font-size: 20px;
}

.category-header svg {
    width: 24px;
    height: 24px;
    background: none; 
    stroke: #FAF8F5;
}

.arrow-open {
    display: none;
}

.category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FAF8F5;
    padding: 16px 0;
    border-radius: 0 0 10px 10px;
    max-width: 60%;
    margin: 0 auto;
    width: 100%;
}

.item {
    width: 100%;
    padding: 12px 5px;
    border-bottom: 0.4px solid #A3968D;
    color: #4D403A;
    box-sizing: border-box;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    box-sizing: border-box;
    font-family: "FreightDisplay", serif;
    font-style: italic;
    font-size: 18px;
    margin-bottom: 8px;
}

.desc-toggle {
    font-family: "HelveticaLight", sans-serif;
    background: none;
    border: none;
    font-size: 10px;
    font-weight: 200;
    color: #4D403A;
    cursor: pointer;
    padding: 0 0 0 10px;
    margin-bottom: 5px;
}

.desc-toggle:hover {
    opacity: 0.6;
}

.item-description {
    display: none;
    font-size: 13px;
    line-height: 1.4;
    color: #4D403A;
    margin: 0;
    font-family: "FreightDisplay", serif;
    padding: 0 15px 0 15px;
}
.item-price {
    font-family: "FreightDisplay", serif;
    font-style: normal;
    font-size: 14px;
    word-spacing: 5px;
    white-space: nowrap;
    margin-left: 16px;
}

.aboutUs {
    background-color: #DFDACF;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 140px;
    box-sizing: border-box;
}
.aboutUsPicture {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.year-counter {
    position: absolute;
    font-family: "FreightDisplay", serif;
    font-size: 80px;
    color: #4D403A;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

#photoTeam {
    width: 100%;
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block;
    margin: 0 auto;
}

#photoTeam.visible {
    opacity: 1;
}

.aboutUsText {
    flex: 1;
    font-family: "FreightDisplay", serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4D403A;
    max-width: 60%;
}

.aboutUsText p {
    margin: 0 0 16px 0;
}
.Italique {
    font-family: "FreightDisplayItalic", serif;
    font-size: 20px;
    margin-right: 6px;
}
h2 {
    display: flex;
    justify-content: center;
    font-family: "FreightDisplay", serif;
    color: #4D403A;
}
#aboutUsHeader{
    font-size: 30px;
    padding-bottom: 30px;
}   
i {
    margin-right: 10px;
}
.brands {
    margin: 50px;
}
.brandsBlock {
    display: flex;
    justify-content: center;
}
.logoBrand{
    width: auto;
}
.brand {
    align-self: center;
    margin: 20px;
    padding:5px;
}
#brandsHeader {
    font-size: 30px;
    margin: 50px;
}
.bigLogo {
    height: 25px;
}

/*ENVELOPE*/

.envelope-section {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

#imageFleur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}
#imageFleur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.envelope-wrapper {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-40%, -50%);
    width: 286px;
    height: auto;
    z-index: 5;
}
.envelope-cover {
    width: 100%;
    display: block;
    position: relative;
    z-index: 10;
}
.gift-card {
    position: absolute;
    top: 0;        
    left: 0;       
    width: 100%;   
    transform: translateX(0);
    opacity: 0;
    z-index: 1; 
}

/* MAP*/
#map {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

.custom-info-window {
    font-family: "FreightDisplay", serif;
    background: #4D403A;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    max-width: 200px;
    color: #FAF8F5;
    text-align: center;
}

.custom-info-window .info-logo {
    width: 50px;     
    height: auto;    
    display: block;
    margin: 0 auto 18px auto;
}

.custom-info-window p {
    margin: 4px 0;
    font-size: 15px;
    color: #FAF8F5;
}

.custom-info-window a {
    color: #FAF8F5;
    text-decoration: none;
    font-size: 15px;
}

.custom-info-window a:hover {
    text-decoration: underline;
}

.gm-ui-hover-effect {
    position: absolute !important;
    top: 25px !important;
    right: 10px !important;
    width: 18px !important;
    height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    opacity: 0.9;
    z-index: 9999;
}

.gm-ui-hover-effect > span {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}


.gm-ui-hover-effect img,
.gm-ui-hover-effect svg,
.gm-ui-hover-effect span {
    filter: brightness(0) invert(1) !important; 
}

.gm-style-iw,
.gm-style-iw-d,
.gm-style-iw-t,
.gm-style-iw-tc {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background: none !important;
    box-shadow: none !important;
}

/*REVIEWS*/

.reviews-section {
    background: #DFDACF;
    padding: 72px 48px;
    box-sizing: border-box;
    font-family: "FreightDisplay", serif;
}

.reviews-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    color: #4D403A;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.reviews-subtitle {
    text-align: center;
    font-size: 15px;
    font-style: italic;
    color: #A3968D;
    margin: 0 0 52px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.review-card {
    background: #FAF8F5;
    border-radius: 16px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0.5px solid rgba(163, 150, 141, 0.27);
    position: relative;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    left: 22px;
    font-size: 60px;
    color: #A3968D;
    line-height: 1;
    font-style: italic;
    opacity: 0.5;
}

.review-text {
    font-size: 14px;
    line-height: 1.75;
    color: #4D403A;
    font-style: italic;
    margin: 28px 0 24px;
    flex: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 0.5px solid rgba(163, 150, 141, 0.33);
    padding-top: 16px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4D403A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #FAF8F5;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.review-author {
    font-size: 15px;
    color: #4D403A;
    font-style: normal;
    letter-spacing: 0.04em;
}

.review-stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.review-star {
    width: 12px;
    height: 12px;
    fill: #A3968D;
}

.reviews-btn-wrap {
    display: flex;
    justify-content: center;
}

.reviews-button {
    font-family: "FreightDisplay", serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4D403A;
    text-decoration: none;
    border: 0.5px solid #4D403A;
    padding: 13px 36px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.reviews-button:hover {
    background: #4D403A;
    color: #FAF8F5;
}

/*BACK_TO_TOP_BUTTON*/

.back-to-top {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 9999;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(
        circle at 50% 50%,
        #6a5b53 0%,
        #4D403A 70%
    );
    box-shadow: 0 6px 12px rgba(0,0,0,0.35),
        0 0 10px rgba(77, 64, 58, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, background 0.3s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #6a5b53;
     transform: translateY(calc(-50% - 2px));
    box-shadow:
        0 0 25px rgba(77, 64, 58, 0.35),
        0 0 60px rgba(77, 64, 58, 0.25);
}
.footer {
    background: #4D403A;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.footer-text {
    font-family: "HelveticaLight", sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #A3968D;
}
.footer-logo img { 
    height: 24px; 
    opacity: 0.7; 
}