@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Pinyon+Script&display=swap');

:root {
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    
    --text-muted: #a0a0a0;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3cf55;

    --navbar-height: auto;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    
    position: relative;
    
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    
    background-image: radial-gradient(circle at 50% -20%, #2a2a2a 0%, #0a0a0a 70%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    display: flex;
    
    flex-direction: column;
    
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}



.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    
}

footer {
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    margin-top: 4rem;
    

    
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

footer span {
    opacity: 0.7;
    transition: opacity 0.3s;
}

footer:hover span {
    opacity: 1;
    color: var(--accent-gold);
}


.content-page {
    padding-top: 120px !important;
    justify-content: flex-start;
    
}

.container {
    width: 100%;
    margin: 0 auto;
}



.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1,
h2,
h3,
.about-title,
.article-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}


.page-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    color: var(--text-main);
    letter-spacing: 1px;
}


.landing-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.brand-name {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

a[href^="mailto:"] {
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    
    position: relative;
}

a[href^="mailto:"]:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}


a[href^="mailto:"]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

a[href^="mailto:"]:hover::after {
    width: 100%;
}


.social-link {
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}


a[href*="instagram.com"] {
    color: var(--text-muted);
}

a[href*="instagram.com"]:hover {
    color: #E1306C;
    
    border-bottom-color: #E1306C;
    text-shadow: 0 0 15px rgba(225, 48, 108, 0.3);
}


a[href*="facebook.com"] {
    color: var(--text-muted);
}

a[href*="facebook.com"]:hover {
    color: #1877F2;
    
    border-bottom-color: #1877F2;
    text-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
}


.social-link:hover {
    transform: translateY(-3px) scale(1.02);
}

.brand-title {
    color: var(--accent-gold);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 30px;
    display: inline-block;
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.message {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}


.loader-line {
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    margin: 30px auto 10px;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: loadLine 2s ease-in-out forwards;
}

.status-text {
    font-size: 0.8rem;
    color: #b4b4b4;
    font-style: italic;
}


.navbar {
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);

    
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    transform: translateY(0);
    
}


.navbar-hidden {
    transform: translateY(-100%);
}


.navbar-visible {
    transform: translateY(0);
}

.nav-brand {
    width: 300px;
}


.nav-brand a {
    font-family: 'Pinyon Script', cursive;
    
    font-size: 2.2rem;
    
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    
}


.nav-brand a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 10px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
    
}

.nav-brand-image-container {
    display: flex;
    position: fixed;
    max-height: 80px;
    left: 0;
    right: 0;
    top: 00px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    padding: 0;
    background: var(--bg-dark);
    border: 1px var(--accent-gold-hover) solid;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.nav-brand-image-container:hover {
    box-shadow: 0 0 20px var(--accent-gold-hover);
}

.nav-brand-image {
    object-fit: cover;
    max-height: 80px;
}

.about-image {
    max-height: 180px;
    position: relative;
}


.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2.5rem;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    
    text-transform: uppercase;
    letter-spacing: 3px;
    
    font-weight: 400;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.spacer {
    flex-grow: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
}

.spacer-wide {
    display: block;
}

.spacer-narrow {
    display: none;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


@media (max-width: 768px) {

    :root {
        --navbar-height: 50px;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-brand a {
        font-size: 1.8rem;
    }
}


.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 0.1rem;
    height: 100%;
}



.story-card-image {
    height: 140px;
    
    width: 100%;
    overflow: hidden;
    position: relative;
    
    background: #000;
}

.story-card-image img {
    
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 120%;
    

    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}



.story-card:hover .story-card-image img {
    transform: translate(-50%, -50%) scale(1.15);
    
    opacity: 1;
}

.story-card-content {
    padding: 1.2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
    display: flex;
    flex-direction: column;
    
    flex-grow: 1;
    overflow: hidden;
}


.story-category {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.story-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #fff;
}

.story-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;

    
    margin-top: auto;
    width: 100%;
}

.story-date {
    font-size: 0.8rem;
    color: #666;
}

.read-more {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-gold);
}


.read-mode {
    max-width: 800px;
    
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--accent-gold);
}

.story-meta {
    display: block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content {
    font-size: 1.25rem;
    
    line-height: 1.9;
    color: #dcdcdc;
    font-family: 'Playfair Display', serif;
    
}

.story-content p {
    margin-bottom: 0.75rem;
}

.demo-note {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}




.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 2rem;
}

.about-grid {
    display: flex;
    flex-direction: column;
    
    align-items: center;
    
    max-width: 800px;
    
    margin: 0 auto;
    text-align: center;
    
    gap: 2rem;
}


.about-image-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}


.image-frame {
    width: 200px;
    
    height: 200px;
    
    position: relative;

    
    background: transparent;
    border: none;
    box-shadow: none;

    
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);

    
    animation: floatImage 6s ease-in-out infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    object-position: top center;
    

    
    filter: sepia(40%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease;
}


.image-frame:hover .profile-image {
    filter: sepia(0%) contrast(1) brightness(1);
}


