```

---

# style.css

```css
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
		/*light cyan*/
    background-color: #E8FFFF;
		/*carbon black*/
    color: #1A2521;
    line-height: 1.6;
		padding-top: 90px;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.35);


    box-sizing: border-box;
}

.logo {
    font-size: 2.2rem;
		/*carbon black #1A2521*/
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
		text-shadow: 0 2px 10px rgba(0,0,0,0.8);
		font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
		font-size: 1.1rem;
		/*carbon black#1A2521*/
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
		text-shadow: 0 2px 10px rgba(0,0,0,0.8);
		font-weight: bold;
}

.nav-links a:hover {
		/*light bronze*/
    color: #DDA07D;
}

/* Hero Section
.hero {
    height: 90vh;
    background-image: url('x');
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
		/*light bronze
    background-color: #DDA07D;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.9;
}

*/

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
		height: 100vh;
    overflow: hidden;
		margin-top: -90px;
}

/* Background Slides */
.slide {
    position: absolute;
    inset: 0;

		width: 100%;
		height: 100%;
    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 1.5s ease-in-out;
		z-index: 0;
}

/* Active Slide */
.slide.active {
    opacity: 1;
		z-index: 1;
}

/* Hero Text */
.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    padding: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Button */
.btn {
    padding: 12px 24px;
		/*light bronze*/
    background-color: #DDA07D;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* Sections */
section:not(.hero) {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about p,
.contact p {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* Gallery */
.gallery {
    padding: 140px 20px 20px 20px;
		/*light cyan*/
    background-color: #E8FFFF;
}
.gallery-grid {
    column-count: 3;
    column-gap: 3px;
}

/* Individual Tile */
.art-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
    break-inside: avoid;
    cursor: pointer;
}

/* Images */
.art-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.4s ease,
                transform 0.4s ease;
}

/* Hover Overlay */
.overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);

    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Artwork Title */
.overlay h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Hover Effects */
.art-card:hover img {
    filter: grayscale(25%) brightness(70%);
    transform: scale(1.01);
}

.art-card:hover .overlay {
    opacity: 1;
}


/*
.art-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;

    display: inline-block;
    width: 100%;

    transition: transform 0.3s ease;
}

.art-card:hover {
    transform: translateY(-5px);
}

.art-card img {

    width: 100%;
    height: auto;
    display: block;

}
*/
/* Tablet */
@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}
.art-card h3 {
    padding: 15px;
    text-align: center;
}

/* Contact Button */
#contactBtn {
    display: block;
    margin: 30px auto 0;
    padding: 12px 24px;
    border: none;
		/*light bronze*/
    background-color: #DDA07D;
		/*carbon black*/
    color: #1A2521;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

#contactBtn:hover {
    opacity: 0.9;
}

/* Footer */
footer {
		/*light cyan*/
    background-color: #E8FFFF;
    text-align: center;
    padding: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

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