:root {
    --sunset: #B8860B;
    --ocean: #D2691E;
    --charcoal: #374151;
    --pink: #B8860B;
    --white: #FFFFFF;
    --light: #F8F8F8;
    --border: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    text-transform: none !important;
}

/* Ensure all text elements are not uppercase */
p, h1, h2, h3, h4, h5, h6, span, div, li, label, input, select, button, a {
    text-transform: none !important;
    font-variant: normal;
}

.content-text {
    text-transform: none !important;
    font-variant: normal;
}

.font-header {
    font-family: 'The Hills', 'Georgia', 'Times New Roman', serif;
    text-transform: none !important;
    font-variant: normal;
}

.font-charcoal {
    font-family: 'Cute Zealand', 'Georgia', 'Times New Roman', serif;
    text-transform: none !important;
    font-variant: normal;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom-color 0.3s ease;
}

nav.transparent {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--sunset);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    color: var(--sunset);
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid var(--light);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Force mobile menu to show when active */
    .nav-links.active[style*="display: block"] {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Hero Gallery Section - Clean Refactor */
.hero-gallery {
    padding: 60px 0 0px;
    margin: 0;
    width: 100%;
    background: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60vh;
    min-height: 400px;
    max-height: 400px;
}

.gallery-main {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    transform: scale(1.1);
    border-radius: 0 !important;
}

.gallery-main:hover .gallery-main-img {
    transform: scale(1.15);
}

/* Ensure main container doesn't scale on hover */
.gallery-main {
    transition: none;
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    height: 100%;
}

.gallery-side-item {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.hero-gallery-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: -20px;
    padding: 0 5px;
    position: relative;
    z-index: 10;
}

.view-all-photos-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(152, 216, 200, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #98D8C8;
}

.view-all-photos-btn:hover {
    background: #98D8C8;
    transform: translateY(-1px);
    border-color: #98D8C8;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.gallery-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    transform: scale(1.1);
    border-radius: 0 !important;
}

.gallery-side-img:hover {
    transform: scale(1.15);
}

/* Ensure side containers don't scale on hover */
.gallery-side > * {
    transition: none;
    overflow: hidden;
    border-radius: 0;
}

/* Ensure consistent heights between main and side containers */
.gallery-main,
.gallery-side {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
}



/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }
    
    .gallery-side {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        height: 120px;
    }
}

.btn.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--sunset);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-secondary:hover {
    background: #a67a0a;
    transform: translateY(-2px);
}

/* Responsive Hero Gallery */
@media (max-width: 768px) {
    .hero-main-column,
    .hero-side-column {
        height: 50vh;
        max-height: 400px;
        min-height: 300px;
    }
}


/* Property Header */
.property-header {
    padding: 20px 0 15px;
    margin: 0;
    border-bottom: 2px solid var(--light);
    background: #fff;
}

.property-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 10px;
}

