/* Custom Brown/Earth Tone Theme */
:root {
    --bg-primary: #25231c;
    /* Dark brown/black background */
    --bg-secondary: #2f2a24;
    /* Slightly lighter brown */
    --bg-tertiary: #3a3329;
    /* Medium brown */
    --text-primary: #e1ce96;
    /* Light cream text */
    --text-secondary: #c4b08a;
    /* Muted cream */
    --text-muted: #a8997a;
    /* More muted cream */
    --accent-light: #ad814d;
    /* Golden brown accent */
    --accent-medium: #8b4d42;
    /* Reddish brown accent */
    --accent-dark: #6a3d35;
    /* Darker reddish brown */
    --border-color: #5a4a3a;
    /* Brown border */
    --shadow-color: rgba(37, 35, 28, 0.5);
    /* Brown-tinted shadow */
    --transition-speed: 0.6s;
    --animation-delay: 0.2s;
    /* Unique Design Variables */
    --glow-color: rgba(173, 129, 77, 0.3);
    /* Golden glow */
    --pattern-opacity: 0.03;
    --border-glow: 0 0 20px rgba(173, 129, 77, 0.2);
    /* Golden border glow */
}

/* Unique Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(173, 129, 77, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 77, 66, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(225, 206, 150, 0.04) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px, 200px 200px;
    background-position: 0% 0%, 100% 100%, 50% 50%;
    animation: patternShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes patternShift {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: var(--pattern-opacity);
    }

    50% {
        background-position: 100% 100%, 0% 0%, 75% 25%;
        opacity: calc(var(--pattern-opacity) * 1.5);
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    cursor: none;
}

a::hover {
    cursor: none;
}

button::hover {
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    border-color: var(--accent-medium);
    background-color: rgba(173, 129, 77, 0.1);
}

.cursor.click {
    width: 30px;
    height: 30px;
    background-color: var(--accent-light);
    border-color: var(--text-primary);
}

/* Presentation Container */
.presentation-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Unique Floating Geometric Elements */
.presentation-container::before,
.presentation-container::after {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
}

.presentation-container::before {
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-light), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float1 15s ease-in-out infinite;
}

.presentation-container::after {
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(-45deg, var(--accent-medium), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float2 20s ease-in-out infinite reverse;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(10px) rotate(180deg);
    }

    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateX(25px) rotate(120deg);
    }

    66% {
        transform: translateX(-15px) rotate(240deg);
    }
}

/* Slide Management - Critical for visibility */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity var(--transition-speed) ease-in-out,
        visibility var(--transition-speed) ease-in-out,
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem 6rem 2rem;
    /* Increased bottom padding */
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transform: translateY(0) scale(1);
}

.slide:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 1 !important;
    transform: translateY(50px) scale(0.95);
}

/* Title Slide */
.title-slide {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.title-slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(173, 129, 77, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px var(--shadow-color);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes titleUnderline {

    0%,
    100% {
        width: 0%;
        left: 50%;
    }

    50% {
        width: 100%;
        left: 0%;
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInText 2s ease-out 1s forwards;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

.title-decoration {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-medium), var(--accent-light));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 206, 150, 0.8), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Content Slides */
.content-slide {
    max-width: 1000px;
    width: 100%;
    animation: slideIn 0.8s ease-out;
    position: relative;
}

.content-slide::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg,
            rgba(173, 129, 77, 0.1),
            rgba(139, 77, 66, 0.05),
            rgba(173, 129, 77, 0.1));
    border-radius: 20px;
    z-index: -1;
    animation: contentGlow 6s ease-in-out infinite;
}

@keyframes contentGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.content-slide h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    letter-spacing: 1px;
}

.content-slide h2::before {
    content: '◆';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-light);
    font-size: 1.5rem;
    animation: diamondSpin 8s linear infinite;
}

.content-slide h2::after {
    content: '◆';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-light);
    font-size: 1.5rem;
    animation: diamondSpin 8s linear infinite reverse;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

.content-box {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--shadow-color),
        var(--border-glow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent-light),
            var(--accent-medium),
            var(--accent-light),
            transparent);
    animation: borderShimmer 4s ease-in-out infinite;
}

