/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F1E7E7; /* Light pink background from your palette */
    color: #333;
    line-height: 1.6;
}

/* Navigation Styles */
nav {
    width: 100%;
    height: 80px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #E69DB8; /* Using your pink accent color */
}

.logo {
    font-family: 'Lobster', cursive;
    font-size: 50px;
    font-weight: 800;
    color: #E69DB8; /* Updated logo color to your pink */
    float: left;
    line-height: 80px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu {
    float: right;
    display: block; /* Hide menu by default */
}

.menu.active {
    display: none; /* Show menu when active */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 13px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #E69DB8; /* Updated hover color */
    background-color: #FFFECE; /* Light yellow background on hover */
    transform: translateY(-2px);
}

/* Video Intro Section */
.video-intro {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-bottom: 5px solid #FFD0C7; /* Using your peach color */
}

.video-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #333;
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 254, 206, 0.7); /* Semi-transparent yellow */
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.intro-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #E69DB8; /* Pink for heading */
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.intro-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.audio-controls {
    margin-top: 20px;
}

#audioToggle {
    background: #FFD0C7; /* Peach color for button */
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#audioToggle:hover {
    background: #E69DB8; /* Pink on hover */
    transform: scale(1.1);
    color: #fff;
}

/* Section Animations */
.section-container {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    background-color: #fff;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #E69DB8; /* Pink accent border */
    max-width: 1200px;
}

.section-container.active {
    opacity: 1;
    transform: translateY(0);
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 30px;
}

.flex-container.reverse {
    flex-direction: row-reverse;
}

.kolom {
    flex: 1;
}

.kolom img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    border: 3px solid #FFD0C7; /* Peach border for images */
}

.kolom img:hover {
    transform: scale(1.03);
    border-color: #E69DB8; /* Pink border on hover */
}

/* Profession Animation */
.profession-container {
    min-height: 50px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    background-color: #FFFECE; /* Yellow background */
    padding: 10px 15px;
    border-radius: 8px;
}

.profession {
    color: #E69DB8; /* Pink text */
    font-weight: 700;
    position: relative;
    font-size: 1.2em;
    margin-left: 5px;
    display: inline-block;
}

.profession::after {
    content: "|";
    position: absolute;
    right: -8px;
    animation: blink 0.7s infinite;
    color: #E69DB8; /* Pink cursor */
}

.profession-typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 1.5s steps(30, end);
}

/* Typography */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #E69DB8; /* Pink headings */
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #E69DB8, #FFD0C7); /* Gradient underline */
}

.deskripsi {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    background-color: #FFFECE; /* Yellow background */
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Buttons */
.tbl-biru, .tbl-pink {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.tbl-biru {
    background: #FFD0C7; /* Peach color */
    color: #333;
    border: 2px solid #FFD0C7;
}

.tbl-pink {
    background: #E69DB8; /* Pink */
    color: #fff;
    border: 2px solid #E69DB8;
}

.tbl-biru:hover, .tbl-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tbl-biru:hover {
    background: transparent;
    color: #FFD0C7;
    border-color: #FFD0C7;
}

.tbl-pink:hover {
    background: transparent;
    color: #E69DB8;
    border-color: #E69DB8;
}

/* Contact Section */
#contact {
    background: #FFFECE; /* Yellow background */
    padding: 70px 0;
    border-top: 5px solid #FFD0C7; /* Peach border */
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    text-align: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #E69DB8; /* Pink accent */
}

.footer-section h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    color: #E69DB8; /* Pink */
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: #555;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E69DB8; /* Pink on hover */
    text-decoration: underline;
}

/* Copyright */
#copyright {
    text-align: center;
    padding: 30px 0;
    background: #F1E7E7; /* Light pink */
    margin-top: 0;
    border-top: 1px solid #FFD0C7; /* Peach border */
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    0%, 100% { opacity: 1 }
    50% { opacity: 0 }
}

@keyframes moveText {
    0% { transform: translateX(0) }
    50% { transform: translateX(30px) }
    100% { transform: translateX(0) }
}

