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

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a961;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f8f8;
    --bg-dark: #0a0a0a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ca414a;
    letter-spacing: 1px;
    font-family: 'Righteous', cursive;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ca414a;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/background-pattern.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.25);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ca414a, #a03339);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-family: 'Parisienne', cursive;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ca414a;
    animation: fadeInUp 1s ease 0.2s backwards;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s backwards;
    color: var(--secondary-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ca414a;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: #ca414a;
    color: white;
}

.btn-primary:hover {
    background: #a03339;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(202, 65, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid #ca414a;
}

.btn-secondary:hover {
    background: #ca414a;
    color: white;
    transform: translateY(-3px);
}

/* Badge Section */
.badge-section {
    width: 100%;
    background: #7e7e72;
    padding: 40px 20px;
    margin: 0;
    overflow: hidden;
}

.badge-container {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ca414a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 3rem auto;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.skill-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(202, 65, 74, 0.2);
    background: #ca414a;
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    opacity: 1;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.gallery-overlay .emoji {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ca414a;
}

.gallery-overlay .description {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
}

.gallery-overlay .photo-count {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

#viewMoreBtn {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.gallery-item.hidden {
    display: none;
}

/* Metrics Section */
.metrics {
    padding: 80px 20px;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(202, 65, 74, 0.2);
}

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

.metric-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ca414a;
    display: block;
    margin: 1rem 0;
}

.metric-card p {
    color: #666;
    line-height: 1.6;
}

.experience-section {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.experience-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.experience-item h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.experience-date {
    color: #ca414a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-item ul {
    margin-left: 1.5rem;
    color: #555;
}

.experience-item li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-title::after {
    background: #ca414a;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #ca414a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

.contact-item a:hover {
    color: #a03339;
}

.contact-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

.follower-count {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 70%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s;
    border-radius: 8px;
}

#lightbox-tiktok-container {
    margin: auto;
    display: block;
    max-width: 605px;
    min-height: 800px;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s;
}

.lightbox-info {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    max-width: 400px;
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(202, 65, 74, 0.2);
    animation: slideInRight 0.4s ease;
}

.lightbox-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lightbox-title {
    font-size: 1.8rem;
    color: #ca414a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lightbox-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lightbox-details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding-top: 1rem;
    border-top: 1px solid rgba(202, 65, 74, 0.3);
    margin-bottom: 1.5rem;
}

.related-photos {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(202, 65, 74, 0.3);
}

.related-title {
    font-size: 1.2rem;
    color: #ca414a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.related-grid::-webkit-scrollbar {
    width: 6px;
}

.related-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.related-grid::-webkit-scrollbar-thumb {
    background: #ca414a;
    border-radius: 10px;
}

.related-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.related-thumb:hover {
    border-color: #ca414a;
    transform: scale(1.05);
}

.related-thumb.active {
    border-color: #ca414a;
    box-shadow: 0 0 15px rgba(202, 65, 74, 0.5);
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes zoom {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--text-light);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover {
    color: #ca414a;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    z-index: 2001;
}

.next {
    right: 20px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    color: #ca414a;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .prev, .next {
        font-size: 20px;
        padding: 10px;
    }

    /* Lightbox mobile adjustments */
    .lightbox-content {
        max-width: 100%;
        max-height: 50vh;
        left: 50%;
        top: 20%;
        transform: translate(-50%, 0);
    }

    .lightbox-info {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        max-width: none;
        margin: 60vh auto 2rem;
    }
}

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

    .stat-number {
        font-size: 2rem;
    }

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