* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rozha One", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Georgia', serif;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  color: #c09c68;
}

.logo img {
  width: 50px; /* silakan sesuaikan ukuran */
  height: auto; /* biar proporsi gambar tetap bagus */
  object-fit: contain;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #C09C68;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    font-family: 'Questrial', sans-serif;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C09C68;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-label {
    color: #C09C68;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Questrial', sans-serif;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #C09C68;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider:hover {
    background-color: #999;
}

input:checked + .slider:hover {
    background-color: #C09C68;
}

/* Hero Section */
.hero {
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/produsen_jamur.png') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
}

.hero h1 {
    font-size: 80px;
    color: #C09C68;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    max-width: 700px;
    line-height: 1.8;
    font-size: 16px;
    color: #f0f0f0;
    font-family: 'Questrial', sans-serif;

}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 80px;
    gap: 80px;
    background: #FAF9F6;
}

.contact-info {
    flex: 1;
}

.breadcrumb {
    color: #C09C68;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Questrial', sans-serif;
}

.contact-info h2 {
    font-size: 100px;
    color: #C09C68;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-info p {
    color:black;
    line-height: 1.8;
    font-size: 20px;
    font-family: 'Questrial', sans-serif;
}
.contact-info p2 {
    color: #C09C68;
    line-height: 1.8;
    font-size: 20px;
    font-family: 'Questrial', sans-serif;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    color: #C09C68;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Questrial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C09C68;
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #C09C68;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    font-family: 'Questrial', sans-serif;
}

.submit-btn:hover {
    background:#C09C68;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.error {
    border-color: #ff4444 !important;
    background: #fff5f5 !important;
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

/* More Ways Section */
.more-ways {
    padding: 80px 80px;
    background: white;
}

.more-ways h2 {
    text-align: center;
    font-size: 48px;
    color: #C09C68;
    margin-bottom: 60px;
    font-weight: 700;
    font-family: "Rozha One", serif;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.contact-card-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.contact-card-link:hover {
    transform: translateY(-10px);
}

.contact-card {
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.contact-card.brown {
    background: #C09C68;
    color: white;
}

.contact-card.white {
    background: white;
    border: 2px solid #C09C68;
    color: #C09C68;
}

.contact-card-link:hover .contact-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Questrial', sans-serif;
}

.contact-card .icon svg {
    width: 50px;
    height: 50px;
    transition: all 0.3s;
}

.contact-card.brown .icon svg {
    color: white;
}

.contact-card.white .icon svg {
    color: #C09C68;
}

.contact-card-link:hover .icon svg {
    transform: scale(1.1);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Questrial', sans-serif;
}

.contact-card p {
    font-size: 14px;
    word-break: break-word;
    line-height: 1.6;
    font-family: 'Questrial', sans-serif;
}

.location-card {
    background: white;
    border: 2px solid #C09C68;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s;
}

.location-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-card .icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-card .icon svg {
    width: 50px;
    height: 50px;
    color: #C09C68;
    transition: all 0.3s;
}

.location-card:hover .icon svg {
    transform: scale(1.1);
}

.location-card h3 {
    color: #C09C68;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Questrial', sans-serif;
}

.location-card p {
    color: #C09C68;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Questrial', sans-serif;
}

/* Map */
.map-container {
    padding: 0 80px 80px;
    background: white;
}

.map-container iframe {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-brand h2 {
    font-size: 36px;
    color: #C09C68;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-brand p {
    color: #C09C68;
    margin-bottom: 25px;
    font-size: 15px;
    font-family: 'Questrial', sans-serif;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #C09C68;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    color: #C09C68;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #C09C68;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover svg {
    color: #000;
    transform: scale(1.1);
}

.footer-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-nav a {
    color: #C09C68;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-family: 'Questrial', sans-serif;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #C09C68;
    font-size: 14px;
    font-family: 'Questrial', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header, .contact-section, .more-ways, .map-container, footer {
        padding-left: 40px;
        padding-right: 40px;
    }

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

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .language-toggle {
        margin-left: 0;
    }

    .contact-section, .more-ways, .map-container, footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 14px;
    }

    .contact-info h2, .more-ways h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    nav a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .contact-info h2, .more-ways h2 {
        font-size: 28px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}