/*
Theme Name: Celtic Beard
Author: Celtic Beard
Description: A custom dark theme with Irish tri-color accents and dynamic menus.
Version: 2.0
*/

/* === COLOR PALETTE & VARIABLES === */
:root {
    --celtic-green: #169b62; 
    --celtic-white: #ffffff;
    --celtic-orange: #ff883e; 
    --bg-black: #070707;
    --bg-darker: #000000;
}

/* === GLOBAL STYLES === */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-black);
    color: var(--celtic-white);
    scroll-behavior: smooth;
}

/* Base link reset to fix blue links globally */
a {
    color: var(--celtic-white);
    text-decoration: none;
}

/* === NAVIGATION BAR === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    z-index: 1000;
    background: transparent;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 50px;
    box-shadow: 0 4px 15px rgba(22, 155, 98, 0.15); 
    border-bottom: 2px solid var(--celtic-orange);
    backdrop-filter: blur(5px);
}

.logo img {
    height: 80px;
    transition: height 0.4s ease;
}

nav.scrolled .logo img {
    height: 55px; 
}

/* === MENU LINKS (Updated for WP Menus) === */
ul.menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

ul.menu li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: var(--celtic-white); /* Default color to prevent blue links */
}

/* Custom CSS Classes applied via WordPress Menu Editor */
ul.menu li.link-green a { color: var(--celtic-green); }
ul.menu li.link-white a { color: var(--celtic-white); }
ul.menu li.link-orange a { color: var(--celtic-orange); }

ul.menu li.link-green a:hover { color: var(--celtic-white); text-shadow: 0 0 10px var(--celtic-green); }
ul.menu li.link-white a:hover { color: var(--celtic-orange); text-shadow: 0 0 10px var(--celtic-white); }
ul.menu li.link-orange a:hover { color: var(--celtic-green); text-shadow: 0 0 10px var(--celtic-orange); }

/* === PAGE SECTIONS === */
section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#home {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding-top: 100px;
}

#shop { background-color: var(--bg-darker); }
#about { background-color: var(--bg-black); }
#contact { background-color: var(--bg-darker); }

/* === TYPOGRAPHY & BUTTONS === */
h1 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    color: var(--celtic-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 span {
    color: var(--celtic-orange);
}

p {
    font-size: 1.3rem;
    max-width: 700px;
    line-height: 1.6;
    color: #b3b3b3;
}

.cta-btn {
    margin-top: 30px;
    padding: 15px 35px;
    background-color: var(--celtic-green);
    color: var(--celtic-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--celtic-orange);
}
