/*
Theme Name: Custom Theme
Description: A custom WordPress theme converted from HTML with modern design and responsive layout.
Author: Theme Developer
Version: 1.0.0

Tags: responsive, custom, modern
Text Domain: custom-theme
*/


/* Base styles with natural colors */
:root {
    --primary: #668D3C; /* Olive green */
    --secondary: #90A955; /* Soft green */
    --accent: #EDF0E1; /* Natural cream */
    --text: #2D3A25; /* Dark green */
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--accent);
    margin: 0;
    padding: 0;
    background-image: url('https://huggingface.co/spaces/smafltd/italianhouscalabria-rustic-charm-realty/resolve/main/images/Torre%20Crawford%201.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(237, 240, 225, 0.9);
}
main {
    background-color: rgba(255, 255, 255, 0.95);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}
.hero {
    border: 8px solid white;
    background-image: linear-gradient(to right, rgba(102, 141, 60, 0.9), rgba(144, 169, 85, 0.9));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://huggingface.co/spaces/smafltd/italianhouscalabria-rustic-charm-realty/resolve/main/images/Torre%20Crawford%201.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}
.property-card {
    transition: all 0.3s ease;
    background-color: white;
    border: 1px solid rgba(214, 219, 193, 0.5);
}
.property-card:hover {
    transform: translateY(-5px);
}
/* Custom utilities */
.rounded-2xl {
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* White cards */
.bg-white {
    background-color: white !important;
    border: 1px solid rgba(214, 219, 193, 0.3);
}
/* Animation */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

/* New styles for additional pages */
.location-card:hover h3 {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.process-step:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .process-step {
        margin-bottom: 1.5rem;
    }
}
