/*
 * Custom CSS for Areh Sport Horses
 * This file contains additional styles that supplement Tailwind CSS
 */

/* Smooth scrolling for the entire site */
html {
    scroll-behavior: smooth;
}

/* Custom focus styles for accessibility */
*:focus {
    outline: 2px solid #dd9933;
    outline-offset: 2px;
}

.site-logo:focus,
#logo:focus {
    outline: none;
    outline-offset: 0;
}

/* Custom styling for form inputs when using the template tag */
.form-input-tailwind {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input-tailwind:focus {
    border-color: #dd9933;
    box-shadow: 0 0 0 3px rgba(221, 153, 51, 0.25);
}

/* Custom animation for image hover effects */
.image-hover-effect {
    transition: transform 0.3s ease-in-out;
}

.image-hover-effect:hover {
    transform: scale(1.05);
}

/* Custom styles for testimonial quotes */
.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -1rem;
    color: #dd9933;
    opacity: 0.3;
}

/* Custom table styles */
.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background-color: #040e34;
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
}

.custom-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.custom-table tr:hover {
    background-color: #f8fafc;
}

/* Helper classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive video container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Custom button styles */
.btn-primary {
    background-color: #040e34;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #071b5a;
}

.btn-secondary {
    background-color: #dd9933;
    color: #040e34;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

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

/* CSS for print styles */
@media print {
    header, footer, .no-print {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background-color: #fff;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
}
