/*
Theme Name: Basic WordPress Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: A basic WordPress theme with local font support and WooCommerce compatibility
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basic-wp-theme
Tags: woocommerce, custom-fonts
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family, 'CustomFont', sans-serif);
    line-height: 1.6;
    color: var(--text-main, #222);
    background: var(--background, #f7f8fa);
    transition: background 0.3s;
}

a {
    color: var(--primary, #5b3df5);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover, a:focus {
    color: var(--secondary, #2d1e70);
    text-decoration: underline;
}

/* Font face declarations will be added here */
@font-face {
    font-family: 'CustomFont';
    src: url('fonts/your-font.woff2') format('woff2'),
         url('fonts/your-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Basic layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
.site-header {
    padding: 24px 0 12px 0;
    background: var(--header-bg, #fff);
    box-shadow: 0 2px 8px rgba(60,60,100,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.2s;
    color: var(--header-text, var(--primary, #5b3df5));
}

.site-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--header-text, var(--primary, #5b3df5));
    letter-spacing: -1px;
    margin-bottom: 0.2em;
    transition: color 0.2s;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    margin: 20px 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 28px;
    padding: 0;
    margin: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--menu-link-color, #5b3df5);
    font-weight: 500;
    font-size: 1.08rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    border: 2px solid orange !important; /* DEBUG: show menu link borders */
}

.main-navigation a:hover, .main-navigation a:focus {
    color: var(--menu-link-hover-color, #2d1e70);
}

.main-navigation ul ul a {
    color: var(--submenu-link-color, #5b3df5);
    border: 2px solid blue !important; /* DEBUG: show submenu link borders */
}
.main-navigation ul ul a:hover, .main-navigation ul ul a:focus {
    color: var(--submenu-link-hover-color, #2d1e70);
}

/* Content area */
.site-content {
    padding: 40px 0;
    animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

article {
    background: var(--card-bg, #fff);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(60,60,100,0.07);
    margin-bottom: 32px;
    padding: 28px 32px;
    transition: box-shadow 0.2s, transform 0.2s;
    animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1);
}

article:hover {
    box-shadow: 0 6px 24px rgba(60,60,100,0.13);
    transform: translateY(-2px) scale(1.01);
}

.entry-title {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    color: var(--post-title-color, var(--card-title-text, var(--secondary, #2d1e70)));
    font-weight: 600;
}

.entry-content {
    font-size: 1.08rem;
    color: var(--card-content-text, var(--text-light, #444));
}

/* Footer */
.site-footer {
    background: var(--footer-bg, #f3f3f7);
    padding: 40px 0 20px 0;
    margin-top: 40px;
    text-align: center;
    color: var(--footer-text, var(--text-muted, #888));
    font-size: 1rem;
    border-top: 1px solid var(--border, #e5e5ef);
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
}

.footer-menu a {
    color: var(--primary, #5b3df5);
    font-weight: 500;
    transition: color 0.2s;
}

.footer-menu a:hover, .footer-menu a:focus {
    color: var(--secondary, #2d1e70);
}

@media (max-width: 700px) {
    .container {
        padding: 0 8px;
    }
    article {
        padding: 18px 10px;
    }
    .main-navigation ul {
        gap: 12px;
    }
}

.fluid-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-radius: 16px;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
}
.fluid-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
  opacity: 0.7;
  z-index: 1;
}
.site-header.fluid-glass {
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0;
}
.site-footer.fluid-glass {
  border-radius: 0;
} 