/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: #4a90a0;
    transition: color 0.3s ease;
}

a:hover {
    color: #347585;
}

img {
    max-width: 100%;
    height: auto;
}

button, .btn {
    cursor: pointer;
    background-color: #4a90a0;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #347585;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Full width container for art-categories section */
.art-categories .container {
    max-width: 100%;
    padding: 0 30px;
    margin: 0;
    width: 100vw;
    box-sizing: border-box;
}

.hidden {
    display: none;
} 