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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f0e8;
    overflow-x: hidden;
    
    /* Tambahkan background image */
    background-image: url('images/hompage_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.nav-container {
    background-color: #b5d4e8;
    border-radius: 50px;
    padding: 15px 50px;
    display: flex;
    gap: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-container a:hover {
    font-weight: 700;
    color: #e74c3c;
    transform: scale(1.05);
}

.search-btn {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.search-btn:hover {
    background-color: #c0392b;
    transform: translateY(-50%) scale(1.1);
}

.search-btn::before {
    content: "🔍";
    font-size: 24px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    text-align: center;
}

.portfolio-title {
    margin-bottom: 30px;
}

.vania-text {
    font-family: 'Shrikhand', cursive;
    font-size: 65px;
    color: #e74c3c;
    font-style: italic;
    font-weight: 400;
    margin-top: 280px;
    margin-bottom: 5px;
    margin-left: -570px;
}

.portfolio-text {
    font-family: 'Shrikhand', cursive;
    font-size: 120px;
    color: #1a1a1a;
    line-height: 1;
    margin-top: -30px;
    margin-left: -250px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-text:hover {
    animation: wave 1s ease-in-out infinite;
    color: #ABCAD9;
    transform: scale(1.05);
}
@keyframes wave {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1.05);
    }
    25% {
        transform: translateY(-10px) rotate(1deg) scale(1.05);
    }
    50% {
        transform: translateY(0px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(10px) rotate(-1deg) scale(1.05);
    }

}
.year-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
     font-style: italic;
    color: #e74c3c;
    font-weight: 400;
    margin-top: -15px;
    margin-right: -150px;
}

.see-more-btn {
    background-color: #f4c542;
    color: #e74c3c;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: -15px;
    margin-right: -150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.3);
}

.see-more-btn:hover {
    background-color: white;
    color: #e74c3c;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        gap: 20px;
        padding: 12px 30px;
    }

    .nav-container a {
        font-size: 16px;
    }

    .search-btn {
        width: 50px;
        height: 50px;
        right: 30px;
    }

    .vania-text {
        font-size: 32px;
    }

    .portfolio-text {
        font-size: 80px;
    }

    .year-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 15px;
        padding: 10px 20px;
    }

    .nav-container a {
        font-size: 14px;
    }

    .vania-text {
        font-size: 24px;
    }

    .portfolio-text {
        font-size: 60px;
    }

    .year-text {
        font-size: 18px;
    }

    .see-more-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    }

/* ABOUT SECTION */
.about-section {
    min-height: 100vh;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
    
}

.about-container {
    width: 100%;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.flower-icon {
    font-size: 40px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #b5d4e8;
    margin-left: 435px;
    margin-bottom: -180px;

}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.photo-container {
    width: 100%;
}

.photo-box {
    width: 100%;
    height: 400px;
    background-color: #f4d88f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.profile-photo.loaded {
    display: block; /* Tampilkan saat foto ada */
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: px;
    justify-content: center;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* RESUME SECTION */
.resume-section {
    margin-top: 40px;
}

.resume-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    background-color: #b5d4e8;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background-color: #9ac2db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(181, 212, 232, 0.4);
}

.tab-btn.active {
    background-color: #7eb3d4;
    color: white;
    box-shadow: 0 5px 15px rgba(126, 179, 212, 0.4);
}

.tab-icon {
    font-size: 20px;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* EXPERIENCE CARDS */
.experience-card {
    background-color: #f4d88f;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(244, 216, 143, 0.4);
}

.experience-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.experience-card .company {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.experience-card .date {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* EXPERTISE */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tag {
    background-color: #f4d88f;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #e0c075;
    transform: scale(1.05);
}

.tools-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tools-icons {
    display: flex;
    gap: 15px;
}

.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.tool-icon.ai {
    background-color: #ff9a00;
}

.tool-icon.ps {
    background-color: #31a8ff;
}

.tool-icon.ae {
    background-color: #9999ff;
}

.tool-icon.id {
    background-color: #ff3366;
}

.tool-icon.pr {
    background-color: #9999ff;
}

/* EDUCATION CARDS */
.education-card {
    background-color: #f4d88f;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(244, 216, 143, 0.4);
}

.education-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.education-card .date {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Responsive About Section */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .photo-box {
        height: 350px;
    }

    .resume-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }

    .tab-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .tools-icons {
        flex-wrap: wrap;
    }

}
/* WORK SECTION */
.work-section {
    min-height: 100vh;
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(245, 240, 232, 0.8);
    border: 3px solid #e0d5c7;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.work-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-headline {
    font-family: 'Shrikhand', cursive;
    font-size: 72px;
    font-style: italic;
    color: #b5d4e8;
    margin-bottom: 15px;
    line-height: 1.2;
}

.work-subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #666;
    font-weight: 400;
}

.work-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.project-info {
    background-color: #f4d88f;
    padding: 60px;
    border-radius: 50px;
    height: fit-content;
}

.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    font-style: normal;
    color: #CE4538;
    line-height: 1.2;
    margin-bottom: 15px;
}

.project-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.project-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.project-tools {
    display: flex;
    gap: 15px;
}

.project-image {
    background-color: #f4d88f;
    border-radius: 50px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* CAROUSEL */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-text {
    font-family: 'Shrikhand', cursive;
    font-size: 80px;
    color: #b5d4e8;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
    z-index: 2;
}

.carousel-img.loaded + .carousel-text {
    display: none;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #b5d4e8;
    transform: scale(1.3);
}

.dot:hover {
    background-color: #9ac2db;
}

/* Responsive Work Section */
@media (max-width: 968px) {
    .project-card {
        grid-template-columns: 1fr;
    }

    .project-title {
        font-size: 38px;
    }

    .carousel-text {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 32px;
    }

    .project-info {
        padding: 30px;
    }

    .project-image {
        padding: 30px;
        min-height: 400px;
    }

    .carousel-text {
        font-size: 50px;
    }

    .carousel-images {
        height: 300px;
    }
}
.project-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #F4E4B5;
    border-radius: 24px;
    align-items: center;
    margin-bottom: 30px;
}

.project-info {
    flex: 1;
    padding-right: 20px;
}

.project-title {
    font-size: 48px;
    font-weight: 700;
    color: #C94444;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.project-year {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 20px 0;
}

.project-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0 0 24px 0;
}

