<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styling */
/* Add to your existing style.css */

/* ... (kode CSS yang sudah ada sebelumnya) ... */

/* Search Bar Styling */
.search-bar {
    display: flex;
    align-items: center;
    background-color: #3a3a3a; /* Darker background for search bar */
    border-radius: 25px;
    padding: 5px 15px;
    flex-grow: 1; /* Allows search bar to take up available space */
    max-width: 400px; /* Max width for larger screens */
    margin: 0 20px; /* Space from logo and nav */
}

.search-bar input[type="text"] {
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 1em;
    color: #fff;
    width: 100%;
    outline: none; /* Remove outline on focus */
}

.search-bar input[type="text"]::placeholder {
    color: #bbb;
}

.search-bar button {
    background: transparent;
    border: none;
    color: #007bff; /* Button color for search icon */
    cursor: pointer;
    font-size: 1.2em;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.search-bar button:hover {
    color: #fff; /* White on hover */
}

/* Responsive Design (Mobile Version) */
@media (max-width: 768px) {
    /* ... (kode CSS responsive yang sudah ada sebelumnya) ... */

    .header .container {
        flex-wrap: wrap; /* Allow items to wrap to next line */
        justify-content: center; /* Center items when wrapped */
    }

    .logo {
        width: 100%; /* Logo takes full width on small screens */
        text-align: center;
        margin-bottom: 15px; /* Space below logo */
    }

    .search-bar {
        width: calc(100% - 40px); /* Full width minus padding on small screens */
        max-width: 90%; /* Ensure it doesn't get too wide */
        margin: 10px auto 20px auto; /* Center it with top/bottom margin */
        order: 3; /* Order it below logo and hamburger menu */
    }

    .main-nav {
        top: 130px; /* Adjust top position as search bar is now above */
    }

    .hamburger-menu {
        position: absolute; /* Position hamburger menu */
        top: 25px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    /* ... (kode CSS responsive yang sudah ada sebelumnya) ... */

    .search-bar {
        padding: 3px 10px; /* Slightly smaller padding */
    }

    .search-bar input[type="text"] {
        padding: 6px 8px; /* Slightly smaller padding */
        font-size: 0.9em;
    }

    .search-bar button {
        font-size: 1em;
    }
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-small {
    display: inline-block;
    background-color: #6c757d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #5a6268;
}

/* Header */
.header {
    background-color: #222;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: #fff;
    font-size: 2.2em;
    font-weight: 900;
    letter-spacing: 1px;
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 30px;
    position: relative; /* For dropdown */
}

.main-nav .nav-list a {
    color: #f8f8f8;
    font-weight: bold;
    font-size: 1.05em;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: #007bff;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    left: 0; /* Align with parent menu item */
    top: 100%; /* Position below parent menu item */
}

.dropdown-content a {
    color: #f8f8f8;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #007bff;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn .fas {
    margin-left: 5px;
    font-size: 0.8em;
}

.hamburger-menu {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://24wallpapers.com/assets/home.jpeg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styling */
section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px; /* Space between sections */
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

section:nth-of-type(even) {
    background-color: #f9f9f9;
}

section h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #ff0033;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: #007bff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

/* About Section */
.about-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
}

/* Category Overview Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.category-item img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Crop image to fit */
    border-radius: 8px;
    margin-bottom: 15px;
}

.category-item h3 {
    font-size: 1.6em;
    margin-bottom: 0;
    color: #333;
}

/* Wallpaper Grid Section (for individual categories) */
.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wallpaper-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
    text-align: center;
}

.wallpaper-item:hover {
    transform: translateY(-5px);
}

.wallpaper-item img {
    max-width: 100%;
    height: 350px; /* Fixed height for consistent look */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.wallpaper-item p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    font-weight: bold;
}


/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-info {
    margin-top: 30px;
    font-size: 1.1em;
    color: #555;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.95em;
    margin-top: 20px;
}

/* Responsive Design (Mobile Version) */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .main-nav {
        display: none; /* Hide navigation by default */
        flex-direction: column;
        width: 100%;
        background-color: #222;
        position: absolute;
        top: 65px; /* Adjust based on header height */
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        padding-bottom: 20px;
    }

    .main-nav.active {
        display: flex; /* Show navigation when active */
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .main-nav .nav-list li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    /* Adjust dropdown for mobile */
    .main-nav .nav-list li.dropdown {
        position: static; /* Allows dropdown to expand vertically */
    }

    .dropdown-content {
        position: static; /* Removes absolute positioning */
        display: none; /* Hidden by default */
        background-color: #444; /* Darker background for sub-menu */
        box-shadow: none;
        width: 100%;
        border-radius: 0;
    }

    .main-nav .nav-list li.dropdown.active .dropdown-content {
        display: block; /* Show dropdown when parent is active */
    }

    .dropdown-content a {
        padding: 10px 0;
        font-size: 0.95em;
        border-bottom: 1px solid #555;
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .hamburger-menu {
        display: block; /* Show hamburger icon */
    }

    .hero-section {
        padding: 80px 20px;
    }

    .hero-section h2 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1.1em;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2.2em;
    }

    .category-grid,
    .wallpaper-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .category-item img,
    .wallpaper-item img {
        height: 250px; /* Adjust height for better mobile viewing */
    }

    .contact-form {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8em;
    }

    .hero-section h2 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    section h2 {
        font-size: 1.8em;
    }
}</pre></body></html>