@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
    --primary-orange: #ff6735;
    --bg-cream: #faf7f2;
    --text-dark: #3a3a3a;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(58, 58, 58, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Reusable Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: #666;
    margin-top: 10px;
    font-size: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--bg-cream);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 103, 53, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-cream);
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-cream);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(58, 58, 58, 0.05);
}

header nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--primary-orange);
}

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards (Servis, Artis, Release) */
.card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 103, 53, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 103, 53, 0.12);
}

.card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 103, 53, 0.1);
    color: var(--primary-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Release Card Special */
.release-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.release-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.release-info {
    padding: 20px;
}

/* Form Styling */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-orange);
}

/* --- BAHAGIAN MOBILE MENU TERTUTUP --- */
.menu-toggle {
    display: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    /* Seting Menu Hamburger */
    .menu-toggle {
        display: block;
    }

    header {
        position: relative; /* Supaya menu jatuh dari bawah header */
    }

    header nav {
        display: none; /* Sembunyikan menu asalnya */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-cream);
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 15px 20px rgba(0,0,0,0.05);
        border-top: 1px solid rgba(58,58,58,0.1);
    }

    /* Class 'active' ini akan dimasukkan guna JavaScript nanti */
    header nav.active {
        display: flex;
    }

    header nav a {
        margin: 15px 0;
        font-size: 1.1rem;
    }
}