.about-text-content {
    animation-delay: 0.2s;
    
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--accent-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 90%;
    
    margin-left: auto;
    margin-right: auto;
}

.signature {
    margin-top: 2rem;
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    
    color: var(--accent-gold);
    text-align: center;
    
    opacity: 0.8;
}

 
@media (max-width: 768px) {
    .image-frame {
        width: 150px;
        height: 150px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-body p {
        font-size: 1rem;
    }
}


@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        
        gap: 3rem;
        text-align: center;
        
    }

    .about-text-content,
    .signature {
        text-align: center;
    }

    
    

    .about-title {
        font-size: 2.5rem;
    }

    .profile-image {
        max-width: 100%;
    }
}



.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}


@keyframes loadLine {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        width: 100px;
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .about-wrapper {
        padding: 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 15px;
    }

    .content-page {
        padding: 1rem;
        padding-top: 60px !important;
        justify-content: flex-start;
        
    }

}

.fade-up {
    opacity: 1 !important;
    transform: none !important;
}




.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--text-heading, #333);
    
    margin: 5px;
    transition: all 0.3s ease;
}


@media screen and (max-width: 768px) {

    .nav-brand-image-container {
        max-height: 60px;
        max-width: 60px;
    }

    .nav-brand-image {
        max-height: 60px;
        max-width: 60px;
    }

    
    .navbar {
        justify-content: space-between;
        padding: 0 1.5rem;
        
    }


    
    .burger-menu {
        display: block;
        z-index: 1001;
        
    }

    
    .nav-links {
        
        position: absolute;
        
        top: var(--navbar-height);
        
        right: 0;
        bottom: 0;
        

        width: 70%;
        
        height: calc(100vh);
        

        
        overflow-y: auto;
        overflow-x: hidden;

        
        background-color: var(--bg-card);
        border-left: 1px solid var(--accent-gold);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        

        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;

        
        padding: 2rem 0 4rem 0;
    }


    .nav-links::-webkit-scrollbar {
        width: 4px;
        
    }

    .nav-links::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 4px;
    }

    
    .nav-links li {
        margin: 0.1rem 0;
        opacity: 0;
        
    }

    
    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
        
    }

    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;

    
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.2s;
}

.dropdown-wrapper.active .dropdown-menu {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 25px;
    
}





.dropdown-wrapper {
    position: relative;
    
    align-items: center;

}

.dropdown-icon {
    display: none !important;
}


@media (max-width: 1450px) {

    
    .desktop-only-cat {
        display: none;
    }

    .spacer-wide {
        display: none;
    }

    .spacer-narrow {
        display: block;
    }

    
    .dropdown-icon {
        display: inline-block !important;
        
        vertical-align: middle;
        margin-left: 2px;
        
    }

    
    .dropdown-wrapper:hover .dropdown-menu {
        display: flex;
        
        animation: fadeIn 0.3s ease;
    }

    .dropdown-wrapper:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    
    .dropdown-wrapper {
        flex-direction: column;
        align-items: center;
        
        width: 100%;
    }

    
    .dropdown-wrapper>a {
        width: 100%;
        padding: 15px 0;
        
        justify-content: center;
        
        display: flex;
    }

    .spacer {
        flex-grow: 0;
    }

    
    .dropdown-menu {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        width: 100%;

        
        background: rgba(255, 255, 255, 0.05);

        
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        margin-top: 5px;
        margin-bottom: 10px;
        padding: 10px 0;
        

        box-shadow: none;
        backdrop-filter: none;
        transform: none;
        animation: none;
    }

    
    .dropdown-menu li {
        opacity: 1 !important;
        transform: none !important;
        width: 100%;
        text-align: center;
        
        display: flex;
        justify-content: center;
    }

    .dropdown-menu li a {
        padding: 12px 0;
        
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        
        color: var(--text-muted);
        width: 100%;
        display: block;
    }

    
    .dropdown-icon {
        display: none !important;
    }
}


.typewriter-text.typing::after {
    content: "|";
    margin-left: 2px;
    color: var(--accent-gold);
    font-weight: bold;
    animation: blink 0.8s infinite;
    visibility: visible;
}


.typewriter-text::after {
    content: "|";
    visibility: hidden;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    
    right: 1.5rem;
    
    max-width: 24rem;
    
    width: calc(100% - 3rem);
    

    
    background-color: var(--bg-card, #ffffff);
    border: 1px solid var(--accent-gold, #e5e7eb);
    color: var(--text-main, #1f2937);

    padding: 1rem;
    border-radius: 0.75rem;
    
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    z-index: 9999;

    
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    
}


#cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


#cookie-banner .banner-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

#cookie-banner h4 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

#cookie-banner p {
    font-size: 0.75rem;
    color: var(--text-muted, #6b7280);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}


#cookie-banner button {
    background-color: var(--bg-dark);
    
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

#cookie-banner button:hover {
    border: 1px solid var(--accent-gold-hover, #e5e7eb);
    color: var(--accent-gold-hover, #e5e7eb);
    
}



@media (max-width: 640px) {
    #cookie-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
    }
}

.google-auto-placed {
    margin-bottom: 20px;
}