/* Shared styles for Halleck Avenue Condominium website */

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

body {
    font-family: 'Georgia', serif;
    background-color: #f5f2e9;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Common Button Styles */
.button-link,
.login-link a {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 25px;
    border: 2px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.button-link:hover,
.login-link a:hover {
    background-color: #3498db;
    color: white;
}

/* Button Container */
.login-link {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Large Content Container (for images, webcams, etc.) */
.large-content-container {
    width: 100%;
    max-width: 900px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .large-content-container {
        height: 350px;
    }
}