@keyframes borderShimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Story Text */
.story-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-marker {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-medium));
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-text {
    flex: 1;
    min-width: 300px;
}

.profile-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.profile-placeholder {
    flex-shrink: 0;
}

.placeholder-image {
    width: 200px;
    height: 200px;
    background-color: var(--bg-tertiary);
    border: 2px solid var(--accent-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Passions Grid */
.passions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.passion-item {
    background-color: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--shadow-color);
}

.passion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.passion-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.passion-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Drive Section */
.drive-section {
    max-width: 1200px;
    margin: 0 auto;
}

.drive-story-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.drive-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drive-quote {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.drive-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    position: relative;
}

.drive-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-medium);
    position: absolute;
    top: -15px;
    left: -20px;
    font-family: serif;
}

.drive-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-medium);
    position: absolute;
    bottom: -35px;
    right: -20px;
    font-family: serif;
}

.drive-quote cite {
    font-size: 0.9rem;
    color: var(--accent-light);
    font-weight: 500;
    display: block;
    margin-top: 0.75rem;
}

.drive-narrative p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    text-align: justify;
}

.drive-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.drive-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: transform 0.3s ease;
}

.drive-image-container:hover {
    transform: translateY(-5px);
}

.drive-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.drive-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px solid var(--accent-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--text-secondary);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(37, 35, 28, 0.9);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Responsive Design for Drive Section */
@media (max-width: 1024px) {
    .drive-story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .drive-images {
        flex-direction: row;
        gap: 1.5rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .drive-image-container,
    .drive-image-placeholder {
        height: 180px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .drive-story-layout {
        gap: 1.5rem;
    }

    .drive-quote {
        padding: 1.25rem;
    }

    .drive-quote blockquote {
        font-size: 1.1rem;
    }

    .drive-quote blockquote::before,
    .drive-quote blockquote::after {
        font-size: 2.5rem;
        top: -12px;
        left: -15px;
        bottom: -28px;
        right: -15px;
    }

    .drive-narrative p {
        font-size: 0.95rem;
    }

    .drive-images {
        flex-direction: column;
        gap: 1.5rem;
    }

    .drive-image-container,
    .drive-image-placeholder {
        height: 160px;
    }
}

/* Projects */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-item {
    background-color: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.project-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--accent-dark);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-medium);
}

/* Plans */
.plan-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

/* Accordion Styles */
.accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px var(--shadow-color);
}

.accordion-header {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    cursor: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.accordion-header:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.accordion-header:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

.accordion-title {
    flex-grow: 1;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--accent-medium);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.accordion-content p {
    margin: 0;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s, padding 0.3s ease 0.1s;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-content p {
    padding: 1.5rem;
    opacity: 1;
}

.vision-quote {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.vision-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
}

/* Gallery */
.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.gallery-item.active {
    display: block;
}

.gallery-item img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-color);
    margin-bottom: 1rem;
}

.gallery-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-tertiary);
    border: 2px solid var(--accent-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gallery-caption {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.gallery-controls::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
    animation: controlLine 3s ease-in-out infinite;
}

@keyframes controlLine {

    0%,
    100% {
        width: 0px;
    }

    50% {
        width: 60px;
    }
}

.gallery-btn {
    background-color: var(--accent-dark);
    color: var(--text-primary);
    border: 1px solid var(--accent-medium);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(225, 206, 150, 0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.gallery-btn:hover::before {
    width: 100px;
    height: 100px;
}

.gallery-btn:hover {
    background-color: var(--accent-medium);
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 77, 66, 0.4);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid transparent;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.dot:hover::before {
    width: 20px;
    height: 20px;
}

.dot.active {
    background-color: var(--accent-light);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(139, 77, 66, 0.6);
}

/* Project Showcase Gallery */
.project-showcase {
    background-color: var(--bg-tertiary);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px var(--shadow-color);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    animation: slideInUp 0.6s ease-out;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-medium));
    border-radius: 2px;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-showcase .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.project-showcase .tag {
    background-color: var(--accent-dark);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-medium);
    transition: all 0.3s ease;
}

.project-showcase .tag:hover {
    background-color: var(--accent-medium);
    transform: translateY(-2px);
}

.project-highlight {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-light);
    background-color: var(--bg-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid var(--accent-medium);
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 4px 16px var(--shadow-color);
}

/* Navigation Controls */
.nav-controls {
    position: fixed;
    bottom: 3rem;
    /* Increased from 2rem */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--bg-secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px var(--shadow-color),
        var(--border-glow);
    border: 1px solid var(--border-color);
    z-index: 100;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-controls::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(173, 129, 77, 0.1),
            transparent);
    animation: navSweep 5s ease-in-out infinite;
}

