/* Editor Styles */
:root {
    --color-primary: #FF6B2B;
    --color-secondary: #00B2CB;
    --color-text: #333333;
    --color-background: #ffffff;
}

/* Block patterns styles */
.hero-section {
    /* background-color: var(--color-background); */
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1;
} 

/* Properties Section */
.properties-section {
    padding: 0px 0;
    /* background-color: #f9f9f9; */
}
.wp-block-group.hero-section.is-layout-flow.wp-block-group-is-layout-flow {
    padding-bottom: 0px;
}

.properties-title {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 2.5em;
}

.properties-description {
    color: var(--color-text);
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.8;
}

.properties-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-card h3 {
    color: var(--color-primary);
    margin: 20px;
    font-size: 1.5em;
}

.property-card p {
    margin: 20px;
    color: var(--color-white);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 12%;
    text-align: center;
}

.contact-description {
    color: var(--color-white);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-divider {
    border: none;
    height: 3px;
    background-color: #FF6B2B;
    margin: 0;
    width: 100%;
}

.contact-info-grid {
    margin-top: 40px;
}

.contact-phone,
.contact-email {
    padding: 20px;
}

.contact-phone h3,
.contact-email h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.contact-phone a,
.contact-email a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: #e55a1a;
}

.contact-email a::before {
    content: "✉";
    font-size: 1.2em;
}

/* Editor specific styles */
.editor-styles-wrapper {
    font-family: 'Arial', sans-serif;
}

.editor-styles-wrapper .wp-block {
    max-width: 1200px;
}

.editor-styles-wrapper .wp-block[data-align="wide"] {
    max-width: 1400px;
}

.editor-styles-wrapper .wp-block[data-align="full"] {
    max-width: none;
}

/* Color palette */
.has-primary-color {
    color: var(--color-primary);
}

.has-primary-background-color {
    background-color: var(--color-primary);
}

.has-secondary-color {
    color: var(--color-secondary);
}

.has-secondary-background-color {
    background-color: var(--color-secondary);
}

.has-text-color {
    color: var(--color-text);
}

.has-text-background-color {
    background-color: var(--color-text);
}

.has-background-color {
    color: var(--color-background);
}

.has-background-background-color {
    background-color: var(--color-background);
}

/* Responsive styles */
@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }

    .property-card {
        margin-bottom: 30px;
    }

    .properties-title {
        font-size: 2em;
    }
} 