:root {
    /* Accent Colors */
    --accent-primary: #812c38;
    --accent-light: #9a4540;
    --accent-dark: #5a2826;

    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #5a5a5a;
    --text-light: #7a7a7a;

    /* Background Colors */
    --bg-gradient-start: #f5f7fa;
    --bg-gradient-end: #e8ecf1;
    --bg-light: #f0f0f0;

    /* Fonts */
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Alternative: 'Source Sans 3' or 'Work Sans' */
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    min-height: 100vh;
}

header {
    background: linear-gradient(to bottom, #5a2321, var(--accent-primary));
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

sup {
  font-size: 0.7em;
}

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-right {
    display: flex;
    text-align: right;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-address {
    display: flex;
    align-items: center;
}

.header-address p {
    font-size: 0.85rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    white-space: nowrap;
}

.sign-in-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.sign-in-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.logo {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

main {
    padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.building-photo {
    width: 100%;
    height: 130%;
    display: block;
    object-fit: cover;
    object-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    will-change: transform;
}

.welcome {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.welcome h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.welcome p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 400;
    text-align: left;
}

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

.city-scene {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: auto;
  margin-bottom: 1em;
}

.amenities {
    background: linear-gradient(135deg, #5a2321 0%, var(--accent-primary) 100%);
    padding: 4rem 2rem;
    margin: 3rem 0 0 0;
}

.amenities-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.amenities h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.amenity-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.amenity-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.info {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 0;
    width: 100%;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: -4px 4px 16px rgba(0,0,0,0.3);
}

.info-left {
    flex: 0.75;
}

.map-card {
    padding: 10px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.2);
}

.address-section {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-section address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
}

.info-right {
    flex: 1;
    padding: 2rem;
}

.info-right h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e8ecf1;
}

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

.info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
}

.info-text a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
}

.info-text a:hover {
    color: var(--accent-primary);
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #5a2321 0%, var(--accent-primary) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.attribution {
  margin: auto;
  max-width: 600px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.attribution-title {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.attribution a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.attribution a:hover {
    color: rgba(255, 255, 255, 1);
}

.attribution-credits {
    line-height: 1.6;
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .logo-container {
        order: 1;
        justify-content: center;
        width: 100%;
    }

    .header-right {
        order: 2;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .header-address {
        order: 2;
    }

    .header-nav {
        order: 1;
    }

    .header-address p {
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
    }

    .logo {
        height: 70px;
    }

    .logo-text {
        height: 65px;
    }

    .sign-in-link {
        font-size: 0.95rem;
        padding: 0.45rem 1.1rem;
    }

    .welcome {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .welcome h1 {
        font-size: 2rem;
    }

    .welcome p {
        font-size: 1.05rem;
    }

    .amenities {
        padding: 3rem 1.5rem;
    }

    .amenities h2 {
        font-size: 2rem;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .info {
        padding: 3rem 1.5rem;
    }

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

    .info-left,
    .info-right {
        width: 100%;
    }

    .map-container {
        height: 300px;
    }

    .hero {
        height: 420px;
    }

    .address h2,
    .documents h2 {
        font-size: 1.6rem;
    }

    .address p,
    .documents a {
        font-size: 1.05rem;
    }
}
