@font-face {
    font-family: 'Nourd';
    src: url('nourd_light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nourd_Bold';
    src: url('nourd_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Strutture Page Styles */
.page-header {
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 50%, #D4AF37 100%);
    padding: 5rem 0 1rem;
    text-align: center;
}

.header-tag {
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.header-title {
    color: #1a1a1a;
    font-family: 'Nourd_Bold';
    font-weight: bold;
    margin: 1rem 0;
}

.header-description {
    color: #2d2d2d;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.property-detail {
    margin-bottom: 4rem;
}

.property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.property-grid.reverse {
    direction: rtl;
}

.property-grid.reverse > * {
    direction: ltr;
}

.property-image-main {
    border-radius: 12px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.property-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.property-name {
    margin-bottom: 0.5rem;
    font-family: 'Nourd';
    font-weight: lighter;
}

.property-location {
    color: #4a4a4a;
    text-decoration: underline;
    margin-bottom: 1.5rem;
}

.property-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.property-amenities h3 {
    font-family: 'Nourd';
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem;
    margin-bottom: 1rem;
}

.amenity {
    display: flex;
    align-items: left;
    gap: 0.75rem;
    padding: 0.25rem;
    background: #fafafa;
    border-radius: 2px;
}

.amenity-icon {
    font-size: 1.5rem;
}

.property-cta {
    display: flex;
    gap: 1rem;
/*    flex-wrap: wrap;*/
}

.divider {
    height: 1px;
    background: #d1d1d1;
    margin: 4rem 0;
}

.cta-banner {
    background: #FFD700;
    text-align: center;
    padding: 1rem 0;
}

.cta-banner-content h2 {
    color: #1a1a1a;
    margin-bottom: 0;
    font-family: 'Nourd';
}

.cta-banner-content p {
    color: #2d2d2d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .property-grid,
    .property-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .property-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

.property-gallery {
    position: relative;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.property-gallery .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.property-gallery .slide.active {
    opacity: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.property-gallery:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }
