/* We Fix'd IT - Additional Orthodox Styling */

/* Stained Glass Texture Background */
body {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212,165,116,.03) 10px, rgba(212,165,116,.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(26,123,127,.03) 10px, rgba(26,123,127,.03) 20px);
}

/* Enhanced Header */
.site-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Logo Enhancements */
.custom-logo {
    filter: drop-shadow(0 0 10px rgba(212,165,116,0.5));
    transition: transform 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.05);
}

/* Navigation Enhancements */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul li::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation ul li:hover::after {
    width: 80%;
}

/* Service Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

/* Enhanced Service Cards */
.service-card h3 {
    color: var(--color-burgundy-deep);
    margin-top: 1rem;
}

.service-card p {
    color: var(--color-text-brown);
    line-height: 1.6;
}

.service-card .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-teal-deep);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .read-more:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-white-sacred);
    border-left: 3px solid var(--color-gold);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-burgundy-deep);
}

/* Orthodox Form Styling */
.orthodox-form input[type="text"],
.orthodox-form input[type="email"],
.orthodox-form input[type="tel"],
.orthodox-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-gold);
    background: var(--color-white-sacred);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.orthodox-form input:focus,
.orthodox-form textarea:focus {
    outline: none;
    border-color: var(--color-burgundy-deep);
    box-shadow: 0 0 10px rgba(139,38,53,0.2);
}

.orthodox-form input[type="submit"] {
    background: linear-gradient(135deg, var(--color-burgundy-deep), var(--color-burgundy-light));
    color: var(--color-white-sacred);
    padding: 1rem 2rem;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.orthodox-form input[type="submit"]:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Testimonial Slider */
.testimonial-slide {
    background: var(--color-white-sacred);
    padding: 2rem;
    border: 2px solid var(--color-gold);
    text-align: center;
    position: relative;
    margin: 1rem;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text-brown);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-burgundy-deep);
}

/* About Section */
.about-derek {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.about-derek img {
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-medium);
}

.about-derek h2 {
    color: var(--color-burgundy-deep);
}

/* Cross Icon Variations */
.cross-small { font-size: 1rem; }
.cross-medium { font-size: 1.5rem; }
.cross-large { font-size: 2rem; }
.cross-gold { color: var(--color-gold); }
.cross-burgundy { color: var(--color-burgundy-deep); }
.cross-teal { color: var(--color-teal-deep); }

/* Parallax Container */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

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

/* Section Spacing */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-burgundy-deep);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '✠';
    display: block;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .about-derek {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .parallax {
        background-attachment: scroll;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .orthodox-divider,
    .btn-primary {
        display: none;
    }
}
