* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Text Shimmer Effect */
.text-shimmer {
    position: relative;
    display: inline-block;
    background-size: 200% 100%, auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-repeat: no-repeat, padding-box;
    animation: shimmer 3s ease-in-out infinite;
    --shimmer-base-color: #a1a1aa;
    --shimmer-gradient-color: #ffffff;
    --shimmer-spread: 50px;
    background-image: 
        linear-gradient(
            90deg,
            var(--shimmer-base-color) 0%,
            var(--shimmer-base-color) calc(50% - var(--shimmer-spread)),
            rgba(255, 255, 255, 0.2) calc(50% - var(--shimmer-spread) * 0.8),
            rgba(255, 255, 255, 0.4) calc(50% - var(--shimmer-spread) * 0.6),
            rgba(255, 255, 255, 0.6) calc(50% - var(--shimmer-spread) * 0.4),
            rgba(255, 255, 255, 0.8) calc(50% - var(--shimmer-spread) * 0.2),
            var(--shimmer-gradient-color) 50%,
            rgba(255, 255, 255, 0.8) calc(50% + var(--shimmer-spread) * 0.2),
            rgba(255, 255, 255, 0.6) calc(50% + var(--shimmer-spread) * 0.4),
            rgba(255, 255, 255, 0.4) calc(50% + var(--shimmer-spread) * 0.6),
            rgba(255, 255, 255, 0.2) calc(50% + var(--shimmer-spread) * 0.8),
            var(--shimmer-base-color) calc(50% + var(--shimmer-spread)),
            var(--shimmer-base-color) 100%
        ),
        linear-gradient(var(--shimmer-base-color), var(--shimmer-base-color));
}

@keyframes shimmer {
    0% {
        background-position: 120% center, 0 0;
    }
    100% {
        background-position: -20% center, 0 0;
    }
}

/* Dark theme variant */
.text-shimmer-dark {
    --shimmer-base-color: #71717a;
    --shimmer-gradient-color: #ffffff;
}

/* Customizable duration */
.text-shimmer-fast {
    animation-duration: 1.2s;
}

.text-shimmer-slow {
    animation-duration: 8s;
}

/* Customizable colors */
.text-shimmer-blue {
    --shimmer-base-color: #2563eb;
    --shimmer-gradient-color: #93c5fd;
}

.text-shimmer-purple {
    --shimmer-base-color: #7c3aed;
    --shimmer-gradient-color: #c4b5fd;
}

.text-shimmer-green {
    --shimmer-base-color: #059669;
    --shimmer-gradient-color: #6ee7b7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-behavior: smooth;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

body.page-loading {
    opacity: 0;
}

body.page-loaded {
    opacity: 1;
    animation: fadeIn 0.4s ease-out;
}

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

.site-header {
    width: 100%;
    padding: 2rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.site-header * {
    pointer-events: auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    letter-spacing: 0.05em;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    will-change: opacity;
    text-decoration: none;
    cursor: pointer;
}

.logo-text:hover {
    color: #fff;
}

.site-header.fade-out .logo-text {
    opacity: 0;
}

.menu-wrapper {
    position: relative;
}

.menu-text {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.site-header.fade-out .menu-text {
    opacity: 0;
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.75rem;
    background-color: transparent;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.25rem 0;
    pointer-events: none;
}

.menu-wrapper:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    display: block;
    padding: 0.6rem 0;
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: right;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-item:hover {
    color: #fff;
    transform: translateX(-4px);
}

.ethereal-shadow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.ethereal-shadow-container.paused {
    opacity: 0;
}

.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
    border: none;
}

/* Ensure video covers entire viewport on all screen sizes */
@media (min-aspect-ratio: 16/9) {
    .video-background {
        width: 100vw;
        height: 56.25vw; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-background {
        width: 177.78vh; /* 16:9 aspect ratio */
        height: 100vh;
    }
}

.home-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 20;
}

.slogan-container {
    text-align: center;
    max-width: 1500px;
}

.slogan-line {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.slogan-link-button {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #e0e0e0;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0.5;
}

.slogan-link-button:hover {
    color: #e0e0e0;
    opacity: 1;
    transform: translateX(4px);
}

.slogan-line:first-child {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-header {
        padding: 1.5rem 1.5rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .menu-text {
        font-size: 0.95rem;
    }
    
    .slogan-line {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .slogan-line:first-child {
        margin-bottom: 1rem;
    }
    
    .home-content {
        padding: 1.5rem;
    }
    
    .menu-dropdown {
        min-width: 140px;
    }
}

/* Mobile menu - make dropdown work on touch */
@media (max-width: 768px) {
    .menu-wrapper {
        position: relative;
    }
    
    .menu-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background-color: transparent;
        padding: 0.5rem 0;
        min-width: 140px;
    }
    
    .menu-item {
        padding: 0.75rem 1.5rem;
        text-align: left;
    }
    
    /* Make menu clickable on mobile */
    .menu-wrapper:active .menu-dropdown,
    .menu-wrapper:focus-within .menu-dropdown,
    .menu-dropdown.menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.description-section {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 20;
    background-color: #1a1a1a;
    background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 0) 0%,
        rgba(26, 26, 26, 0.3) 20%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 1) 100%);
}

@media (max-width: 768px) {
    .description-section {
        padding: 6rem 1.5rem 3rem;
    }
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
}

.description-content {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
}

.description-content2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-left: 12rem;
    margin-right: 12rem;
    margin-top: 4rem;
}

@media (max-width: 968px) {
    .description-content2 {
        margin-left: 0;
        margin-right: 0;
        gap: 2rem;
        margin-top: 2rem;
    }
}

.description-intro {
    position: sticky;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image-placeholder-home {
    width: 275px;
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin: 0 0 1rem 1.5rem;
}

@media (max-width: 768px) {
    .intro-image-placeholder-home {
        width: 100%;
        max-width: 275px;
        height: auto;
        aspect-ratio: 275 / 350;
        float: none;
        margin: 1rem auto;
        display: block;
    }
}

.intro-image-placeholder-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.intro-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-greeting {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #e0e0e0;
    text-transform: lowercase;
}

.intro-heading-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.intro-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .intro-text-content {
        padding-top: 1.5rem;
    }
}

.detail-section-content-home {
    padding-top: 1rem;
}

.intro-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.intro-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #e0e0e0;
    margin: 0;
    flex: 1;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.intro-text:last-of-type {
    margin-bottom: -1rem;
}

.description-details {
    display: flex;
    flex-direction: column;
}

.detail-section {
    margin-bottom: 0rem;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.highlight {
    color: #e0e0e0;
    font-weight: 500;
}

.detail-list {
    list-style: none;
    padding-left: 0;
}

.detail-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
}

.career-item {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.career-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.career-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .description-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .description-intro {
        position: static;
        order: 2; /* Images appear second on mobile */
    }
    
    .description-details {
        order: 1; /* Text appears first on mobile */
    }
}

.page-content {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.page-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-title a:hover {
    opacity: 0.7;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
}

.page-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Blog Post Layout */
.blog-post-content {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 20;
}

.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: start;
}

.blog-post-meta {
    position: sticky;
    top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #e0e0e0;
}

.meta-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-post-categories,
.blog-post-tags {
    display: flex;
    flex-direction: column;
}

.category-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #b0b0b0;
    display: inline-block;
}

