/*
 * 予約番 (YoyakuBan) Custom Header & Footer CSS
 * SAFE & COMPLIANT VERSION for MAGMA RESORT
 *
 * UPDATES:
 * - Footer background color set to #9C865E
 * - All footer text, links, and borders set to white
 * - All footer columns are center-aligned on mobile
 */

/* ===================================
 * HEADER STYLES (No Change)
 * =================================== */
#customer_header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
}

.customer_header_container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allows stacking on mobile */
}

.customer_logo {
  flex-shrink: 0;
}

.customer_logo a {
  display: block;
}

.customer_logo img {
  height: 40px;
  width: auto;
  max-width: 250px;
}

.customer_nav {
  margin-top: 10px;
}

.customer_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.customer_nav li a {
  text-decoration: none;
  color: #352e26;
  font-weight: 600;
  font-size: 15px;
  padding: 8px;
  transition: color 0.3s;
}

.customer_nav li a:hover {
  color: #9b865e;
}

/* ===================================
 * FOOTER STYLES (Updated)
 * =================================== */
#customer_footer {
  width: 100%;
  background-color: #9C865E; /* CHANGED */
  color: #FFFFFF; /* CHANGED */
  padding: 40px 0 20px 0;
  border-top: none; /* CHANGED */
  font-size: 14px;
  line-height: 1.6;
}

.customer_footer_container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.customer_footer_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.customer_footer_col {
  flex: 1;
  min-width: 200px;
}

/* --- Footer Info Column --- */
#customer_footer_info .customer_footer_logo img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.customer_address p {
  margin: 5px 0;
  color: #FFFFFF; /* CHANGED */
}

.customer_socials {
  margin-top: 15px;
}
.customer_socials a {
  display: inline-block;
  opacity: 0.8; /* Slightly dimmed white icon */
  transition: opacity 0.3s;
}
.customer_socials a:hover {
  opacity: 1;
}

/* --- Footer Nav Columns --- */
.customer_footer_col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer_footer_col li {
  margin-bottom: 10px;
}

.customer_footer_col li a {
  text-decoration: none;
  color: #FFFFFF; /* CHANGED */
  opacity: 0.9;
}

.customer_footer_col li a:hover {
  text-decoration: underline;
  color: #FFFFFF; /* CHANGED */
  opacity: 1;
}

/* --- Copyright --- */
.customer_copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* CHANGED */
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #FFFFFF; /* CHANGED */
  opacity: 0.8;
}

/* ===================================
 * RESPONSIVE (Mobile) STYLES (Updated)
 * =================================== */
@media (max-width: 768px) {
  /* --- Mobile Header --- */
  .customer_header_container {
    flex-direction: column;
    gap: 15px;
  }
  
  .customer_nav {
    margin-top: 0;
  }

  .customer_nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 10px;
  }

  /* --- Mobile Footer --- */
  .customer_footer_content {
    flex-direction: column;
    gap: 20px;
  }
  
  /* This new rule centers all columns on mobile */
  .customer_footer_col {
    text-align: center; 
  }
}