/* Custom styles beyond Tailwind */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(rgba(46, 25, 5, 0.8), rgba(46, 25, 5, 0.8)), url('https://images.unsplash.com/photo-1590496793929-36417d3117de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(46, 25, 5, 0.1), 0 4px 6px -2px rgba(46, 25, 5, 0.05);
}

.btn-primary {
    background-color: #E87C17;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #8B4A0E;
}

.btn-secondary {
    background-color: #8B4A0E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2E1905;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 3px;
    background-color: #E87C17;
}

/* Form styling */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #8B4A0E;
    border-radius: 0.25rem;
}

.form-input:focus {
    outline: none;
    border-color: #E87C17;
    box-shadow: 0 0 0 3px rgba(232, 124, 23, 0.2);
}