/*
Theme Name: AeroCool Thailand
Theme URI: https://aerocool.co.th
Author: AeroCool Team
Author URI: https://aerocool.co.th
Description: ธีม WordPress สำหรับเว็บไซต์บริการล้างแอร์และซ่อมแอร์ AeroCool Thailand ด้วยดีไซน์แบบ Atmospheric Clarity และ Soft Minimalism
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aerocool
Tags: custom-background, threaded-comments, translation-ready
*/

/* ========================================
   AEROCOOL THAILAND - THEME STYLES
   ======================================== */

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

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #f6fafe;
    color: #171c1f;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Mitr', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Container utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section spacing */
section {
    position: relative;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00535b 0%, #006d77 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 83, 91, 0.2);
}

.btn-secondary {
    background-color: #dfe3e7;
    color: #236863;
}

.btn-cta {
    background-color: #ffba27;
    color: #271900;
}

.btn-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Card styles */
.card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(23, 28, 31, 0.06);
}

/* Form styles */
input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    background-color: #f0f4f8;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    background-color: #e4e9ed;
    box-shadow: 0 0 0 2px rgba(35, 104, 99, 0.5);
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    max-width: 90%;
    width: auto;
}

@media (min-width: 768px) {
    .floating-cta {
        bottom: 1.5rem;
        max-width: 1280px;
        width: calc(100% - 3rem);
        left: 50%;
    }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}
