/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.accent {
    color: #c9a96e;
}

.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c2c2c;
    color: white;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
}

.skip-nav:focus {
    top: 6px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c9a96e;
}

.cta-button {
    background: #2c2c2c;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c9a96e;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 101;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px); /* Account for navbar height */
    margin-top: 80px; /* Start below navbar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.6),
        rgba(201, 169, 110, 0.4)
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.highlight-separator {
    opacity: 0.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-button,
.secondary-button {
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-button {
    background: #c9a96e;
    color: white;
}

.primary-button:hover {
    background: #b8965a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.4);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.9);
    color: #2c2c2c;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.secondary-button:hover {
    background: white;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 0;
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background: #fafafa;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-story h3 {
    margin-bottom: 1.5rem;
}

.location-features {
    margin-top: 2rem;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Map Styles */
.map-container {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-legend {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-icon-container {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
}

.legend-icon {
    width: 12px;
    height: 12px;
}

.legend-icon-container.transport .legend-icon { 
    filter: invert(27%) sepia(93%) saturate(1352%) hue-rotate(198deg) brightness(94%) contrast(86%); 
}
.legend-icon-container.culture .legend-icon { 
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); 
}
.legend-icon-container.recreation .legend-icon { 
    filter: invert(46%) sepia(78%) saturate(2476%) hue-rotate(92deg) brightness(96%) contrast(84%); 
}
.legend-icon-container.dining .legend-icon { 
    filter: invert(64%) sepia(88%) saturate(1534%) hue-rotate(21deg) brightness(96%) contrast(95%); 
}

.legend-label {
    font-size: 0.8rem;
    color: #666;
}

/* Property Section */
.property-section {
    padding: 6rem 0;
}

.property-showcase {
    margin-bottom: 4rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-content h3 {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-weight: bold;
}

/* Floor Plan */
.floorplan-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #fafafa;
    border-radius: 4px;
}

.floorplan-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.floorplan-container img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.room-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.room-detail:last-child {
    border-bottom: none;
}

.room-name {
    font-weight: 500;
    color: #2c2c2c;
}

.room-size {
    color: #666;
    font-size: 0.9rem;
}

/* Amenities Section */
.amenities-section {
    padding: 6rem 0;
    background: #fafafa;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.amenity-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

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

/* Rental Terms */
.rental-terms {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.term-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.term-item:last-child {
    border-bottom: none;
}

.term-label {
    font-weight: 500;
    color: #2c2c2c;
}

.term-value {
    font-weight: 600;
    color: #c9a96e;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-link {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.viewing-hours {
    margin-top: 2rem;
}

.viewing-hours h4 {
    margin-bottom: 0.5rem;
}

/* Form Styles */
.contact-form {
    background: #fafafa;
    padding: 3rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a96e;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.submit-button:hover {
    background: #c9a96e;
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-info h3 {
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #c9a96e;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0;
}

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

    .nav-container {
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(254, 254, 254, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 3rem;
        padding-top: 4rem;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-links.mobile-menu-open {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .hero {
        height: calc(100vh - 70px); /* Account for mobile navbar */
        margin-top: 70px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        margin-top: 2rem;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }

    .location-grid,
    .showcase-item,
    .contact-content,
    .floorplan-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .amenities-grid,
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }

    .header,
    .nav-container,
    .contact-form,
    .submit-button {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 50vh;
        page-break-after: always;
    }

    .hero-content {
        color: black;
        background: rgba(255, 255, 255, 0.9);
        padding: 2rem;
        border-radius: 4px;
    }

    .hero-stats {
        position: relative;
        background: white;
        color: black;
        border: 1px solid #ddd;
    }

    .section-title {
        font-size: 18pt;
        color: black;
        page-break-after: avoid;
    }

    .section-subtitle {
        color: #666;
    }

    .location-section,
    .property-section,
    .amenities-section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }

    .showcase-item {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .map-container {
        border: 1px solid #ddd;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .map-container::after {
        content: "Interactive map available in digital version";
        font-style: italic;
        color: #666;
    }

    .floorplan-section {
        page-break-inside: avoid;
    }

    .contact-info {
        page-break-inside: avoid;
    }

    .footer {
        color: black;
        background: white;
        border-top: 1px solid #ddd;
    }

    a {
        color: black !important;
        text-decoration: none;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }

    .primary-button,
    .secondary-button,
    .cta-button {
        background: white !important;
        color: black !important;
        border: 1px solid black;
        display: inline-block;
        padding: 0.5rem 1rem;
    }
}
