/*
Theme Name: Ever Kadence Child
Theme URI: https://everrestaurant.com
Description: Child theme for Ever Restaurant Aruba built on Kadence
Author: Sigmar Sommer
Author URI: https://wearemondo.com.com
Template: kadence
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ever-kadence-child
*/


/* Basic utilities */
.container { max-width:1200px; margin:0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--sm { padding: 40px 0; }

/* Buttons */
.btn { display:inline-block; padding: 12px 22px; border-radius:8px; text-decoration:none; }
.btn--primary { background: #4f4a43; color: #fff; }

/* Small responsive helper */
@media (max-width: 768px) { .section { padding: 40px 0; } }


/* Subtle underline hover for menu */
header .primary-navigation ul li a {
  position: relative;
  transition: color 0.3s ease;
}

header .primary-navigation ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #e5ba90;
  transition: width 0.3s ease;
}

header .primary-navigation ul li a:hover::after {
  width: 100%;
}