.moving-text {
    display: inline-block;
    animation: moveText 4s ease-in-out infinite;
}

/* Skills Section */
.skills-section {
    margin: 2rem 0;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.skills-section h3 {
    font-family: 'Oswald', sans-serif;
    color: #E69DB8; /* Pink */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    border-bottom: 2px dashed #FFD0C7; /* Peach dashed border */
    padding-bottom: 10px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1rem;
}

.skill-item {
    background: white;
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #F1E7E7; /* Light pink border */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.skill-item i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #E69DB8; /* Pink */
    transition: transform 0.3s;
}

.skill-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Hover Effects */
.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #E69DB8; /* Pink border */
    background-color: #FFFECE; /* Yellow background */
}

.skill-item:hover i {
    transform: scale(1.1);
    color: #E69DB8;
}

/* Tooltip */
.skill-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #E69DB8; /* Pink */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    width: max-content;
    max-width: 120px;
}

.skill-item:hover::after {
    opacity: 1;
}

/* Click Animation */
.skill-item:active {
    transform: translateY(-2px);
}

/* Categories Section Styling */
.section-container {
    padding: 2rem;
    background: linear-gradient(135deg, #F1E7E7 0%, #FFD0C7 100%); /* Gradient with your colors */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1200px;
}

.format-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E69DB8; /* Pink border */
    display: inline-block;
}

.format-section h3 i {
    margin-right: 10px;
    color: #E69DB8; /* Pink */
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 25px;
    margin-top: 20px;
}

.format-card {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E69DB8, #FFD0C7); /* Gradient with your colors */
    transition: height 0.3s ease;
}

.format-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    background-color: #FFFECE; /* Yellow background on hover */
}

.format-card:hover::before {
    height: 6px;
}

.format-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E69DB8, #FFD0C7); /* Gradient with your colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.format-card:hover i {
    transform: scale(1.2);
}

.format-card span {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.format-card small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.format-card video,
.format-card audio,
.format-card img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #F1E7E7; /* Light pink border */
}

.format-card:hover video,
.format-card:hover img {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #E69DB8; /* Pink border on hover */
}

.format-card audio {
    background: #F1E7E7; /* Light pink */
    border-radius: 30px;
    padding: 5px;
}

