/* Business Page Specific Styles */

/* Business Overview Section */
.business-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.business-content h2 {
    color: var(--dark-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.business-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.price-highlight {
    background: linear-gradient(135deg, var(--button-general), var(--button-general-hover));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-green);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.business-image {
    text-align: center;
}

.business-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.business-image img:hover {
    transform: scale(1.05);
}

/* Building Details Section */
.building-details {
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--light-green);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--light-brown);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h3 {
    color: var(--dark-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.detail-card p {
    color: #666;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-brown);
}

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

.contact-info h2 {
    color: var(--dark-green);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.contact-icon {
    font-size: 1.3rem;
    margin-right: 1rem;
    width: 30px;
}

.contact-image {
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .business-overview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .business-content h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .business-content h2 {
        font-size: 1.8rem;
    }
    
    .business-description {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .detail-icon {
        font-size: 2.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}