/*--------------------------------------------------------------
  Pause & Arrive - Base Styles
  Dark + Gold premium visual identity
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
    --pa-bg-primary: #121210;
    --pa-bg-secondary: #181914;
    --pa-bg-tertiary: #1e1d19;
    --pa-bg-card: #1a1a17;
    --pa-gold: #c68e17;
    --pa-gold-light: #d9a84a;
    --pa-gold-dark: #a57812;
    --pa-white: #ffffff;
    --pa-text-primary: #ffffff;
    --pa-text-secondary: rgba(255, 255, 255, 0.7);
    --pa-text-muted: rgba(255, 255, 255, 0.45);
    --pa-border: rgba(255, 255, 255, 0.08);
    --pa-border-gold: rgba(198, 142, 23, 0.3);
    --pa-radius: 4px;
    --pa-radius-card: 6px;
    --pa-container-max: 1200px;
    --pa-font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --pa-font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --pa-line-height: 1.7;
}

/*--------------------------------------------------------------
  Typography
--------------------------------------------------------------*/

.pa-single-post .entry-content,
.pa-single-post .post-content,
.pa-single-post article,
.pa-archive-page .site-content {
    font-family: var(--pa-font-body);
    font-size: 16px;
    line-height: var(--pa-line-height);
    color: var(--pa-text-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pa-single-post h1,
.pa-archive-page h1 {
    font-family: var(--pa-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--pa-gold);
    line-height: 1.2;
}

.pa-single-post h2,
.pa-archive-page h2 {
    font-family: var(--pa-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--pa-gold);
    line-height: 1.25;
}

.pa-single-post h3,
.pa-archive-page h3 {
    font-family: var(--pa-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pa-gold);
    line-height: 1.3;
}

.pa-single-post h4,
.pa-archive-page h4 {
    font-family: var(--pa-font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pa-gold);
}

.pa-single-post h5,
.pa-archive-page h5 {
    font-family: var(--pa-font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pa-gold);
}

.pa-single-post h6,
.pa-archive-page h6 {
    font-family: var(--pa-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pa-gold);
}

/*--------------------------------------------------------------
  Links
--------------------------------------------------------------*/

.pa-single-post .entry-content a,
.pa-single-post .post-content a,
.pa-archive-page .site-content a {
    color: var(--pa-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pa-single-post .entry-content a:hover,
.pa-single-post .post-content a:hover,
.pa-archive-page .site-content a:hover {
    color: var(--pa-gold-light);
}

/*--------------------------------------------------------------
  Buttons
--------------------------------------------------------------*/

.pa-single-post .wp-block-button__link,
.pa-single-post .entry-content .button,
.pa-single-post .entry-content a.button,
.pa-archive-page .wp-block-button__link,
.pa-archive-page a.button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--pa-gold);
    color: var(--pa-bg-primary) !important;
    border: none;
    border-radius: var(--pa-radius);
    font-family: var(--pa-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pa-single-post .wp-block-button__link:hover,
.pa-single-post .entry-content .button:hover,
.pa-archive-page .wp-block-button__link:hover,
.pa-archive-page a.button:hover {
    background-color: var(--pa-gold-light);
    color: var(--pa-bg-primary) !important;
    text-decoration: none;
}

/*--------------------------------------------------------------
  Scroll-to-top button
--------------------------------------------------------------*/

.pa-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--pa-gold);
    color: var(--pa-bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(198, 142, 23, 0.3);
}

.pa-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.pa-scroll-top:hover {
    background-color: var(--pa-gold-light);
}
