/*
Theme Name: https://glass-clinic-sync.lovable.app
Theme URI: https://loveable-converter.com/themes/https---glass-clinic-sync-lovable-app
Author: Loveable Converter
Author URI: https://loveable-converter.com
Description: Converted from Loveable project - Elementor compatible
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: https---glass-clinic-sync-lovable-app
Tags: elementor, responsive, custom-colors, custom-menu
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Buttons */
.btn, button, input[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover, button:hover, input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Header */
.site-header {
    padding: 20px 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-navigation a {
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

/* Footer */
.site-footer {
    padding: 40px 0;
    background: #1f2937;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
}
