* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    height: 100vh;
    overflow: hidden;
}
.hero {
    height: 100vh;
    background:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.55)
        ),
        url("hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}
/* TOP BAR */
header {
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand h1 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
}
.brand p {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 3px;
}
.gallery {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
}
/* CENTER BUTTONS */
.buttons {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 280px;
}
.buttons a {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
    padding: 14px 0;
    border: 1px solid rgba(255,255,255,0.6);
}
.buttons a:hover {
    background: rgba(255,255,255,0.1);
}
/* INSTAGRAM ICON - floats above footer bar */
.instagram-icon {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    line-height: 0;
    transition: transform 0.2s ease;
    z-index: 2;
}
.instagram-icon:hover {
    transform: translateX(-50%) scale(1.15);
}
/* FOOTER */
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    padding: 8px 50px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright-text {
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