.project-tools {
    display: flex;
    gap: 12px;
}

.tool-icon {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.tool-icon.ps {
    background-color: #31A8FF;
}

.tool-icon.ai {
    background-color: #FF9A00;
}

.tool-icon.id {
    background-color: #FF3366;
}

.project-image {
    flex: 1;
    max-width: 50%;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .project-image {
        max-width: 100%;
    }
    
    .project-info {
        padding-right: 0;
    }
}
.project-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #F4E4B5;
    border-radius: 24px;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-card:hover::before {
    opacity: 1;
}

.project-info {
    flex: 1;
    padding-right: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-info {
    transform: translateX(10px);
}

.project-title {
    font-size: 48px;
    font-weight: 700;
    color: #C94444;
    margin: 0 0 16px 0;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #A83333;
    letter-spacing: 1px;
}

.project-year {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-year {
    color: #1a252f;
}

.project-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0 0 24px 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-description {
    color: #2A2A2A;
    font-size: 16.5px;
}

.project-tools {
    display: flex;
    gap: 12px;
}

.tool-icon {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .tool-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tool-icon:nth-child(1) {
    transition-delay: 0.05s;
}

.tool-icon:nth-child(2) {
    transition-delay: 0.1s;
}

.tool-icon.ps {
    background-color: #31A8FF;
}

.tool-icon.ps:hover {
    background-color: #0d8adb;
}

.tool-icon.ai {
    background-color: #FF9A00;
}

.tool-icon.ai:hover {
    background-color: #e68600;
}

.tool-icon.id {
    background-color: #FF3366;
}

.tool-icon.id:hover {
    background-color: #e6004d;
}

.project-image {
    flex: 1;
    max-width: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.05) translateX(-10px);
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .project-card:hover {
        transform: scale(1.02);
    }
    
    .project-image {
        max-width: 100%;
    }
    
    .project-info {
        padding-right: 0;
    }
    
    .project-card:hover .project-info {
        transform: translateX(0);
    }
    
    .project-card:hover .project-image {
        transform: scale(1.03) translateX(0);
    }
}
/* CONTACT SECTION */
.contact-section {
    min-height: 80vh;
    padding: 100px 20px 60px;
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: 'Shrikhand', cursive;
    font-size: 64px;
    font-style: italic;
    color: #b5d4e8;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: #f4d88f;
    padding: 50px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-card .contact-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.email-card .contact-icon {
    background-color: #e74c3c;
    color: white;
}

.linkedin-card .contact-icon {
    background-color: #0077b5;
    color: white;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.contact-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0d5c7;
}

.contact-footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #999;
}
