body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #006400 100%);
    color: white;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid #00ff00;
}

.fashion-nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-btn {
    text-decoration: none;
    color: white;
    padding: 10px 25px;
    border: 1px solid #00ff00;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-btn:hover {
    background: #00ff00;
    color: black;
    box-shadow: 0 0 10px #00ff00;
    transform: translateY(-2px);
}

h1 {
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid #004d00;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #00ff00;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 100, 0, 0.8);
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}

/* House Page Specific Styles */
.house-page {
    background: linear-gradient(135deg, #0000FF 0%, #00FF00 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    color: white;
}

.house-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    padding: 20px;
}

.house-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid white;
    transition: transform 0.3s ease;
}

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

.house-page h1 {
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}
