/* ============================================
   Main Styles - kaligrafia.ge
   Base styles and variables
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Georgian:wght@400;500;600;700&family=Noto+Sans+Georgian:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --gold: #C9A227;
    --gold-light: #E8D48B;
    --gold-dark: #A68518;
    --burgundy: #722F37;
    --burgundy-dark: #4A1F24;
    --cream: #FDF8E8;
    --parchment: #F5E6C8;
    --ink-black: #1A1A1A;
    --white: #FFFFFF;
    --shadow: rgba(26, 26, 26, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Georgian', sans-serif;
    background: var(--cream);
    color: var(--ink-black);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif Georgian', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--burgundy-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(114, 47, 55, 0.5);
}

.btn-gold {
    background: var(--gold);
    color: var(--burgundy-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--burgundy-dark);
    transform: translateY(-3px);
}

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

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

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--burgundy);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.bg-parchment { background: var(--parchment); }
.bg-cream { background: var(--cream); }
.bg-burgundy { background: var(--burgundy-dark); color: var(--cream); }

/* Spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Page Content Offset for Fixed Header */
.page-content {
    padding-top: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}
