/*
Theme Name: FORGARDEN
Theme URI: https://forgarden.com
Author: FORGARDEN
Author URI: https://forgarden.com
Description: Korean Herbal Beauty Brand - Premium WordPress Theme
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: forgarden
Tags: beauty, cosmetics, korean-beauty, e-commerce, one-page

FORGARDEN - Korean Herbal Beauty
Where Nature Meets Science
*/

/* ============================================
   CSS Variables
============================================ */
:root {
    --color-sage: #4A7C59;
    --color-sage-light: #5A8C69;
    --color-sage-dark: #3A6C49;
    --color-cream: #FAF9F6;
    --color-gold: #C9A962;
    --color-gold-light: #D4B872;
    --color-charcoal: #333333;
    --color-warm-gray: #6B6B6B;
    --color-light-gray: #F5F5F5;
    --color-white: #FFFFFF;
    --color-brown: #9A7B4F;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Tenor Sans', Arial, sans-serif;
    --font-korean: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    
    --transition-base: all 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 40px rgba(0,0,0,0.12);
}

/* ============================================
   Reset & Base Styles
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   Typography
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
}

/* ============================================
   Layout Utilities
============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

/* ============================================
   Buttons
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--color-sage-dark);
    transform: translateY(-2px);
}

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

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

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

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

/* ============================================
   Forms
============================================ */
input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    transition: var(--transition-base);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-sage);
}

/* ============================================
   WordPress Core Styles
============================================ */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--color-warm-gray);
    margin-top: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   Responsive Breakpoints
============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
