:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #f46c38;
    --secondary-bg: #151312;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Cursor */
.custom-cursor {
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.custom-cursor::before {
    content: '♪';
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.3s ease;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body {
        cursor: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2232%22 height=%2232%22%3E%3Ctext x=%2250%25%22 y=%2260%25%22 font-size=%2224%22 text-anchor=%22middle%22 fill=%22%23ffffff%22 font-family=%22Arial,sans-serif%22%3E%E2%99%AA%3C/text%3E%3C/svg%3E') 16 16, auto;
    }
    .custom-cursor, .custom-cursor-follower {
        display: block;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.04;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-2%, -2%); }
    40% { transform: translate(2%, 2%); }
    50% { transform: translate(-1%, 1%); }
    60% { transform: translate(1%, -1%); }
    70% { transform: translate(-2%, 1%); }
    80% { transform: translate(2%, -1%); }
    90% { transform: translate(-1%, -2%); }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

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

.container-narrow {
    max-width: 800px;
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-left {
    flex: 1;
}

/* Profile Card */
.profile-card {
    background: #fff;
    color: #000;
    border-radius: 40px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-image-container {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: -1px;
}

.profile-content {
    position: relative;
}

.profile-divider {
    position: absolute;
    left: -30px;
    top: 50px;
    width: 100px;
    height: 60px;
    border-bottom: 2px dashed #bb86fc;
    border-left: 2px dashed #bb86fc;
    border-bottom-left-radius: 30px;
    pointer-events: none;
}

.divider-icon {
    position: absolute;
    right: -15px;
    bottom: -15px;
    background: #bb86fc;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    padding-left: 40px; /* Space for the dashed line and icon */
    text-align: left;
}

.profile-mini-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.profile-mini-socials .social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(244, 108, 56, 0.08);
    color: #111;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.profile-mini-socials .social-link:hover {
    background: rgba(244, 108, 56, 0.2);
    transform: translateY(-1px);
}

.profile-mini-socials .social-link::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.profile-mini-socials .social-link-linkedin::before {
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22%235A9BD8%22%3E%3Cpath d=%22M4.98 3.5C4.98 4.6 4.06 5.5 2.96 5.5 1.84 5.5.94 4.6.94 3.5.94 2.4 1.84 1.5 2.96 1.5c1.1 0 2.02.9 2.02 2zm.02 4.5H1.94V22h3.06V8zm7.5 0h-2.92V22h3.06V14.1c0-5.4 6.92-5.8 6.92 0V22h3.06v-7.9c0-9.54-10.18-9.2-12.12-4.5V8z%22/%3E%3C/svg%3E');
}

.profile-mini-socials .social-link-instagram::before {
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22%23E1306C%22%3E%3Cpath d=%22M12 2.2c3.2 0 3.6.01 4.9.07 1.16.05 1.8.24 2.22.4.54.22.93.48 1.33.88.4.4.66.79.88 1.33.16.43.35 1.07.4 2.22.06 1.32.07 1.7.07 4.9s-.01 3.6-.07 4.9c-.05 1.16-.24 1.8-.4 2.22-.22.54-.48.93-.88 1.33-.4.4-.79.66-1.33.88-.43.16-1.07.35-2.22.4-1.32.06-1.7.07-4.9.07s-3.6-.01-4.9-.07c-1.16-.05-1.8-.24-2.22-.4-.54-.22-.93-.48-1.33-.88-.4-.4-.66-.79-.88-1.33-.16-.43-.35-1.07-.4-2.22C2.21 15.6 2.2 15.2 2.2 12s.01-3.6.07-4.9c.05-1.16.24-1.8.4-2.22.22-.54.48-.93.88-1.33.4-.4.79-.66 1.33-.88.43-.16 1.07-.35 2.22-.4C8.4 2.21 8.8 2.2 12 2.2zm0 1.8c-3.15 0-3.52.01-4.76.07-1.03.05-1.59.22-1.96.37-.48.2-.82.44-1.18.8-.36.36-.6.7-.8 1.18-.15.37-.32.93-.37 1.96C2.21 8.48 2.2 8.85 2.2 12c0 3.15.01 3.52.07 4.76.05 1.03.22 1.59.37 1.96.2.48.44.82.8 1.18.36.36.7.6 1.18.8.37.15.93.32 1.96.37 1.24.06 1.61.07 4.76.07s3.52-.01 4.76-.07c1.03-.05 1.59-.22 1.96-.37.48-.2.82-.44 1.18-.8.36-.36.6-.7.8-1.18.15-.37.32-.93.37-1.96.06-1.24.07-1.61.07-4.76s-.01-3.52-.07-4.76c-.05-1.03-.22-1.59-.37-1.96-.2-.48-.44-.82-.8-1.18-.36-.36-.7-.6-1.18-.8-.37-.15-.93-.32-1.96-.37C15.52 4.01 15.15 4 12 4zm0 3.1a4.9 4.9 0 1 1 0 9.8 4.9 4.9 0 0 1 0-9.8zm0 1.8a3.1 3.1 0 1 0 0 6.2 3.1 3.1 0 0 0 0-6.2zm5.3-.74a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2z%22/%3E%3C/svg%3E');
}

.profile-mini-socials .social-link-tiktok::before {
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22%23000000%22%3E%3Cpath d=%22M17.05 4.91c-.47-.21-1.22-.33-2.15-.33h-.58v7.13c0 .25.02.5.06.74.49.03.98-.02 1.48-.14 1.62-.36 2.91-1.64 3.51-3.14.18-.56.26-1.16.26-1.79V4.91h-.58zm-4.1-1.17H9.14V4.1c0 .51.11 1.01.32 1.47.37.87 1.06 1.59 1.93 1.99 1.15.53 2.45.44 3.47-.24v2.2c-1.26.88-2.8 1.15-4.24.75-1.17-.33-2.17-1.13-2.72-2.24-.2-.37-.33-.76-.39-1.18V4.91H6.69c-.26 0-.49.1-.67.28-.2.19-.31.45-.31.72v9.31c0 1.16.95 2.1 2.12 2.1 1.15 0 2.09-.94 2.09-2.1V11.5c.71.18 1.45.17 2.15-.02v4.82c0 2.97-2.41 5.38-5.38 5.38-2.97 0-5.38-2.41-5.38-5.38V5.91c0-2.97 2.41-5.38 5.38-5.38h2.82V3.74c.01.02.01.05.01.07 0 1.47 1.2 2.67 2.67 2.67h.01V3.74zm.45 14.66c.78-.02 1.4-.66 1.4-1.45s-.62-1.43-1.4-1.45c-.77.02-1.4.65-1.4 1.45s.63 1.43 1.4 1.45z%22/%3E%3C/svg%3E');
}

.profile-mini-socials .social-link-spotify::before {
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22%231DB954%22%3E%3Cpath d=%22M12 2.04c-5.45 0-9.88 4.43-9.88 9.88 0 5.45 4.43 9.88 9.88 9.88 5.45 0 9.88-4.43 9.88-9.88C21.88 6.47 17.45 2.04 12 2.04zm4.92 13.34c-.15.24-.44.33-.69.18-1.9-1.16-4.28-1.42-7.09-.76-.28.08-.58-.07-.67-.36-.08-.28.07-.58.36-.67 3.1-.77 5.65-.47 7.72.83.25.15.34.45.17.78zm1.01-2.39c-.18.29-.56.38-.85.2-2.18-1.3-5.51-1.67-8.11-.89-.33.1-.69-.09-.78-.42-.1-.33.09-.69.42-.78 2.93-.85 6.54-.44 8.99 1.04.28.17.37.56.33.85zm.19-2.5c-2.5-1.45-6.67-1.58-9.3-.84-.38.12-.78-.1-.9-.48-.12-.38.1-.78.48-.9 3.13-.96 7.95-.79 10.9.95.34.2.47.65.27.98-.2.33-.65.47-.95.29z%22/%3E%3C/svg%3E');
}

.hero-right {
    flex: 1.2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hero-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #bbb;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.achievements {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.achievement-item {
    display: flex;
    flex-direction: column;
}

.achievement-item .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.achievement-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Audio Control */
.audio-control {
    margin-bottom: 40px;
}

.audio-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.audio-btn:hover {
    background: rgba(244, 108, 56, 0.15);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.audio-btn.playing {
    background: var(--accent-color);
    color: #fff;
}

.audio-icon {
    font-size: 1.1rem;
}

/* Gallery Marquee */
.gallery-marquee {
    width: 100%;
    overflow: hidden;
    background: var(--bg-color);
    padding: 100px 0;
    position: relative;
    touch-action: pan-y;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 0 10px;
    cursor: grab;
}

.marquee-content.dragging {
    cursor: grabbing;
}

.marquee-content img {
    height: 400px;
    width: auto;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(40%);
}

.marquee-content img:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Blog Styles */
.blog-post-page {
    padding-top: 120px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
}

.blog-featured-image {
    margin-bottom: 80px;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.blog-content {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

.blog-content h2, .blog-content h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin: 40px 0 20px;
}

.blog-content p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 40px !important;
    line-height: 1.4;
}

.blog-content img, .blog-content figure {
    margin: 50px 0;
    width: 100%;
}

.blog-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.blog-image-grid .image-wrapper {
    margin: 0;
}

.caption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.blog-content figure img {
    border-radius: 8px;
    margin: 0;
}

.blog-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    border-left: 4px solid var(--accent-color);
    padding: 20px 40px;
    margin: 40px 0;
    background: rgba(244, 108, 56, 0.05);
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 50px 0;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-navigation {
    margin: 80px 0;
    text-align: center;
}

/* Quote Section */
.quote-section {
    padding: 150px 0;
    text-align: center;
    background-color: var(--secondary-bg);
}

.art-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.3;
}

.art-quote cite {
    display: block;
    font-size: 0.9rem;
    margin-top: 25px;
    font-family: var(--font-main);
    font-style: normal;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Art Vibes Section */
.art-vibes {
    padding: 150px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff;
}

.text-center {
    text-align: center;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.moment-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5;
    display: block;
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.moment-item:hover img {
    transform: scale(1.1);
}

.moment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.moment-item:hover .moment-overlay {
    opacity: 1;
}

.moment-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.2rem;
}

.art-image img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.art-image img:hover {
    filter: grayscale(0%);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: default;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-btn {
    background: none;
    border: none;
    color: white;
    font-size: 5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.3s, transform 0.2s;
}

.lightbox-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

#lightbox-caption {
    margin-top: 1.5rem;
    color: white;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 100px 0;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 20px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-quote {
        border-left: none;
        border-top: 3px solid var(--accent-color);
        padding-top: 20px;
        padding-left: 0;
    }

    .achievements {
        justify-content: center;
        gap: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .art-quote {
        font-size: 1.8rem;
    }
}
