/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inria Serif', serif;
    padding-top: 70px;
}

.container {
    margin: 0;
    padding: 0;
    position: relative;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 0.5px solid #916952;
    backdrop-filter: blur(30px);
    z-index: 1000;
}

.header-content {
    position: relative;
    width: 100%;
    height: 70px;
}

/* ========== MENU BUTTON ========== */
.header-left {
    position: absolute;
    width: 92.99px;
    height: 36px;
    left: 100px;
    top: calc(50% - 36px/2);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
}

.menu-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    font-size: 20px;
}

.menu-toggle span:last-child {
    font-family: 'Inria Serif';
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    letter-spacing: 0.03em;
}

/* ========== LOGO ========== */
.header-center {
    position: absolute;
    width: 43px;
    height: 46px;
    left: calc(50% - 43px/2);
    top: calc(50% - 46px/2);
}

.logo-img,
.custom-logo {
    width: 43px;
    height: 46px;
}

.logo-stars {
  position: absolute;
  top: 100%; 
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2px;
}

.stars-img {
  width: 47px;
  height: auto;
  display: block;
}


/* ========== RIGHT SIDE ========== */
.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
    position: absolute;
    right: 100px;
    top: calc(50% - 44px/2);
    height: 44px;
}

/* Language */
.language-switcher {
    font-family: 'Inria Serif';
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
	
    color: #000000;
}

/* Reservation Button */
.reservation-btn {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;
    width: 188px;
    height: 44px;
    background: #916952;
    border-radius: 5px;
    text-decoration: none;
    justify-content: center;
}

.calendar-icon {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
}

.reservation-btn span:last-child {
    font-family: 'Inria Serif';
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
    letter-spacing: 0.03em;
}

/*FOOTER CSS*/

