/*
Theme Name: POSE Travel Theme
Theme URI: https://github.com/pose-travel/pose-travel-wordpress
Author: POSE Travel
Author URI: https://pose.travel
Description: Tema WordPress khusus untuk layanan visa POSE Travel. Dibangun dengan Elementor, mendukung responsif penuh untuk mobile dan desktop. Termasuk formulir kontak, testimonial, dan showcase layanan visa.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
License URI:
Text Domain: pose-travel
Domain Path: /languages
Tags: travel, visa, services, elementor, responsive, one-page, business

POSE Travel Theme, Copyright 2024 POSE Travel
*/

/**
 * Table of Contents
 *
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout
 * 4. Components
 * 5. Utilities
 * 6. Responsive
 */

/* ======================================
   1. CSS RESET & BASE STYLES
   ====================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ======================================
   2. TYPOGRAPHY
   ====================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #FF6B35;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e55a2b;
}

/* ======================================
   3. LAYOUT
   ====================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

/* ======================================
   4. COMPONENTS
   ====================================== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #FF6B35;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: #003B5C;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #002940;
}

/* ======================================
   5. UTILITIES
   ====================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ======================================
   6. RESPONSIVE
   ====================================== */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .section {
    padding: 2rem 0;
  }
}

/* Note: Tailwind CSS will be compiled and added via functions.php */
