@import url('./navbar.css');
@import url('./product-card.css');
@import url('./feature-badge.css');
@import url('./floating-whatsapp.css');
@import url('./responsive.css');
@import url('./landing-page.css');
@import url('./kontak.css');

/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette — Modern Premium */
    --color-primary: #d99a00;
    --color-primary-dark: #a86f00;
    --color-green: #2f855a;
    --color-dark: #1f2937;
    --color-text: #374151;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-light: #ffffff;
    --color-bg-soft: #f9fafb;

    /* Legacy aliases */
    --honey-primary: #ffb300;
    --honey-secondary: #ffd54f;
    --honey-dark: #8c5a00;
    --honey-light: #fff9e9;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f5f5f5;
    --gray-medium: #999;
    --gray-dark: #666;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;

    --primary-color: #f6b800;
    --dark-color: #1f2937;
    --light-color: #ffffff;
    --danger-color: #ef4444;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-navbar: 14px;
    --radius-card: 18px;
    --radius-button: 12px;

    /* Shadows */
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.25);
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    --honey-gradient: linear-gradient(135deg, #f5d67b, #e9b94e, #d7941a);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body { 
    font-family: 'Inter', 'Poppins', 'Segoe UI', sans-serif; 
    background: var(--color-bg-soft);
    color: #111827; 
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 22px; 
    width: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-lux {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(255, 179, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(255, 179, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--honey-dark);
    border: 2px solid var(--honey-primary);
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
    border-top: 2px solid rgba(217, 154, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.35rem;
    margin-bottom: 22px;
    color: var(--honey-secondary);
    font-weight: 900;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--honey-primary);
    padding-left: 6px;
    transform: translateX(2px);
}

.footer-col i {
    margin-right: 10px;
    color: var(--honey-primary);
    transition: all 0.3s ease;
}

.footer-col a:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ========================================
   SOCIAL MEDIA ICONS
   ======================================== */
.footer-col a[href*="facebook"]:hover,
.footer-col a[href*="instagram"]:hover,
.footer-col a[href*="whatsapp"]:hover,
.footer-col a[href*="twitter"]:hover {
    transform: translateY(-3px);
    color: var(--honey-primary) !important;
}