/* Different colors for different categories */
.format-section:nth-child(odd) .format-card::before {
    background: linear-gradient(90deg, #E69DB8, #FFD0C7); /* Pink to peach */
}

.format-section:nth-child(even) .format-card::before {
    background: linear-gradient(90deg, #FFD0C7, #FFFECE); /* Peach to yellow */
}

.format-section:nth-child(3n) .format-card::before {
    background: linear-gradient(90deg, #FFFECE, #F1E7E7); /* Yellow to light pink */
}

/* Menu toggle styles - update to show on all screen sizes */
.menu-toggle {
    display: block; /* Always show menu toggle */
    float: right;
    line-height: 80px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: #E69DB8; /* Pink */
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Quote styling */
.quote-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: italic;
    font-size: 18px;
    font-family: 'Merriweather', serif;
    margin: 20px 0;
    padding: 15px;
    background-color: #FFFECE; /* Yellow background */
    border-left: 5px solid #E69DB8; /* Pink border */
    border-radius: 0 10px 10px 0;
}

.quote-author {
    font-family: 'Lora', serif;
    margin-left: 20px;
    white-space: nowrap;
    color: #E69DB8; /* Pink */
    font-weight: bold;
}

/* Laporan card styling */
.laporan-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #F1E7E7; /* Light pink border */
}

.laporan-card:hover {
    transform: translateY(-5px);
    border-color: #E69DB8; /* Pink border on hover */
}

.laporan-header {
    background-color: #E69DB8; /* Pink */
    color: white;
    padding: 15px;
}

.laporan-header h4 {
    margin: 0;
    font-size: 1.2em;
}

.laporan-body {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.laporan-body p {
    margin-bottom: 20px;
    color: #555;
}

/* Download button styling */
.download-section {
    margin-top: 10px;
    text-align: center;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E69DB8; /* Pink */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #E69DB8;
}

.download-btn:hover {
    background-color: transparent;
    color: #E69DB8;
}

.download-btn i {
    margin-right: 5px;
}

/* Font display styling */
.font-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.font-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #FFD0C7; /* Peach border */
}

.font-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-top-color: #E69DB8; /* Pink border on hover */
}

.font-card h4 {
    margin-top: 0;
    color: #E69DB8; /* Pink */
    border-bottom: 1px solid #F1E7E7; /* Light pink */
    padding-bottom: 10px;
}

.font-sample {
    font-size: 16px;
    line-height: 1.6;
    overflow: hidden;
    word-wrap: break-word;
    padding: 15px;
    background: #F1E7E7; /* Light pink */
    border-radius: 6px;
    min-height: 120px;
    margin: 15px 0;
    border-left: 3px solid #FFD0C7; /* Peach border */
}

.font-desc {
    margin-top: 15px;
    padding: 10px;
    background: #FFFECE; /* Yellow */
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.font-desc p {
    margin: 5px 0;
}

.font-desc strong {
    color: #E69DB8; /* Pink */
}

/* Profession container fix */
.profession-container {
    display: flex;
    align-items: center;
    min-height: 50px;
    margin: 20px 0;
    background-color: #FFFECE; /* Yellow background */
    padding: 10px 15px;
    border-radius: 8px;
}

.profession-container p {
    margin: 0;
    display: flex;
    align-items: center;
}

.profession {
    margin-left: 5px;
    color: #E69DB8; /* Pink */
}

/* Animation for section entrance */
.animate_animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate_lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
}

@keyframes lightSpeedInLeft {
    from {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(5deg);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .intro-text h1 {
        font-size: 1.5rem;
    }
    
    .section-container {
        padding: 30px 15px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .font-grid {
        grid-template-columns: 1fr;
    }
    
    .format-grid {
        grid-template-columns: 1fr;
    }
}
/* Navigation Styles */
nav {
    width: 100%;
    height: 80px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #E69DB8; /* Using pink accent color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-family: 'Lobster', cursive;
    font-size: 50px;
    font-weight: 800;
    color: #E69DB8; /* Updated logo color to pink */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 13px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #E69DB8; /* Updated hover color */
    background-color: #FFFECE; /* Light yellow background on hover */
    transform: translateY(-2px);
}

/* Menu toggle styles - hidden on desktop */
.menu-toggle {
    display: none; /* Hide on desktop */
    cursor: pointer;
    font-size: 24px;
    color: #E69DB8; /* Pink */
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Responsive menu for tablets and mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }
    
    .menu {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background-color: rgba(255, 254, 206, 0.95); /* Semi-transparent yellow */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        display: none;
        padding: 10px 0;
    }
    
    .menu.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 10px;
    }
    
    /* Format grid adjustments for mobile */
    .format-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 15px;
    }
}

