/*
Theme Name: MarQuies Willis
Theme URI: https://marquieswillis.com
Author: MarQuies Willis
Author URI: https://marquieswillis.com
Description: A professional personal portfolio theme for MarQuies Willis - National Director of Sales with 18+ years of hospitality experience. Elegant dark theme with gold accents.
Version: 1.0.1
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marquies-willis
Tags: one-page, portfolio, dark, custom-colors, custom-logo, custom-menu, featured-images, full-width-template
*/

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */
:root {
    --background: hsl(0, 0%, 7%);
    --foreground: hsl(45, 20%, 95%);
    --card: hsl(0, 0%, 10%);
    --card-foreground: hsl(45, 20%, 95%);
    --primary: hsl(43, 74%, 49%);
    --primary-foreground: hsl(0, 0%, 7%);
    --secondary: hsl(0, 0%, 14%);
    --secondary-foreground: hsl(45, 20%, 95%);
    --muted: hsl(0, 0%, 18%);
    --muted-foreground: hsl(45, 10%, 60%);
    --border: hsl(0, 0%, 20%);
    --gold: hsl(43, 74%, 49%);
    --gold-light: hsl(43, 74%, 65%);
    --charcoal: hsl(0, 0%, 12%);
    --cream: hsl(45, 20%, 95%);
    --radius: 0.5rem;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.font-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

.text-gold {
    color: var(--primary);
}

.bg-gold {
    background-color: var(--primary);
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.tracking-widest {
    letter-spacing: 0.3em;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.max-w-6xl {
    max-width: 72rem;
    margin: 0 auto;
}

.max-w-4xl {
    max-width: 56rem;
    margin: 0 auto;
}

.max-w-2xl {
    max-width: 42rem;
    margin: 0 auto;
}

.max-w-xl {
    max-width: 36rem;
    margin: 0 auto;
}

.max-w-lg {
    max-width: 32rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-section {
        flex-direction: row;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 4rem 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 5rem;
    }
}

.hero-text-wrapper {
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-text-wrapper {
        margin: 0 0 0 auto;
        margin-right: 4rem;
    }
}

.hero-decorative-line {
    width: 4rem;
    height: 1px;
    background-color: var(--primary);
    margin-bottom: 2rem;
}

.hero-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-tagline {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.025em;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.25rem;
    }
}

.hero-experience {
    color: var(--muted-foreground);
    opacity: 0.8;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.025em;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    flex: 1;
    min-height: 60vh;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        min-height: 100vh;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), transparent, transparent);
    opacity: 0.6;
}

@media (min-width: 1024px) {
    .hero-gradient {
        opacity: 0.4;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    z-index: 20;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--foreground);
}

.scroll-indicator svg {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 1024px) {
    .scroll-indicator--mobile {
        display: none;
    }
}

.scroll-indicator--desktop {
    display: none;
}

@media (min-width: 1024px) {
    .scroll-indicator--desktop {
        display: block;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .about-section {
        padding: 8rem 1.5rem;
    }
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.about-image-container:hover .about-image {
    filter: grayscale(0%);
}

.about-image-border {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    z-index: -1;
}

.about-content {
    /* Content styling */
}

.about-label {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.75;
}

/* ==========================================================================
   Achievements Section
   ========================================================================== */
.achievements-section {
    padding: 6rem 1.5rem;
    background-color: var(--card);
}

@media (min-width: 768px) {
    .achievements-section {
        padding: 8rem 1.5rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    transition: all 0.5s ease;
}

.achievement-card:hover {
    border-color: var(--primary);
}

.achievement-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.achievement-card:hover .achievement-icon-wrapper {
    border-color: var(--primary);
    background-color: var(--primary);
}

.achievement-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    transition: color 0.5s ease;
}

.achievement-card:hover .achievement-icon {
    color: var(--primary-foreground);
}

.achievement-metric {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .achievement-metric {
        font-size: 2.25rem;
    }
}

.achievement-card:hover .achievement-metric {
    color: var(--primary);
}

.achievement-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.achievement-description {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
}

/* ==========================================================================
   Career Section
   ========================================================================== */
.career-section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .career-section {
        padding: 8rem 1.5rem;
    }
}

.career-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.career-item {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--border);
    transition: border-color 0.5s ease;
}

.career-item:hover {
    border-color: var(--primary);
}

.career-dot {
    position: absolute;
    left: -5px;
    top: 0;
    width: 9px;
    height: 9px;
    background-color: var(--background);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.career-venue {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--foreground);
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

.career-item:hover .career-venue {
    color: var(--primary);
}

.career-company {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.career-role {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.career-description {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.75;
    margin-top: 0.75rem;
}

.career-accolades {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.career-accolade {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    border: 1px solid hsla(43, 74%, 49%, 0.3);
    color: var(--primary);
    background-color: hsla(43, 74%, 49%, 0.05);
}

.career-meta {
    color: var(--muted-foreground);
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
}

/* ==========================================================================
   Media Section
   ========================================================================== */
.media-section {
    padding: 6rem 1.5rem;
    background-color: var(--card);
}

@media (min-width: 768px) {
    .media-section {
        padding: 8rem 1.5rem;
    }
}

.media-category {
    margin-bottom: 4rem;
}

.media-category:last-child {
    margin-bottom: 0;
}

.media-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.media-category-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.media-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--foreground);
}

.media-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    transition: all 0.5s ease;
}

.media-card:hover {
    border-color: var(--primary);
}

.media-outlet {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.media-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    color: var(--foreground);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-card:hover .media-title {
    color: var(--primary);
}

.media-external-icon {
    width: 1rem;
    height: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .media-external-icon {
    opacity: 1;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 6rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 8rem 1.5rem;
    }
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3.75rem;
    }
}

.contact-description {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-button:hover {
    background-color: var(--foreground);
}

.contact-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .contact-info {
        flex-direction: row;
        gap: 2rem;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-info-item:hover {
    color: var(--primary);
}

.contact-info-item svg {
    width: 1rem;
    height: 1rem;
}

.contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-social-link {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.contact-social-link:hover {
    color: var(--primary);
}

.contact-social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        text-align: left;
    }
}

.footer-copyright {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-slow {
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bg-background {
    background-color: var(--background);
}

.bg-card {
    background-color: var(--card);
}

.text-foreground {
    color: var(--foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-primary {
    color: var(--primary);
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   Customizer Live Preview Support
   ========================================================================== */
.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut {
    z-index: 9999;
}
