* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Varela Round', sans-serif;
}

html, body {
    height: 100%;
}

body {
    overflow-x: hidden; 
    cursor: url('https://doesdwelling.neocities.org/cursor/veado.png') 8 8, auto;
    background-color: #FAFAFA;
    color: #333333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

body > .container:not(footer .container) {
    flex: 1;
}

header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: #F5E0E3; 
    color: #333333;
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
}

.header-top a {
    color: #333333;
    text-decoration: none;
    margin-left: 15px;
}

.header-main {
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #A85050;
}

nav ul {
    display: flex;
    list-style: none;
} 

nav ul li {
    margin-left: 25px;
}

nav ul li button {
    background: transparent;
    border: 2px solid transparent;
    color: #5C5C5C;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: url('https://doesdwelling.neocities.org/cursor/chifre%20pointer.png') 8 8, pointer;
    transition: all 0.3s ease;
    font-family: 'Varela Round', sans-serif;
}

nav ul li button:hover {
    color: #A85050;
    background-color: rgba(168, 80, 80, 0.1);
    border-color: #A85050;
    transform: translateY(-2px);
}

nav ul li button[title*="contact"] {
    background-color: #A85050;
    color: white;
}

nav ul li button[title*="contact"]:hover {
    background-color: #8D3A3A;
    color: white;
    border-color: #8D3A3A;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/11534883/pexels-photo-11534883.jpeg?_gl=11m4ugwh*_ga*MTA3MjI4MTA3MS4xNzYyMzczMzg1*_ga_8JE65Q40S6*czE3NjIzNzMzODQkbzEkZzEkdDE3NjIzNzM3OTAkajU5JGwwJGgw');
background-size: cover;
background-position: center 70%;
height: 85vh;
display: flex;
align-items: center;
margin-top: 90px;
color: white;
}

.hero-content {
    max-width: 600px;
    padding-bottom: 40px;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn {
    cursor: url('https://doesdwelling.neocities.org/cursor/chifre%20pointer.png') 8 8, pointer;
    display: inline-block;
    background-color: #8D3A3A;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ffffff;
    color: #8D3A3A;
}

.property-details {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -30px; 
    position: relative;
    z-index: 100;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    text-align: center;
    padding: 15px;
}

.detail-item h3 {
    color: #A85050;
    font-size: 24px;
    margin-bottom: 5px;
}

.content-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #A85050;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
    background-color: #5C5C5C;
    color: white;
    padding: 10px 0 5px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #DC8E9D;
    padding-bottom: 10px;
    display: inline-block;
}
 
.footer-section p, .footer-section a {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    cursor: url('https://doesdwelling.neocities.org/cursor/chifre%20pointer.png') 8 8, pointer;
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A4A4A;
    color: #bdc3c7;
    font-size: 14px;
}

.music-player {
    background: rgba(165, 42, 42, 0.1);
    padding: 12px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    margin: 0 auto 30px auto;
    font-family: 'Varela Round', sans-serif;
    font-size: 14px;
    border: 1px solid rgba(165, 42, 42, 0.2);
}

.play-btn {
    cursor: url('https://doesdwelling.neocities.org/cursor/chifre%20pointer.png') 8 8, pointer;
    background: #A52A2A;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s;
}

.play-btn:hover {
    background: #8B0000;
}

.music-info {
    flex-grow: 1;
}

.music-title {
    font-weight: bold;
    color: #A52A2A;
    font-size: 15px;
}

.music-artist {
    font-size: 12px;
    color: #666;
}

.content-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 120px; 
        padding-top: 20px;
        height: auto; 
        min-height: 60vh;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .property-details {
        margin-top: -30px; 
        padding: 15px;
    }

    .hero-content {
        padding-bottom: 40px;
    }
    
    .header-main .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }
    
    nav ul li {
        margin: 5px 10px;
    }

    nav ul li button {
        padding: 6px 12px;
        font-size: 14px;
        margin: 2px;
    }
 
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content .about-image {
        order: -1;
    }
    
    .about-content .about-text {
        order: 1;
    }
    
    .about-image img {
        max-height: 300px;
        object-fit: cover;
    }

    .music-player {
        max-width: 280px;
        padding: 10px 15px;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 140px;
        padding-top: 10px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .music-player {
        max-width: 250px;
        padding: 8px 12px;
    }
    
    .music-title {
        font-size: 14px;
    }
    
    .music-artist {
        font-size: 11px;
    }
    
    .play-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}