/*!
Theme Name: agenziabeb
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: agenziabeb
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

agenziabeb is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/**
 * Property Details Custom Styling
 * 
 * This CSS file contains additional styles for the property details page
 * to ensure a better display of the property features and information.
 */

/* Property Details Main Styling */
.immobile-content p {
    margin-bottom: 15px;
    color: var(--cadet);
    line-height: 1.7;
}

/* Property Card Details List */
.imm-data-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
    padding: 15px;
    background-color: var(--cultured-2);
    border-radius: 8px;
}

.imm-data-list li {
    flex: 1 1 150px;
}

.imm-data-list .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-jungle-green);
}

.imm-data-list .contact-link ion-icon {
    color: var(--orange-soda);
    font-size: 1.5em;
}

/* Property Details Grid Responsive Adjustments */
@media (max-width: 576px) {
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .imm-data-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .imm-data-list li {
        flex: 0 0 100%;
    }
}

/* Property Gallery */
.owl-carousel .owl-item img {
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.owl-nav button.owl-next, 
.owl-nav button.owl-prev {
    background-color: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: -20px;
}

.owl-nav button.owl-next {
    right: -20px;
}

.owl-nav button span {
    font-size: 24px;
    line-height: 24px;
    color: var(--dark-jungle-green);
}

/* Map Container */
#map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Property Attachments Styling */
.property-attachments {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.attachment-type {
    padding: 10px 15px;
    background-color: var(--cultured-1);
    border-radius: 6px;
}

.attachment-info {
    padding: 10px 15px;
}

/* Badge Styling Enhancements */
.imm-badge {
    display: inline-block;
    font-weight: var(--fw-600);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.imm-badge.orange {
    background-color: var(--orange-soda);
}

.imm-badge.green {
    background-color: var(--yellow-green);
}

/* Social Sharing Enhanced */
.property-share {
    padding: 25px 0;
    border-top: 1px solid #eee;
}

.social-list-card li a {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-immobile {
    position: relative;
}

.hero-immobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}