/* ========================================
   Header Styles
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #8b6f47;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.logo-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 0.7rem;
  color: #8b6f47;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
  opacity: 0.8;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #8b6f47;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #8b6f47;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 10px 15px;
  border-radius: 5px;
  display: block;
  text-align: center;
}

.nav a:hover {
  color: #5d4a37;
}

/* ========================================
   Social Media Bar Styles
   ======================================== */
.social-media-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  background: white;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-media-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f6f3;
  color: #8b6f47;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-media-bar a:hover {
  background: #8b6f47;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.social-media-bar svg {
  width: 20px;
  height: 20px;
}
