/*
Theme Name: Gorden Premium
Theme URI: #
Author: Antigravity
Author URI: #
Description: Tema kustom untuk Gorden Premium
Version: 1.0
Text Domain: gordenpremium
*/
/* Reset and Base Styles */
:root {
    --primary-color: #113f67;
    --primary-light: #1e5c94;
    --secondary-color: #8bbce1;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-lighter: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-color);
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Buttons and Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f1f5f9;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.hero .badge {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 1.25rem;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header-row {
    display: flex;
    gap: 40px;
}

.section-title-wrapper {
    flex: 1;
    max-width: 400px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-outline {
    border: 1px solid var(--border-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    color: var(--primary-color);
}

.card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Materials Section */
.materials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.materials-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.materials-image {
    flex: 1;
}

.materials-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/10;
    object-fit: cover;
}

.materials-content {
    flex: 1;
}

.materials-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.color-box {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.bg-blackout { background-color: #333333; }
.bg-semiblackout { background-color: #d2c8bc; }
.bg-sheer { background-color: #f8f9fa; }
.bg-pvc { background-color: var(--secondary-color); }

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.portfolio-header > div {
    max-width: 600px;
}

.portfolio-controls {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.nav-btn:hover, .nav-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.portfolio-gallery-wrapper {
    width: 100%;
    overflow: hidden;
}

.portfolio-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.portfolio-gallery::-webkit-scrollbar {
    display: none;
}

.portfolio-gallery img {
    width: calc(25% - 15px);
    flex-shrink: 0;
    scroll-snap-align: start;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.portfolio-gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, #113f67, #1e5c94);
    padding: 60px 0;
    color: white;
}

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

.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.cta-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.cta h2 {
    color: white;
    margin-bottom: 8px;
    margin-top: 4px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #0d2946;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer .logo {
    color: white;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    .hero-container, .materials-container { flex-direction: column; }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-gallery img { width: calc(50% - 10px); }
    .section-header-row { flex-direction: column; }
    .section-title-wrapper { max-width: 100%; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: row; flex-wrap: wrap; justify-content: space-between; position: relative; }
    .header .btn-primary { display: none; }
    .menu-toggle { display: block; order: 2; }
    .nav-links { 
        display: none; 
        width: 100%; 
        order: 3; 
        flex-direction: column; 
        text-align: center; 
        gap: 16px; 
        padding-top: 10px; 
        padding-bottom: 10px;
    }
    .nav-links.active { display: flex; }
    .hero-features { flex-wrap: wrap; }
    .product-grid, .why-cards { grid-template-columns: 1fr; }
    .portfolio-gallery img { width: 100%; }
    .cta-container { flex-direction: column; text-align: center; gap: 30px; }
    .cta-content { flex-direction: column; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}
