/**
 * Villa Details Page Styles
 * Simple, clean design
 */

/* Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #666666;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                url('../images/bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.20;
    pointer-events: none;
}

/* Main Wrapper */
.villa-details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Container */
.container-detail {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 60px;
}

/* Title */
.villa-details-title {
    font-family: 'Vidaloka', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #202020;
    margin: 0 0 40px 0;
}

/* Content Text */
.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: #202020;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .villa-details-wrapper {
        padding: 40px 15px;
    }
    
    .container-detail {
        padding: 30px 25px;
    }
    
    .villa-details-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .content-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .villa-details-wrapper {
        padding: 30px 10px;
    }
    
    .container-detail {
        padding: 25px 20px;
    }
    
    .villa-details-title {
        font-size: 20px;
    }
    
    .content-text {
        font-size: 14px;
    }
}
