/* General Styles */
body {
    margin: 0;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
}

/* Navbar Styles */
.navBar {
    min-width: 100%;
    background-color: #343a40; /* Dark background */
    padding: 15px 20px; /* Enhanced padding */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.houseImage {
    font-size: 36px; /* Adjusted size */
    color: white;
    transition: color 0.3s ease; /* Smooth color transition */
}

.houseImage:hover {
    color: #28a745; /* Green color on hover */
}

.navbar-title {
    color: white;
    text-decoration: none;
    margin-left: 15px; /* Adjusted margin */
    padding-top: 5px;
    font-size: 24px; /* Enhanced font size */
    font-weight: 600; /* Bold font weight */
    transition: color 0.3s ease; /* Smooth color transition */
}

.navbar a {
    color: white;
    margin: 0 15px; /* Increased margin for spacing */
    text-transform: uppercase; /* Uppercase text */
    font-weight: 500; /* Medium font weight */
}

.navbar a:hover {
    text-decoration: none;
    color: #f8f9fa;
}

/* Buttons */
.buttonFontSize {
    font-size: 16px; /* Font size */
    margin: 0 2px; /* Adjusted margin to balance spacing */
    padding: 12px 25px; /* Increased padding for better button size */
    border-radius: 12px; /* Rounded corners for a modern look */
    border: 2px solid transparent; /* Border for hover effect */
    background: linear-gradient(145deg, #007bff, #0056b3); /* Gradient background */
    color: #ffffff; /* Text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    display: inline-block; /* Align buttons properly */
    text-align: center; /* Center text */
    text-transform: uppercase; /* Uppercase text for emphasis */
}

.buttonFontSize:hover {
    background: linear-gradient(145deg, #0056b3, #007bff); /* Inverted gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

.buttonFontSize:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Custom focus outline */
}

/* Tagline Container */
.taglineContainer {
    margin-top: 100px;
    text-align: center;
}

/* Properties Section */
.properties {
    font-weight: bold;
    text-align: center;
    padding-top: 40px;
    color: #007bff; /* Accent color */
}

/* Info and Property Containers */
.infoContainer, .propertyOverviewDiv {
    margin-bottom: 20px;
}

.infoContainer1, .propertyOverviewDiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

/* Image and Content Styles */
.photoDiv, .photoDiv1 {
    margin: 10px;
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensure content stays within rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.img, .img1 {
    max-width: 100%;
    border-radius: 8px;
}

.contentDiv, .contentDiv1 {
    font-size: 16px;
    color: #333; /* Darker text color for better readability */
    margin: 10px;
    line-height: 1.6; /* Improved line height */
}

.villa {
    font-weight: bold;
    color: #dc3545; /* Accent color */
}

/* Contact Section */
.contactDiv {
    margin: 20px auto;
    padding: 15px;
    border: 2px solid #007bff; /* Accent color */
    border-radius: 10px;
    max-width: 500px;
    background-color: #f8f9fa; /* Light background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.contactDetails {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #333; /* Darker text color */
}

.contactImage {
    font-size: 18px;
    margin-top: 10px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar-title {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-button {
    margin-left: 10px;
    font-size: 0.5rem;
    padding: 8px 16px;
    border: none;
    background-color: #555;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.navbar-button:hover {
    background-color: #777;
}

/* Toggle Button Styles */
.navbar-toggle {
    display: none; /* Hide toggle button by default */
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .navbar {
        background-color: #444;
        padding: 8px 15px;
    }

    .navbar-title {
        font-size: 1.3rem;
    }

    .navbar-menu {
        display: none; /* Hide menu by default on smaller screens */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 200px;
        left: 0;
        background-color: #333;
    }

    .navbar-menu.show {
        display: flex; /* Show menu when 'show' class is added */
    }

    .navbar-toggle {
        display: block; /* Show toggle button on smaller screens */
    }

    .navbar-button {
        margin: 5px 0;
        font-size: 0.9rem;
    }

    /* Adjusting buttons for smaller screens */
    .buttonFontSize {
        font-size: 14px; /* Smaller font size */
        margin: 0 4px; /* Reduced margin for closer buttons */
        padding: 8px 20px; /* Adjusted padding for smaller buttons */
    }
}

@media (max-width: 768px) {
    .navbar {
        background-color: #555;
        padding: 6px 10px;
    }

    .navbar-title {
        font-size: 1.2rem;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-button {
        margin: 1px 0;
        font-size: 0.8rem;
    }

    /* Adjusting buttons for smaller screens */
    .buttonFontSize {
        font-size: 9px; /* Smaller font size */
        margin: 0 3px; /* Reduced margin for closer buttons */
        padding: 8px 15px; /* Adjusted padding for smaller buttons */
    }
}

@media (max-width: 480px) {
    .navbar {
        background-color: #666;
        padding: 4px 5px;
    }

    .navbar-title {
        font-size: 1rem;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-button {
        margin: 3px 0;
        font-size: 0.3rem;
    }

    /* Adjusting buttons for very small screens */
    .buttonFontSize {
        font-size: 8.5px; /* Smaller font size */
        margin: 0 1px; /* Minimal margin for very close buttons */
        padding: 6px 10px; /* Adjusted padding for very small buttons */
    }
}


