/*
Theme Name: Paseo Navarra
Theme URI: https://paseonavarra.com
Author: Paseo Navarra Team
Author URI: https://paseonavarra.com
Description: Tema profesional para el proyecto inmobiliario Paseo Navarra y Navarra 503
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paseo-navarra
Tags: real-estate, business, modern
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

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

body {
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
    background-color: #fafaf9;
}

.font-display {
    font-family: 'Cormorant Garamond', serif;
}

.font-sans {
    font-family: 'Outfit', sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1.2s ease-in;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-right {
    animation: slideRight 1s ease-out;
}

/* Gradient Overlay */
.gradient-overlay {
    background: linear-gradient(to bottom, 
        rgba(28, 25, 23, 0.7) 0%, 
        rgba(28, 25, 23, 0.4) 50%,
        rgba(28, 25, 23, 0.8) 100%
    );
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Background Pattern */
.bg-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(120, 113, 108, 0.05) 0%, transparent 50%);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transition: all 0.3s ease;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.4);
}

/* Form Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Feature Icons */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Navigation */
.site-navigation {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
}

.site-navigation.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.site-navigation .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 700;
    transition: color 0.3s ease;
    color: white;
    text-decoration: none;
}

.site-navigation.scrolled .nav-logo {
    color: #1e40af;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

/* Sections */
.section-padding {
    padding: 6rem 1.5rem;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem !important;
    }
    
    .section-padding {
        padding: 4rem 1.5rem;
    }
}

/* WordPress Core Styles */
.alignnone {
    margin: 1.5em 1.5em 1.5em 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 1.5em auto;
}

.alignright {
    float: right;
    margin: 1.5em 0 1.5em 1.5em;
}

.alignleft {
    float: left;
    margin: 1.5em 1.5em 1.5em 0;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    margin-top: 0.5em;
}

.gallery-caption {
    display: block;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