.property-location {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.highlight-item {
    background: var(--light);
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    gap: 5px;
}

.property-highlight-item {
    background: transparent;
    padding: 15px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    color: var(--sunset);
    flex-shrink: 0;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.highlight-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #B8860B;
}

/* Content Section */
.content-section {
    padding: 25px 0;
    background: #fff;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--ocean) !important;
    margin-top: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: inherit !important;
}

/* Remove top margin for specific sections */
.section-title {
    margin-top: 0;
}

.content-text {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 15px;
    text-transform: none !important;
    font-variant: normal;
    text-align: left;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.highlight-item {
    background: var(--light);
    padding: 8px 12px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    background: transparent;
    gap: 20px;
    justify-content: flex-start;
}

/* Hover effects removed for all highlight items */

.highlight-icon {
    width: 32px;
    height: 32px;
    color: var(--sunset);
    flex-shrink: 0;
}

.property-highlight-icon {
    width: 80px;
    height: 80px;
    color: var(--sunset);
    flex-shrink: 0;
}

/* Specific styling for the property highlights section */
.property-highlights .highlight-item {
    background: transparent;
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.property-highlights .highlight-icon {
    width: 120px;
    height: 120px;
    color: var(--sunset);
    flex-shrink: 0;
}

.property-highlights .highlight-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.property-highlights .highlight-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #B8860B;
    text-align: center;
}

.highlight-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.highlight-text {
    color: var(--charcoal);
    font-size: 0.9rem;
    text-align: left;
    text-align-last: left;
    text-justify: left;
    margin-left: 0;
    padding-left: 0;
    display: block;
    width: 100%;
}

.highlight-label {
    color: var(--charcoal);
    font-size: 0.9rem;
}

.highlight-value {
    color: var(--sunset);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: right;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 12px 0;
}

/* Responsive column management for details grid */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .details-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.detail-item {
    background: var(--light);
    padding: 8px 12px 8px 8px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    gap: 8px;
}

.detail-label {
    color: var(--charcoal);
    font-size: 0.9rem;
}

.detail-value {
    color: black;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: right;
}

.detail-icon {
    width: 24px;
    height: 24px;
    color: var(--sunset);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.left-column {
    max-width: 850px;
    min-width: 0;
    overflow: visible;
    text-align: left;
}

.right-column {
    width: 100%;
    max-width: 600px;
    position: sticky;
    top: 100px;
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        margin: 0;
    }
    
    .left-column {
        max-width: 100%;
    }
    
    .right-column {
        max-width: 100%;
        position: static;
    }
}

/* Clickable Images */
.clickable {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.clickable:hover {
    transform: scale(1.02);
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-image-container {
    max-width: 90%;
    max-height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Ensure all images have no rounded corners */
img {
    border-radius: 0 !important;
}

/* Ensure all image containers have no rounded corners */
.gallery-container,
.gallery-main,
.gallery-side,
.gallery-side-item,
.mini-gallery,
.mini-gallery-item,
.photo-count-overlay,
.view-all-button,
.modal-image-container,
.hero-gallery,
.hero-main-column,
.hero-side-column {
    border-radius: 0 !important;
}

/* Ensure all images within containers have no rounded corners */
.gallery-container img,
.gallery-main img,
.gallery-side img,
.gallery-side-item img,
.mini-gallery img,
.mini-gallery-item img,
.photo-count-overlay img,
.view-all-button img,
.modal-image-container img,
.hero-gallery img,
.hero-main-column img,
.hero-side-column img {
    border-radius: 0 !important;
}

/* Mini Gallery */
.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    margin-top: 25px;
    padding-bottom: 10px;
    position: relative;
}

.mini-gallery-item {
    width: 100%;
    height: 150px;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Hide images beyond first 8 in mini gallery */
.mini-gallery-item:nth-child(n+9) {
    display: none;
}

.mini-gallery-item:hover {
    transform: translateY(-3px);
}

.mini-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
}

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

.photo-count-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 0;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.photo-count-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.plus-button-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: #B8860B;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.plus-button-overlay:hover {
    background: #8B6914;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* View All Button */
.view-all-button-container {
    grid-column: -1;
    grid-row: -1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 15;
}

.view-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: rgba(184, 134, 11, 0.5);
    color: white;
    border: 2px solid white;
    border-radius: 0;
    font-size: 3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
}

.view-all-button:hover {
    background: rgba(139, 105, 20, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.4);
}











@media (max-width: 767px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .highlight-item {
        padding: 8px 6px;
        gap: 10px;
    }
    
    .highlight-text {
        font-size: 0.75rem;
    }
    
    .highlight-icon {
        width: 20px;
        height: 20px;
    }
    
    .main-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amenities-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .amenities-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .highlight-item {
        padding: 6px 4px;
        gap: 8px;
    }
    
    .highlight-icon {
        width: 18px;
        height: 18px;
    }
    
    .highlight-text {
        font-size: 0.7rem;
    }
    
    .main-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amenity-item {
        padding: 8px 6px;
    }
    
    .amenity-text {
        font-size: 0.75rem;
    }
    
    .amenities-modal-content {
        width: 98%;
        margin: 15% auto;
    }
}

/* Amenities Section */
.amenities-section {
    margin-top: 30px;
}

.main-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.amenity-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 8px;
    padding: 10px 8px;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
}

.amenity-item:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.amenity-icon {
    width: 24px;
    height: 24px;
    color: #B8860B;
    flex-shrink: 0;
}

.amenity-text {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.2;
}

.view-amenities-container {
    text-align: left;
    margin-top: 20px;
}

.view-amenities-btn {
    background: transparent;
    color: #98D8C8;
    border: 2px solid #98D8C8;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.view-amenities-btn:hover {
    background: #98D8C8;
    color: white;
}

/* Amenities Modal */
.amenities-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.amenities-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.amenities-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    border-radius: 0;
}

.amenities-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0B1426;
    font-weight: 600;
}

