/*

Theme Name: Kadence Child Fresh
Theme URI: https://www.kadencewp.com/
Description: A child theme for the Kadence theme.
Author: Faye 
Template: kadence
Version: 1.0.0
*/

@import url("../kadence/style.css");

/* Add your custom styles below this line */

/* Load Inter FIRST */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');



/* Force Inter on navigation */
.header-navigation *,
.primary-menu-container *,
#primary-menu li.menu-item a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important; /* 100 is too thin */
}



.menu a{
  color: white!important;
  border: 1px solid white;
  padding: 8px 24px !important;
  min-width: 130px !important;
  box-sizing: border-box !important;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.menu li {
  margin: 0 8px;
}

.site-header-item-main-navigation {
    position: static !important;
    float: none !important;
    text-align: center !important;
    width: 100% !important;
}

.primary-menu-container {
    display: inline-block !important;
    margin: 0 auto !important;
    float: none !important;
}

#primary-menu {
    display: inline-flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
}

#primary-menu .menu-item {
    margin: 0 10px !important;
    float: none !important;
    display: inline-block !important;
}

.site-header-item.site-header-item-main-navigation > nav {
    display: block !important;
    text-align: center !important;
}

.menu a:hover {
  background-color: #b2beb5;
  color: black !important;
}

body.custom-auth-page {
    background: #000000;
    color: #ffffff;
}

.custom-login-container,
.custom-register-container,
.custom-account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.custom-login-form,
.custom-register-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #b2beb5;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.custom-login-heading,
.custom-register-heading,
.account-welcome {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.custom-login-form label,
.custom-register-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"],
.custom-register-form input[type="text"],
.custom-register-form input[type="email"],
.custom-register-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #b2beb5;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.custom-login-form input[type="submit"],
.custom-register-form input[type="submit"] {
    background: #ffffff !important;
    color: #000000 !important;
    border: none;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    transition: all 0.3s;
}

.custom-login-form input[type="submit"]:hover,
.custom-register-form input[type="submit"]:hover {
    background: #b2beb5 !important;
    color: #000000 !important;
}

.custom-login-links,
.custom-register-links {
    margin-top: 20px;
    text-align: center;
}

.custom-login-links a,
.custom-register-links a {
    color: #b2beb5;
    text-decoration: none;
    margin: 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: color 0.3s;
}

.custom-login-links a:hover,
.custom-register-links a:hover {
    color: #ffffff;
}

/* Account Page Styles */
.custom-account-container {
    display: flex;
    gap: 40px;
    color: #ffffff;
}

.custom-account-sidebar {
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border: 1px solid #b2beb5;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.custom-account-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border: 1px solid #b2beb5;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.account-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.account-username {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.account-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-navigation li {
    margin-bottom: 10px;
}

.account-navigation a {
    display: block;
    padding: 10px;
    color: #b2beb5;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.account-navigation a:hover,
.account-navigation a.active {
    color: #ffffff;
    border-left: 3px solid #ffffff;
}

.account-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #b2beb5;
}

/* Messages */
.custom-register-success {
    background: rgba(178, 190, 181, 0.2);
    color: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #b2beb5;
}

.custom-login-error,
.custom-register-error {
    background: rgba(198, 40, 40, 0.2);
    color: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #c62828;
}

/* Glass Morphism Effect for Forms */
.custom-login-form,
.custom-register-form,
.custom-account-sidebar,
.custom-account-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Account Settings Styles */
.account-settings-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #b2beb5;
}

.account-settings-section h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-bottom: 20px;
}

.account-settings-section .form-group {
    margin-bottom: 20px;
}

.account-settings-section label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.account-settings-section input[type="text"],
.account-settings-section input[type="email"],
.account-settings-section input[type="password"] {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #b2beb5;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.account-settings-section input[type="submit"] {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.account-settings-section input[type="submit"]:hover {
    background: #b2beb5;
}

/* Success/Error Messages */
.settings-updated {
    background: rgba(178, 190, 181, 0.2);
    color: #ffffff;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid #b2beb5;
}

.settings-error {
    background: rgba(198, 40, 40, 0.2);
    color: #ffffff;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid #c62828;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    
    .custom-login-container,
    .custom-register-container,
    .custom-account-container {
        margin: 20px auto;
        padding: 20px;
    }
}