.text-shadow-drop-center {
    -webkit-animation: text-shadow-drop-center .6s both;
    animation: text-shadow-drop-center .6s both
}

/* ----------------------------------------------
 * Generated by Animista on 2025-12-4 9:55:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes text-shadow-drop-center {
    0% {
        text-shadow: 0 0 0 transparent
    }

    100% {
        text-shadow: 0 0 18px rgba(37, 35, 28, .35)
    }
}

@keyframes text-shadow-drop-center {
    0% {
        text-shadow: 0 0 0 transparent
    }

    100% {
        text-shadow: 0 0 18px rgba(37, 35, 28, .35)
    }
}

@keyframes navSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.nav-btn {
    background-color: var(--accent-dark);
    color: var(--text-primary);
    border: 1px solid var(--accent-medium);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(225, 206, 150, 0.2) 0%, transparent 70%);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.nav-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-btn:hover {
    background-color: var(--accent-medium);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 77, 66, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: none;
    transform: none;
    box-shadow: none;
}

.slide-indicator {
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 60px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    position: relative;
}

.slide-indicator::before {
    content: '[';
    color: var(--accent-light);
    margin-right: 2px;
}

.slide-indicator::after {
    content: ']';
    color: var(--accent-light);
    margin-left: 2px;
}

/* Unique Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(26, 26, 26, 0.8);
    z-index: 200;
    backdrop-filter: blur(5px);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg,
            var(--accent-medium),
            var(--accent-light),
            var(--accent-medium));
    width: 0%;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(225, 206, 150, 0.6),
            transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes elasticIn {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(-180deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 25%;
        transform: rotate(90deg);
    }

    50% {
        border-radius: 0%;
        transform: rotate(180deg);
    }

    75% {
        border-radius: 25%;
        transform: rotate(270deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .content-slide h2 {
        font-size: 2rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .passions-grid {
        grid-template-columns: 1fr;
    }

    .nav-controls {
        bottom: 2rem;
        /* Increased from 1rem for tablet */
        padding: 0.75rem 1.5rem;
        gap: 1rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-controls {
        gap: 0.5rem;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .content-slide h2 {
        font-size: 1.5rem;
    }

    .content-box {
        padding: 1rem;
    }

    .story-text,
    .profile-text p {
        font-size: 1rem;
    }

    .nav-controls {
        padding: 0.5rem 1rem;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .content-slide h2 {
        font-size: 1.5rem;
    }

    .content-box {
        padding: 1rem;
    }

    .story-text,
    .profile-text p {
        font-size: 1rem;
    }

    .nav-controls {
        bottom: 1.5rem;
        /* Increased from default for mobile */
        padding: 0.5rem 1rem;
    }

    .slide-indicator {
        font-size: 0.9rem;
    }

    .project-showcase {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-description {
        font-size: 1rem;
    }

    .project-highlight {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Thank You Slide */
.thank-you-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    position: relative;
}

.thank-you-content {
    max-width: 800px;
    padding: 2rem;
}

.thank-you-title {
    font-size: 6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 8px var(--shadow-color);
    animation: thankYouGlow 3s ease-in-out infinite alternate;
}

.thank-you-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-light);
    margin: 0;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes thankYouGlow {
    from {
        text-shadow: 0 4px 8px var(--shadow-color);
    }

    to {
        text-shadow: 0 4px 8px var(--shadow-color),
            0 0 20px rgba(173, 129, 77, 0.3),
            0 0 40px rgba(173, 129, 77, 0.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Thank You Slide */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 4rem;
    }

    .thank-you-subtitle {
        font-size: 2rem;
    }

    .thank-you-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 3rem;
    }

    .thank-you-subtitle {
        font-size: 1.5rem;
    }
}