.close-modal {
    font-size: 28px;
    font-weight: bold;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #374151;
}

.amenities-modal-body {
    padding: 24px;
}

.amenities-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.amenity-category {
    background: transparent;
    border-radius: 0;
    padding: 24px 0;
    border: none;
}

.category-title {
    font-size: 18px;
    color: #0B1426;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #98D8C8;
    text-align: center;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.amenities-grid .amenity-item {
    padding: 10px 8px;
    background: transparent;
    border: none;
    min-height: 50px;
    justify-content: flex-start;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.amenities-grid .amenity-icon {
    width: 20px;
    height: 20px;
}

.amenities-grid .amenity-text {
    font-size: 11px;
}

/* House Rules Section */
.house-rules-section {
    margin-top: 30px;
}

.house-rule {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.house-rule:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.rule-icon {
    width: 28px;
    height: 28px;
    color: #B8860B;
    flex-shrink: 0;
    margin-top: 2px;
}

.rule-content {
    flex: 1;
}

.rule-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    font-family: inherit;
}

.rule-description {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-family: inherit;
}

.view-rules-container {
    margin-top: 20px;
}

.view-rules-btn {
    background: transparent;
    color: #98D8C8;
    border: 2px solid #98D8C8;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.view-rules-btn:hover {
    background: #98D8C8;
    color: white;
}

/* Sleeping Arrangements Section */
.sleeping-arrangements-section {
    margin: 0;
    padding: 0;
}

.sleeping-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    margin: 20px 0 15px 0;
    font-family: inherit;
}

.sleeping-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
}

.sleeping-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sleeping-icon {
    width: 20px;
    height: 20px;
    color: #98D8C8;
    flex-shrink: 0;
}

.sleeping-count {
    font-weight: 600;
    color: #98D8C8;
    font-size: 0.9rem;
    min-width: 30px;
}

.sleeping-type {
    color: #374151;
    font-size: 0.9rem;
}

/* View More Button */
.view-more-container {
    margin: 20px 0;
}

.view-more-btn {
    background: transparent;
    color: #98D8C8;
    border: 2px solid #98D8C8;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.view-more-btn:hover {
    background: #98D8C8;
    color: white;
}

/* Rules Modal */
.rules-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.rules-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rules-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    border-radius: 0;
}

.rules-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0B1426;
    font-weight: 600;
}

.rules-modal-body {
    padding: 24px;
}

.rules-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B8860B;
    margin: 24px 0 16px 0;
    text-align: center;
}

.rules-content h4:first-child {
    margin-top: 0;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.6;
    color: #374151;
    font-size: 0.95rem;
}

.rules-list li:last-child {
    border-bottom: none;
}

/* About Modal */
.about-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.about-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    border-radius: 0;
}

.about-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0B1426;
    font-weight: 600;
}

.about-modal-body {
    padding: 24px;
}

.about-content p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #374151;
    font-size: 0.95rem;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

.about-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B1426;
    margin: 24px 0 12px 0;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #B8860B;
    margin: 16px 0 12px 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.5;
    color: #374151;
    font-size: 0.9rem;
}

.about-list li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    margin-top: 30px;
}

/* Responsive sleeping arrangements */
@media (max-width: 768px) {
    .sleeping-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .sleeping-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-category h4 {
    color: var(--ocean);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--charcoal);
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sunset);
    font-weight: bold;
}

/* Terms Section */
.terms-section {
    margin-top: 30px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.term-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
}

.term-label {
    color: var(--charcoal);
    font-size: 0.9rem;
}

.term-value {
    color: var(--sunset);
    font-weight: 600;
}

/* Booking Form */
.booking-form {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sunset);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
}

.btn-primary {
    background: var(--sunset);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #A67A0A;
    transform: translateY(-2px);
}

#booking-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 0px;
    margin-top: 20px;
    background: transparent;
    box-shadow: none;
}

/* Map Section */
.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-text {
    font-family: 'The Hills', 'Georgia', 'Times New Roman', serif;
    color: var(--sunset);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.location-description {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-note {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-style: italic;
    margin: 0;
    text-align: left;
}

/* Responsive map layout */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-info {
        text-align: left;
    }
}

/* Footer */
footer {
    background: var(--sunset);
    color: var(--white);
    padding: 25px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    

    
    .property-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .details-grid, .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
