/*
Theme Name: Marc-Redz-Child
Theme URI: https://mjdelosantos.space/
Author: Marc Jones Delos Santos
Author URI: https://mjdelosantos.space/
Description: Child theme for Marc-Redz-Theme portfolio
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Version: 1.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: marc-redz-theme
Text Domain: marc-redz-child
*/

/* 
   Parent theme styles are automatically imported
   Add your custom styles below
*/

/* Custom Color Overrides Example */
:root {
    /* You can override parent theme colors here */
    --primary-teal: #4F8A98;    /* Keep as is or change */
    --secondary-teal: #75AAB8;  /* Keep as is or change */
    --coral: #FCB192;           /* Keep as is or change */
}

/* Custom Styles for Child Theme */
.site-header {
    /* Add custom header styles */
    box-shadow: 0 4px 30px rgba(79, 138, 152, 0.2);
}

/* Example: Custom button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--coral));
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Example: Custom portfolio hover effects */
.portfolio-item {
    border-radius: 20px;
}

.portfolio-overlay {
    background: linear-gradient(to top, rgba(79, 138, 152, 0.98), rgba(252, 177, 146, 0.95));
    backdrop-filter: blur(5px);
}

/* Example: Custom animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-content h1 {
    animation: float 3s ease-in-out infinite;
}

/* Responsive custom styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}