.tags-list {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.6;
}

.blog-back-button {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    color: #e0e0e0;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-back-button:hover {
    color: #b0b0b0;
    transform: translateX(-4px);
}

.blog-post-article {
    max-width: 700px;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: .7;
}

.blog-post-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.8;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body em {
    font-style: italic;
    color: #d0d0d0;
}

.blog-post-body strong {
    font-weight: 600;
    color: #e0e0e0;
}

/* Blog Index */
.blog-index {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-post-preview {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

.blog-post-preview:last-child {
    border-bottom: none;
}

.blog-preview-meta {
    display: flex;
    gap: .5rem;
    padding-bottom: 2rem;
    flex-direction: column;

}

.blog-preview-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #e0e0e0;
}

.blog-preview-categories,
.blog-preview-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-preview-content {
    max-width: 700px;
    margin-left: 7rem;
}

@media (max-width: 968px) {
    .blog-preview-content {
        margin-left: 0;
    }
}

.blog-preview-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-preview-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-title a:hover {
    color: #fff;
}

.blog-preview-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #fff;
}

.blog-empty {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    text-align: center;
    padding: 4rem 0;
}

.blog-index-content {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 20;
}

.blog-index-container {
    max-width: 1400px;
    margin: 0 auto;
}

.art-gallery-section {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 20;
    background-color: #1a1a1a;
    background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 0) 0%,
        rgba(26, 26, 26, 0.3) 20%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 1) 100%);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.art-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-rows: auto;
}

.gallery-item {
    position: relative;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: none;
    box-shadow: none;
    background: transparent;
}

.gallery-item.instagram-embed,
.gallery-item.youtube-embed {
    min-height: 400px;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 0.5rem;
}

.gallery-item blockquote {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .art-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 1rem 1.5rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .menu-text {
        font-size: 0.9rem;
    }
    
    .description-section {
        padding: 5rem 1.5rem 2rem;
    }
    
    .description-content {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .description-details {
        gap: 3rem;
    }
    
    .page-content {
        padding: 5rem 1.5rem 2rem;
    }
    
    .blog-post-layout,
    .blog-post-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-meta,
    .blog-preview-meta {
        position: static;
    }
    
    .blog-post-content {
        padding: 5rem 1.5rem 2rem;
    }
    
    .blog-index-content {
        padding: 5rem 1.5rem 2rem;
    }
    
    .art-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .art-gallery-section {
        padding: 5rem 1.5rem 2rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .intro-heading {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .slogan-link-button {
        font-size: 1rem;
    }
    
    .intro-image-placeholder-home {
        max-width: 100%;
        margin: 1rem 0;
    }
}

