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

body {
    min-height: 100vh;
    font-family: 'Trebuchet MS', sans-serif;
    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #2b3f3d;;
    -webkit-text-stroke: .25px #a78a6d; /* OUTLINE */
}

/* Layout */
.container {
    min-height: 100vh;
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 32px;
}

.header h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.description {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* Links */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Button */
.link-button {
    background-color: transparent;
    position: relative;
    width: 100%;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


.link-button:hover {
    opacity: 0.8;
}

/* Fish image */
.link-button img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Flip every other button */
.link-button:nth-child(even) img {
    transform: scaleX(-1);
}

/* Text overlay */
.link-button span {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b3f3d;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    background: transparent;
    padding: 4px 16px 0 16px;
    border-radius: 8px;
    top: -8px;
}

/* Interaction */
.link-button:hover span {
    background: transparent;
}

.link-button:active {
    transform: scale(0.98);
}
