/*
Theme Name: BarberBot AI
Theme URI: https://barberbotai.com
Author: BarberBot Team
Author URI: https://barberbotai.com
Description: Professional AI assistant service theme for barbershops
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: barberbot
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
}

h1 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(48px, 8vw, 72px);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.accent {
    color: #FF4444;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price {
    background: #FF4444;
    color: white;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 48px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    margin: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: #FF4444;
    color: white;
}

.btn-primary:hover {
    background: #ff3333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    padding: 30px;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
}

.feature:hover {
    border-color: #FF4444;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Demo Section */
.demo-section {
    background: #f5f5f5;
}

.chat-box {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.chat-header {
    background: #000;
    color: white;
    padding: 20px;
    text-align: center;
}

.chat-messages {
    padding: 30px;
    min-height: 400px;
    background: #fafafa;
}

.message {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.message.user {
    flex-direction: row-reverse;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.message.user .avatar {
    background: #000;
}

.message-text {
    background: white;
    padding: 15px;
    border-radius: 10px;
    max-width: 70%;
}

.message.user .message-text {
    background: #000;
    color: white;
}

.chat-input-area {
    padding: 20px;
    background: white;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.send-btn {
    padding: 15px 30px;
    background: #FF4444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.send-btn:hover {
    background: #ff3333;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f5f5f5;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #000;
    color: white;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-form {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #FF4444;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background: #ff3333;
}

/* Footer */
.site-footer {
    background: #000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.site-footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .message-text {
        max-width: 85%;
    }
}
