/*
Theme Name: Vido
Theme URI: https://vidocenter.com/
Author: Vido Center
Author URI: https://vidocenter.com/
Description: Theme chuyên nghiệp cho Nail Salon, Spa, Beauty - Được phát triển bởi Vido Center. Hỗ trợ ACF, Bootstrap 5, tối ưu cho doanh nghiệp làm đẹp.
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: vido
Tags: nail-salon, spa, beauty, business, bootstrap5, acf-ready
*/

/**
 * =================================================================
 * VIDO THEME - MAIN STYLESHEET
 * =================================================================
 * 
 * Theme này được thiết kế dành riêng cho các tiệm Nail, Spa, Beauty
 * Tích hợp sẵn Bootstrap 5 và các thư viện hiện đại
 * Hỗ trợ ACF để dễ dàng tùy chỉnh nội dung
 * 
 * Author: Vido Center (https://vidocenter.com/)
 * =================================================================
 */

/* =================================================================
   ROOT VARIABLES - Biến màu sắc và font chữ chính
   ================================================================= */
:root {
    --primary-color: #d09a75;
    --secondary-color: #0a0909;
    --text-color: #232323;
    --white-color: #ffffff;
    --body-bg: #f8f9fa;
    
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
    --alt-font: 'Dancing Script', cursive;
}

/* =================================================================
   RESET & BASE STYLES - Thiết lập cơ bản
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
    background-image: url('https://parisnailsucf.com/wp-content/uploads/2021/11/bg-body.jpeg');
    background-repeat: repeat;
}

/* =================================================================
   TYPOGRAPHY - Định dạng chữ
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* =================================================================
   UTILITY CLASSES - Class tiện ích
   ================================================================= */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* =================================================================
   WORDPRESS ALIGNMENT CLASSES - Class căn chỉnh WordPress
   ================================================================= */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* =================================================================
   RESPONSIVE - Tương thích mobile
   ================================================================= */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .section {
        padding: 30px 0;
    }
}

