/*
Theme Name: Auto Ave
Theme URI: https://www.autoave.ph/
Author: Auto Ave
Author URI: https://www.autoave.ph/
Description: Custom theme for Auto Ave Unlimited Car Wash
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: autoave
*/

html {
  scroll-behavior: smooth;
}

/* Basic reset and fonts */
body {
  margin: 0;
  font-family: Kanit, sans-serif;
  background-color: #121212;
  color: #fff;
}

/* Button styles simplified */
.btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  background: #e31712;
  border: 1px solid #e94f37;
  border-radius: 10px;
  box-sizing: border-box;
}
.btn:hover { color: #fff }
.text-center { text-align: center }
.font-montserrat { font-family: Montserrat, sans-serif; }
.img-fluid { max-width:100%; height:auto }
.section { padding:40px 0 }
.bg-dark { background-color:#121212 }
.bg-black { background-color:#000 }
.container { width:100%; max-width:1120px; margin:0 auto }
.row { display:grid; grid-template-columns:repeat(12,1fr); gap:20px }
@media(max-width:800px){ .row{ display:flex; flex-direction:column } }
.col-12 { grid-column:span 12 }
.col-4 { grid-column:span 4 }
@media(max-width:800px){ .col-4, .col-6, .col-12{ grid-column:span 12 } }
.card { border:1px solid #e31712; border-radius:4px; padding:32px 40px }
ul.list-unstyled { list-style:none; padding-left:0 }
ul.list-unstyled li { display:flex; align-items:baseline; margin-bottom:10px }
ul.list-unstyled li i { margin-right:10px }

/* ==== FIXED TOP RIGHT HORIZONTAL MENU ==== */
#topMenu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  font-weight: 600;
  font-family: Kanit, sans-serif;
  background: transparent;
}

#topMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row; /* horizontal */
  gap: 20px;
}

#topMenu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
  white-space: nowrap;
}

#topMenu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

#topMenu ul li a.active,
#topMenu ul li a.active:hover {
  background-color: #fff;
  color: #e31712;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  #topMenu {
    position: static;
    top: auto;
    right: auto;
    padding: 10px 0;
    text-align: center;
  }
  #topMenu ul {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
  #topMenu ul li a {
    padding: 12px 0;
  }
}

/* Visit Us Section Specific */
#social-media .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  text-align: center;
}
#social-media .info-text {
  color: #fff;
  font-family: Kanit, sans-serif;
  max-width: 600px;
}
#social-media .info-text h2 {
  font-size: 49px;
  line-height: 44px;
  margin: 0;
}
#social-media .info-text p {
  font-size: 18px;
  margin: 0;
}
#social-media .btn-facebook {
  max-width: none;
  background: #1877F2;
  border-color: #1877F2;
  white-space: nowrap;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 16px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#social-media .btn-facebook:hover {
  background: #145db2;
  color: #fff;
}