/* Further adjustments for smaller mobile screens */
@media (max-width: 576px) {
    .logo {
        font-size: 30px; /* Smaller logo on mobile */
    }
    
    .format-grid {
        grid-template-columns: 1fr; /* 1 column on small mobile */
    }
    
    .flex-container, 
    .flex-container.reverse {
        flex-direction: column;
    }
    
    .kolom {
        width: 100%;
        text-align: center;
    }
    
    .section-container {
        padding: 30px 15px;
    }
    
    .font-grid {
        grid-template-columns: 1fr;
    }
}
/* Mobile-First Adjustments */
@media (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Navigation */
    nav {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo {
        font-size: 28px;
        line-height: 60px;
    }
    
    .menu-toggle {
        display: block;
        line-height: 60px;
        font-size: 20px;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background: #fff;
        transition: all 0.5s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .menu.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    /* Video Intro Section */
    .video-intro {
        height: 60vh;
    }
    
    .intro-text {
        width: 90%;
        padding: 15px;
    }
    
    .intro-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .intro-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Flex containers */
    .flex-container, 
    .flex-container.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .kolom {
        width: 100%;
        text-align: center;
    }
    
    /* Section containers */
    .section-container {
        padding: 40px 15px;
        margin: 20px auto;
        width: 95%;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .deskripsi {
        font-size: 1.1rem;
    }
    
    /* Profession animation */
    .profession-container {
        justify-content: center;
    }
    
    /* Skills grid */
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Format grid */
    .format-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        flex-direction: column;
    }
    
    .footer-section {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    /* Font grid */
    .font-grid {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    .tbl-biru, 
    .tbl-pink {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Quote container */
    .quote-container {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-author {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 992px) {
    /* Navigation */
    .logo {
        font-size: 36px;
    }
    
    /* Video Intro */
    .intro-text h1 {
        font-size: 2rem;
    }
    
    /* Flex containers */
    .flex-container, 
    .flex-container.reverse {
        gap: 30px;
        padding: 0 20px;
    }
    
    /* Format grid */
    .format-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Skills grid */
    .skills-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    /* Navigation */
    .logo {
        font-size: 24px;
    }
    
    /* Video Intro */
    .video-intro {
        height: 50vh;
    }
    
    .intro-text h1 {
        font-size: 1.5rem;
    }
    
    /* Skills grid */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Profession animation */
    .profession {
        font-size: 1rem;
    }
    
    /* Section containers */
    .section-container {
        padding: 30px 10px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
/* Mobile Responsive Adjustments for Page Pia */
@media (max-width: 768px) {
    /* Header section */
    #page-header {
        padding: 15px;
        text-align: center;
    }
    
    #page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    /* About section */
    .about-section {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .about-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Categories section */
    .categories-section {
        padding: 15px;
    }
    
    .category-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .category-item {
        background: #FFFECE;
        padding: 12px;
        border-radius: 8px;
        border-left: 4px solid #E69DB8;
    }
    
    /* Format details */
    .format-details {
        padding: 15px;
        margin-top: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .format-details h3 {
        font-size: 1.2rem;
        color: #E69DB8;
        margin-bottom: 8px;
    }
    
    .format-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Weather widget */
    .weather-widget {
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 992px) {
    .about-links {
        gap: 20px;
    }
    
    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Navigation Styles */
nav {
    width: 100%;
    height: 80px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #E69DB8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    font-family: 'Lobster', cursive;
    font-size: 50px;
    font-weight: 800;
    color: #E69DB8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Desktop Menu Styles */
.menu {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 13px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #E69DB8;
    background-color: #FFFECE;
    transform: translateY(-2px);
}

/* Hamburger Menu Styles (Hidden on Desktop) */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #E69DB8;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    /* Hamburger Menu Visible */
    .menu-toggle {
        display: block;
        order: 2; /* Letakkan di sebelah kanan */
    }
    
    /* Main Menu Hidden by Default */
    .menu {
        position: fixed;
        top: 80px;
        right:-100%; /* Mulai dari sebelah kanan */
        width: 300px;
        height: calc(100vh - 80px);
        background-color: rgba(255, 254, 206, 0.95);
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.5s ease;
        flex-direction: column;
        padding: 20px 0;
    }
    
    .menu.active {
        right:0; /* Slide in dari kanan */
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 20px;
        width: 100%;
    }
    
    nav ul li {
        margin: 15px 0;
        text-align: right; /* Teks menu rata kanan */
    }
    
    nav ul li a {
        display: block;
        padding: 10px 15px;
        text-align: right;
    }
}
nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end; /* Align items to the right */
}

/* Small Mobile Adjustments */
@media (max-width: 576px) {
    .logo {
        font-size: 30px;
    }
    
    .menu {
        width: 250px;
    }
}
/* Mobile Responsive Styles */
@media (max-width: 992px) {
    /* Hamburger Menu Visible */
    .menu-toggle {
        display: block;
        order: 2; /* Place on the right */
    } 
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #333;
}

.converter-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

input[type="file"] {
    margin: 10px 0;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#videoResult, #audioResult, #imageResult {
    margin-top: 15px;
    padding: 10px;
    border: 1px dashed #ccc;
    min-height: 50px;
}

.error {
    color: red;
}
